:root {
    --color-black: #000;
    --color-white: #fff;

    --color-green: #c7f000;
    --color-green-hover: #d7ff2d;
    --color-green-soft: #95a80f;

    --color-purple: #7b58c6;
    --color-purple-soft: #8368b5;

    --text-white-90: rgba(255, 255, 255, 0.9);
    --text-white-88: rgba(255, 255, 255, 0.88);
    --text-white-78: rgba(255, 255, 255, 0.78);
    --text-white-75: rgba(255, 255, 255, 0.75);
    --text-white-72: rgba(255, 255, 255, 0.72);

    --radius-sm: 4px;
    --transition: all 0.3s ease;
}

/* =========================
   BASE
========================= */
.agency-hero-section,
.logo-section,
.creative-service-section,
.offers-section,
.references-section,
.move-people-section {
    position: relative;
    background: var(--color-black);
    overflow: hidden;
}

.agency-hero-title,
.logo-section-image,
.creative-service-title,
.offers-title,
.references-title,
.move-people-title {
    margin: 0;
}

.agency-hero-content,
.creative-service-content,
.offers-content {
    position: relative;
    z-index: 2;
}

.section-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.section-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* =========================
   AGENCY HERO
========================= */
.agency-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
}

.agency-hero-background-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

video.agency-hero-background-media {
    object-fit: cover;
}

.agency-hero-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.agency-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.45) 35%,
            rgba(0, 0, 0, 0.88) 70%,
            rgba(0, 0, 0, 0.96) 100%);
}

.agency-hero-glow {
    position: absolute;
    top: 50%;
    right: -60px;
    z-index: 2;
    width: 260px;
    height: 360px;
    transform: translateY(-50%);
    background: radial-gradient(circle,
            rgba(149, 168, 15, 0.35) 0%,
            rgba(149, 168, 15, 0.16) 35%,
            rgba(0, 0, 0, 0) 75%);
    filter: blur(28px);
    pointer-events: none;
}

/* Hero fade in/out animation */
.agency-hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    margin: 0 auto;
    opacity: 0;
    margin-top: 80px;
    transition: opacity 3s ease, margin-top 3.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.agency-hero-section.is-visible .agency-hero-content {
    opacity: 1;
    margin-top: 0;
}

.agency-hero-title {
    margin-bottom: 14px;
    color: var(--color-white);
    font-size: clamp(42px, 7vw, 78px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.agency-hero-subtitle {
    margin: 0 0 16px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.agency-hero-text {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-white-78);
    font-size: 14px;
    line-height: 1.8;
}

/* =========================
   VIDEO SECTION
========================= */
.video-section {
    padding: 100px 0;
}

.video-section-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================
   CREATIVE SERVICE
========================= */
.creative-service-section {
    padding: 110px 0 100px;
}

.creative-service-content {
    max-width: 980px;
    margin: 0 auto;
}

.creative-service-title {
    margin-bottom: 26px;
    color: var(--color-white);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.creative-service-title span {
    color: var(--color-purple);
}

.creative-service-text {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-white-88);
    font-size: 15px;
    line-height: 1.9;
}

.creative-service-glow {
    position: absolute;
    left: -40px;
    bottom: -30px;
    z-index: 1;
    width: 280px;
    height: 160px;
    background: radial-gradient(circle,
            rgba(123, 88, 198, 0.35) 0%,
            rgba(123, 88, 198, 0.16) 35%,
            rgba(0, 0, 0, 0) 72%);
    filter: blur(30px);
    pointer-events: none;
}

.creative-highlight {
    color: #7A5BEF;
}

/* =========================
   OFFERS
========================= */
.offers-section {
    padding: 110px 0 90px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.offers-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.62) 45%,
            rgba(0, 0, 0, 0.72) 100%),
        rgba(0, 0, 0, 0.35);
}

.offers-title {
    margin-bottom: 14px;
    color: var(--color-white);
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.offers-intro {
    max-width: 700px;
    margin: 0 auto 56px;
    color: var(--text-white-88);
    font-size: 15px;
    line-height: 1.8;
}

.offers-grid {
    max-width: 980px;
    margin: 0 auto;
}

.offer-item {
    padding: 0 18px;
    text-align: center;
}

.offer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    margin-bottom: 14px;
}

.offer-icon img {
    display: block;
    width: auto;
    max-height: 28px;
    object-fit: contain;
}

.offer-title {
    margin: 0 0 8px;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.offer-text {
    margin: 0;
    color: var(--text-white-72);
    font-size: 14px;
    line-height: 1.7;
}

.offers-footer {
    margin-top: 24px;
    text-align: center;
}

.offers-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--color-green);
    color: #111;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.offers-btn:hover {
    background: var(--color-green-hover);
    color: #000;
    transform: translateY(-2px);
    text-decoration: none;
}

.offers-btn span {
    font-size: 14px;
    line-height: 1;
}

/* =========================
   REFERENCES
========================= */
.reference-card.d-none {
    display: none;
}

.reference-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.reference-card-media {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    background: #000;
}

.reference-card-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.references-section {
    padding: 100px 0;
}

.references-content {
    max-width: 360px;
}

.references-title {
    margin-bottom: 14px;
    color: var(--color-white);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.references-subtitle {
    margin: 0 0 28px;
    color: var(--text-white-75);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.references-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.references-list li {
    margin-bottom: 14px;
}

.references-list a {
    position: relative;
    display: inline-block;
    color: var(--text-white-72);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.references-list a:hover,
.references-list a.active {
    color: var(--color-green);
}

.references-list a.active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -26px;
    width: 18px;
    height: 1px;
    background: var(--color-green);
    transform: translateY(-50%);
}

/* layout scroll + dots */
.references-scroll-layout {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 18px;
}

.references-manual-scroll {
    height: 690px;
    width: 100%;
    max-width: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;

    display: flex;
    flex-direction: column;
    gap: 28px;

    mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.references-manual-scroll::-webkit-scrollbar {
    display: none;
}

.references-dots {
    height: 690px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
}

.references-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    padding: 0;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.references-dot.is-active {
    background: #ffffff;
    transform: scale(1.15);
}

.reference-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
}

.reference-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.reference-card-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.reference-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.10) 45%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .references-scroll-layout {
        gap: 12px;
    }

    .references-manual-scroll {
        height: 560px;
        max-width: 100%;
    }

    .references-dots {
        height: 560px;
    }

    .reference-card {
        max-width: 100%;
    }

    .reference-card img {
        height: auto;
    }
}

/* =========================
   MOVE PEOPLE
========================= */
.move-people-section {
    padding: 110px 0 100px;
}

.move-people-content {
    max-width: 1400px;
    margin: 0 auto;
}

.move-people-title {
    margin-bottom: 28px;
    color: var(--color-white);
    font-size: clamp(34px, 3vw, 108px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.move-people-title span {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.move-people-text {
    max-width: 980px;
    margin: 0 auto 34px;
    color: var(--text-white-90);
    font-size: 16px;
    line-height: 1.8;
}

.move-people-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 370px;
    padding: 16px 28px;
    background: var(--color-purple-soft);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.move-people-btn:hover {
    color: #111;
    text-decoration: none;
}

.move-people-btn .btn-arrow {
    font-size: 18px;
    line-height: 1;
}

.move-people-section:hover .move-people-title span {
    color: var(--color-green);
}

.move-people-section:hover .move-people-btn {
    background: var(--color-green);
    color: #111;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .agency-hero-section {
        min-height: 460px;
    }

    .agency-hero-title {
        font-size: 52px;
    }

    .agency-hero-text {
        max-width: 560px;
        font-size: 13px;
    }

    .logo-section {
        padding: 80px 0;
    }

    .logo-section-image {
        max-width: 270px;
    }

    .creative-service-section {
        padding: 90px 0 80px;
    }

    .creative-service-title {
        font-size: 52px;
    }

    .creative-service-text {
        max-width: 680px;
        font-size: 14px;
    }

    .offers-section {
        padding: 90px 0 70px;
    }

    .offers-intro {
        margin-bottom: 42px;
        font-size: 14px;
    }

    .offer-title {
        font-size: 18px;
    }

    .references-section {
        padding: 80px 0;
    }

    .references-content {
        max-width: 100%;
    }

    .references-slider-wrapper {
        height: 560px;
        margin-top: 10px;
    }

    .reference-card {
        max-width: 300px;
    }

    .move-people-section {
        padding: 90px 0 80px;
    }

    .move-people-title {
        font-size: 68px;
    }

    .move-people-text {
        max-width: 820px;
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .agency-hero-section {
        min-height: 380px;
        padding: 40px 0;
        background-position: center center;
    }

    .agency-hero-title {
        font-size: 34px;
        letter-spacing: 1px;
    }

    .agency-hero-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .agency-hero-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .logo-section {
        padding: 60px 0;
    }

    .logo-section-image {
        max-width: 220px;
    }

    .creative-service-section {
        padding: 70px 0 60px;
    }

    .creative-service-title {
        font-size: 34px;
        line-height: 1.1;
    }

    .creative-service-text {
        font-size: 13px;
        line-height: 1.75;
    }

    .offers-section {
        padding: 70px 0 60px;
    }

    .offers-title {
        font-size: 34px;
    }

    .offers-intro {
        margin-bottom: 34px;
        font-size: 13px;
        line-height: 1.7;
    }

    .offer-item {
        padding: 0 8px;
    }

    .offer-title {
        font-size: 16px;
    }

    .offer-text {
        font-size: 13px;
    }

    .offers-btn {
        padding: 12px 18px;
        font-size: 11px;
    }

    .references-section {
        padding: 60px 0;
    }

    .references-title {
        font-size: 34px;
    }

    .references-subtitle {
        margin-bottom: 22px;
        font-size: 10px;
    }

    .references-list a {
        font-size: 12px;
    }

    .references-slider-wrapper {
        height: 480px;
        margin-top: 24px;
    }

    .reference-card {
        max-width: 260px;
        margin: 0 auto;
    }

    .reference-card img {
        height: auto;
    }

    .reference-card-caption {
        font-size: 10px;
    }

    .move-people-section {
        padding: 70px 0 60px;
    }

    .move-people-title {
        font-size: 34px;
        line-height: 1.08;
    }

    .move-people-text {
        margin-bottom: 26px;
        font-size: 14px;
        line-height: 1.75;
    }

    .move-people-btn {
        min-width: 100%;
        padding: 14px 18px;
        font-size: 12px;
    }
}