/* ============================================
   BACKSTAGE SERVIÇOS - Premium Site
   ============================================ */

:root {
    --navy-900: #0a1a35;
    --navy-800: #0f2347;
    --navy-700: #15315e;
    --navy-600: #1a3a72;
    --gold-500: #c89858;
    --gold-400: #d4a96a;
    --gold-300: #e0bc85;
    --white: #ffffff;
    --gray-100: #f5f6f8;
    --gray-300: #c5c9d2;
    --gray-500: #6b7280;
    --gray-700: #374151;

    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --container: 1280px;
    --radius: 12px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--navy-900);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 40px 0;
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1),
                background-color 300ms ease,
                padding 300ms ease,
                box-shadow 300ms ease;
    will-change: transform;
}

.header.is-hidden {
    transform: translateY(-100%);
}

.header.is-scrolled {
    background: rgba(10, 26, 53, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 22px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.header__container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.header__logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    margin: -18px 0;
}

.logo-mark {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 28px;
}

.logo-bar {
    display: block;
    width: 5px;
    background: var(--white);
    border-radius: 1px;
}

.logo-bar:nth-child(1) { height: 60%; }
.logo-bar:nth-child(2) { height: 100%; }
.logo-bar:nth-child(3) { height: 75%; }

.logo-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.12em;
    color: var(--white);
}

/* Nav */
.header__nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold-400);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-400);
    border-radius: 1px;
}

/* Header actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--white);
    box-shadow: 0 2px 6px rgba(200, 152, 88, 0.2);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(200, 152, 88, 0.3);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Language switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: var(--white);
    border-radius: var(--radius-full);
}

.flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 1.5px solid var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.flag--us {
    background: linear-gradient(180deg,
        #b22234 0%, #b22234 15%, #fff 15%, #fff 30%,
        #b22234 30%, #b22234 45%, #fff 45%, #fff 60%,
        #b22234 60%, #b22234 75%, #fff 75%, #fff 90%,
        #b22234 90%);
    position: relative;
}

.flag--us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 55%;
    background: #3c3b6e;
}

.flag--br {
    background: #009c3b;
    position: relative;
    overflow: hidden;
}

.flag--br::before {
    content: '';
    position: absolute;
    inset: 25%;
    background: #ffdf00;
    transform: rotate(45deg);
    border-radius: 2px;
}

.flag--br::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 40%;
    background: #002776;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-900);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(10, 26, 53, 0.55) 0%, rgba(10, 26, 53, 0.85) 100%),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: saturate(0.85);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(200, 152, 88, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 26, 53, 0.8) 0%, rgba(10, 26, 53, 0.1) 100%);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 1760px;
    width: 100%;
    margin: 0 auto;
    padding: 140px 64px 80px;
}

.hero__content {
    max-width: 880px;
}

.hero__title {
    color: var(--white);
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 44px;
    max-width: 520px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 24px rgba(200, 152, 88, 0.4);
    transition: all var(--transition);
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 152, 88, 0.55);
}

.hero__cta svg {
    transition: transform var(--transition);
}

.hero__cta:hover svg {
    transform: scale(1.1);
}

/* ============================================
   MÉTODO BACKSTAGE
   ============================================ */
.method {
    position: relative;
    padding: 140px 0 150px;
    background: #f6f1e8;
    overflow: hidden;
}

.method::before {
    content: '';
    position: absolute;
    top: 80px;
    right: -180px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(10, 26, 53, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.method::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: -200px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(200, 152, 88, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.method__container {
    position: relative;
    z-index: 1;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 64px;
}

.method__header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 96px;
}

.method__kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: var(--gold-500);
    text-transform: uppercase;
    margin-bottom: 26px;
    position: relative;
    padding: 0 48px;
}

.method__kicker sup {
    font-size: 0.7em;
    margin-left: 1px;
    top: -0.5em;
    position: relative;
}

.method__kicker::before,
.method__kicker::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 36px;
    height: 1px;
    background: var(--gold-500);
}

.method__kicker::before { left: 0; }
.method__kicker::after { right: 0; }

.method__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
    font-variation-settings: 'opsz' 144;
}

.method__lead {
    font-size: 16px;
    color: rgba(10, 26, 53, 0.65);
    line-height: 1.75;
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
}

/* List */
.method__list {
    list-style: none;
    max-width: 1080px;
    margin: 0 auto;
    counter-reset: method;
}

.method-step {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 56px;
    align-items: center;
    padding: 36px 0;
    border-top: 1px solid rgba(10, 26, 53, 0.1);
    position: relative;
    transition: padding 350ms ease;
}

.method-step:last-child {
    border-bottom: 1px solid rgba(10, 26, 53, 0.1);
}

.method-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.method-step:hover::before {
    width: 100%;
}

.method-step:hover {
    padding-left: 12px;
    padding-right: 12px;
}

/* Letter */
.method-step__letter {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 88px;
    font-weight: 500;
    font-style: italic;
    color: var(--navy-900);
    line-height: 1;
    letter-spacing: -0.04em;
    text-align: center;
    font-variation-settings: 'opsz' 144;
    transition: color 400ms ease;
    position: relative;
}

.method-step__letter::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 24px;
    height: 1px;
    background: var(--gold-500);
    transform: translateX(-50%) scaleX(0);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.method-step:hover .method-step__letter {
    color: var(--gold-500);
}

.method-step:hover .method-step__letter::after {
    transform: translateX(-50%) scaleX(1);
}

/* Body */
.method-step__body {
    min-width: 0;
}

.method-step__top {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.method-step__name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--navy-900);
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-variation-settings: 'opsz' 60;
}

.method-step__journey {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold-500);
    text-transform: uppercase;
    padding-left: 18px;
    position: relative;
}

.method-step__journey::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--gold-500);
}

.method-step__desc {
    font-size: 15px;
    color: rgba(10, 26, 53, 0.65);
    line-height: 1.7;
    max-width: 680px;
}

@media (max-width: 1024px) {
    .method {
        padding: 90px 0 100px;
    }

    .method__header {
        margin-bottom: 64px;
    }

    .method-step {
        grid-template-columns: 110px 1fr;
        gap: 32px;
        padding: 28px 0;
    }

    .method-step__letter {
        font-size: 68px;
    }

    .method-step__name {
        font-size: 21px;
    }
}

@media (max-width: 720px) {
    .method {
        padding: 70px 0 80px;
    }

    .method__container {
        padding: 0 20px;
    }

    .method__kicker {
        padding: 0;
        margin-bottom: 16px;
    }

    .method__kicker::before,
    .method__kicker::after {
        display: none;
    }

    .method__header {
        margin-bottom: 48px;
    }

    .method-step {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0;
        text-align: left;
    }

    .method-step__letter {
        font-size: 60px;
        text-align: left;
        line-height: 0.9;
    }

    .method-step__letter::after {
        left: 0;
        transform: scaleX(0);
        transform-origin: left;
    }

    .method-step:hover .method-step__letter::after {
        transform: scaleX(1);
    }

    .method-step__top {
        gap: 10px;
        margin-bottom: 10px;
    }

    .method-step__name {
        font-size: 19px;
    }

    .method-step:hover {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ============================================
   SERVICES (Editorial - White)
   ============================================ */
.services {
    position: relative;
    padding: 130px 100px 0px;
    background: #ffffff;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 152, 88, 0.4), transparent);
}

.services__container {
    position: relative;
    z-index: 1;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 64px;
}

.services__header {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: end;
    margin-bottom: 80px;
}

.services__kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: var(--gold-500);
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding-left: 48px;
}

.services__kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 1px;
    background: var(--gold-500);
}

.services__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    line-height: 1.08;
    font-variation-settings: 'opsz' 144;
}

.services__lead {
    font-size: 15.5px;
    color: rgba(10, 26, 53, 0.6);
    line-height: 1.75;
    font-weight: 400;
}

/* Grid */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(10, 26, 53, 0.08);
    border-left: 1px solid rgba(10, 26, 53, 0.08);
    margin-bottom: 64px;
}

/* Card */
.service-card {
    position: relative;
    cursor: pointer;
    outline: none;
    padding: 48px 40px 40px;
    background: transparent;
    border-right: 1px solid rgba(10, 26, 53, 0.08);
    border-bottom: 1px solid rgba(10, 26, 53, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: background-color 400ms ease;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.service-card:focus-visible {
    background: rgba(10, 26, 53, 0.025);
}

.service-card:hover::before,
.service-card:focus-visible::before {
    transform: scaleX(1);
}

.service-card:focus-visible {
    outline: 1px solid rgba(200, 152, 88, 0.4);
    outline-offset: -1px;
}

/* Card head */
.service-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 56px;
}

.service-card__num {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-500);
    font-feature-settings: 'tnum';
    font-style: italic;
}

.service-card__line {
    width: 28px;
    height: 1px;
    background: rgba(200, 152, 88, 0.45);
}

.service-card__tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: rgba(10, 26, 53, 0.5);
    text-transform: uppercase;
}

/* Card body */
.service-card__body {
    flex-grow: 1;
}

.service-card__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--navy-900);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
    line-height: 1.15;
    font-variation-settings: 'opsz' 60;
}

.service-card__desc {
    font-size: 14.5px;
    color: rgba(10, 26, 53, 0.65);
    line-height: 1.7;
    font-weight: 400;
    max-width: 320px;
}

/* Card foot */
.service-card__foot {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(10, 26, 53, 0.08);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(10, 26, 53, 0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 300ms;
}

.service-card__link svg {
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__link {
    color: var(--gold-500);
}

.service-card:hover .service-card__link svg {
    transform: translateX(6px);
}

/* Services footer */
.services__footer {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 14px;
}

/* ============================================
   INTRO / SOBRE (White editorial)
   ============================================ */
.intro {
    position: relative;
    padding: 140px 0 0px;
    background: #ffffff;
    overflow: hidden;
}

.intro__container {
    position: relative;
    z-index: 1;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 64px;
}

.intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 80px;
}

.intro__right {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.intro__left {
    text-align: center;
}

.intro__kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: var(--gold-500);
    text-transform: uppercase;
    margin-bottom: 28px;
    position: relative;
    padding: 0 48px;
}

.intro__kicker::before,
.intro__kicker::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 36px;
    height: 1px;
    background: var(--gold-500);
}

.intro__kicker::before { left: 0; }
.intro__kicker::after { right: 0; }

.intro__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 500;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    line-height: 1.08;
    font-variation-settings: 'opsz' 144;
}

.intro__title-em {
    font-style: italic;
    color: var(--gold-500);
    font-weight: 400;
}

.intro__text {
    font-size: 16px;
    color: rgba(10, 26, 53, 0.7);
    line-height: 1.75;
    margin-bottom: 20px;
    font-weight: 400;
}

.intro__text:last-of-type {
    margin-bottom: 32px;
}

.intro__link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--navy-900);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--navy-900);
    transition: all 320ms ease;
}

.intro__link svg {
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.intro__link:hover {
    color: var(--gold-500);
    border-bottom-color: var(--gold-500);
}

.intro__link:hover svg {
    transform: translateX(6px);
}

/* Manifesto block */
.intro__manifesto {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 32px 0;
    border-top: 1px solid rgba(10, 26, 53, 0.1);
    text-align: center;
}

.intro__manifesto-mark {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 96px;
    font-weight: 500;
    font-style: italic;
    color: var(--gold-500);
    line-height: 0.6;
    margin-bottom: 24px;
    opacity: 0.45;
}

.intro__manifesto p {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--navy-900);
    letter-spacing: -0.005em;
    font-variation-settings: 'opsz' 60;
}

.intro__manifesto em {
    font-style: italic;
    color: var(--gold-500);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .intro {
        padding: 90px 0 100px;
    }

    .intro__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 72px;
    }

    .intro__manifesto {
        padding: 44px 0 0;
    }

    .intro__manifesto-mark {
        font-size: 72px;
    }
}

@media (max-width: 720px) {
    .intro {
        padding: 70px 0 80px;
    }

    .intro__container {
        padding: 0 20px;
    }

    .intro__kicker {
        padding-left: 0;
        margin-bottom: 18px;
    }

    .intro__kicker::before {
        display: none;
    }

    .intro__grid {
        gap: 24px;
        margin-bottom: 48px;
    }

    .intro__manifesto {
        padding: 36px 0 0;
    }

    .intro__manifesto p {
        font-size: 18px;
    }

    .intro__manifesto-mark {
        font-size: 60px;
        margin-bottom: 16px;
    }
}

/* ============================================
   INDUSTRIES (Pill cloud — Navy)
   ============================================ */
.industries {
    position: relative;
    padding: 130px 0 140px;
    background: var(--navy-900);
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(200, 152, 88, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.industries::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -180px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.industries__container {
    position: relative;
    z-index: 1;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 64px;
}

.industries__header {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.industries__kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: var(--gold-400);
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding: 0 48px;
}

.industries__kicker::before,
.industries__kicker::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 36px;
    height: 1px;
    background: var(--gold-400);
}

.industries__kicker::before { left: 0; }
.industries__kicker::after { right: 0; }

.industries__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
    font-variation-settings: 'opsz' 144;
}

.industries__lead {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-weight: 400;
    max-width: 540px;
    margin: 0 auto;
}

/* Pill cloud */
.industries__cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 12px;
    max-width: 1180px;
    margin: 0 auto;
}

/* Industry pill */
.industry {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 22px 8px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.industry::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    opacity: 0;
    transition: opacity 350ms ease;
    z-index: 0;
}

.industry:hover {
    transform: translateY(-3px) rotate(-0.4deg);
    border-color: transparent;
    box-shadow: 0 14px 32px -10px rgba(200, 152, 88, 0.55);
}

.industry:hover::before {
    opacity: 1;
}

.industry__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(200, 152, 88, 0.18);
    color: var(--gold-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 350ms ease;
    position: relative;
    z-index: 1;
}

.industry__icon svg {
    width: 20px;
    height: 20px;
}

.industry:hover .industry__icon {
    background: var(--white);
    color: var(--gold-500);
}

.industry__name {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.005em;
    white-space: nowrap;
    transition: color 350ms ease;
    position: relative;
    z-index: 1;
}

.industry:hover .industry__name {
    color: var(--white);
}

@media (max-width: 1024px) {
    .industries {
        padding: 90px 0 100px;
    }

    .industries__header {
        margin-bottom: 56px;
    }
}

@media (max-width: 720px) {
    .industries {
        padding: 70px 0 80px;
    }

    .industries__container {
        padding: 0 20px;
    }

    .industries__kicker {
        padding: 0;
    }

    .industries__kicker::before,
    .industries__kicker::after {
        display: none;
    }

    .industries__header {
        margin-bottom: 40px;
    }

    .industries__cloud {
        gap: 10px;
    }

    .industry {
        padding: 6px 16px 6px 6px;
        gap: 10px;
    }

    .industry__icon {
        width: 32px;
        height: 32px;
    }

    .industry__icon svg {
        width: 17px;
        height: 17px;
    }

    .industry__name {
        font-size: 13px;
    }
}

/* ============================================
   CLIENTS (Navy card)
   ============================================ */
.clients {
    position: relative;
    padding: 60px 0 130px;
    background: #ffffff;
}

.clients__container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 64px;
}

.clients__card {
    background: var(--navy-900);
    border-radius: 28px;
    padding: 44px 56px 48px;
    position: relative;
    overflow: hidden;
}

.clients__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 152, 88, 0.5), transparent);
}

.clients__title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-400);
    letter-spacing: -0.005em;
    margin-bottom: 36px;
}

.clients__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px 48px;
}

/* Brand wordmarks — each gets its own typographic treatment so they feel like real logos */
.brand {
    color: rgba(255, 255, 255, 0.78);
    transition: color 350ms ease, transform 350ms ease;
    cursor: default;
    line-height: 1;
    user-select: none;
}

.brand:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.brand--atlas {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.brand--novatech {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.02em;
}

.brand--vertice {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.32em;
}

.brand--horizonte {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.brand--solar {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.18em;
    position: relative;
    padding-left: 26px;
}

.brand--solar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid currentColor;
}

.brand--meridian {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.brand--orion {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.4em;
    position: relative;
}

.brand--orion::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    margin-left: 6px;
    vertical-align: middle;
}

@media (max-width: 1024px) {
    .clients {
        padding: 56px 0 60px;
    }

    .clients__row {
        gap: 36px 44px;
        justify-content: center;
    }

    .brand {
        font-size: 20px !important;
    }
}

@media (max-width: 640px) {
    .clients {
        padding: 44px 0 48px;
    }

    .clients__container {
        padding: 0 20px;
    }

    .clients__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .clients__rule {
        width: 100%;
    }

    .clients__row {
        gap: 28px 36px;
    }

    .brand {
        font-size: 18px !important;
    }
}

/* ============================================
   TESTIMONIALS (Editorial - White)
   ============================================ */
.testimonials {
    position: relative;
    padding: 140px 0 130px;
    background: #ffffff;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 60px;
    right: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(200, 152, 88, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(10, 26, 53, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.testimonials__header {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: end;
    margin-bottom: 72px;
}

.testimonials__kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: var(--gold-500);
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding-left: 48px;
}

.testimonials__kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 1px;
    background: var(--gold-500);
}

.testimonials__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--navy-900);
    font-variation-settings: 'opsz' 144;
}

.testimonials__sub {
    font-size: 15.5px;
    color: rgba(10, 26, 53, 0.6);
    line-height: 1.7;
    font-weight: 400;
}

/* Story layout */
.story {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
    position: relative;
}

/* Photo */
.story__media {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 5;
    border-radius: 2px;
    overflow: hidden;
    box-shadow:
        0 30px 60px -20px rgba(10, 26, 53, 0.28),
        0 16px 32px -16px rgba(10, 26, 53, 0.18);
}

.story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 400ms ease, transform 800ms ease;
}

.story__media.is-changing img {
    opacity: 0;
    transform: scale(1.02);
}

.story__caption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 10px 16px;
    background: rgba(10, 26, 53, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 2px;
    border: 1px solid rgba(200, 152, 88, 0.2);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.story__caption-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    font-style: italic;
}

.story__caption-where {
    font-size: 10.5px;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

/* Content */
.story__content {
    position: relative;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.story__quote-glyph {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 120px;
    font-weight: 500;
    color: var(--gold-500);
    line-height: 0.7;
    font-style: italic;
    opacity: 0.5;
    pointer-events: none;
    display: block;
    margin-bottom: 8px;
}

.story__quote {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(18px, 1.5vw, 23px);
    font-weight: 400;
    line-height: 1.55;
    color: var(--navy-900);
    letter-spacing: -0.005em;
    margin: 0 0 36px;
    font-variation-settings: 'opsz' 60;
    transition: opacity 350ms ease;
}

.story__quote.is-changing {
    opacity: 0;
}

.story__signature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(10, 26, 53, 0.1);
    margin-bottom: 36px;
}

.story__person {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.story__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}

.story__role {
    font-size: 13px;
    color: rgba(10, 26, 53, 0.55);
    line-height: 1.4;
}

.story__brand {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(200, 152, 88, 0.55);
    font-style: italic;
}

/* Controls */
.story__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.story__counter {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 14px;
    color: rgba(10, 26, 53, 0.5);
    letter-spacing: 0.05em;
}

.story__counter-current {
    font-size: 28px;
    font-weight: 500;
    color: var(--navy-900);
    font-feature-settings: 'tnum';
}

.story__counter-divider {
    width: 36px;
    height: 1px;
    background: rgba(10, 26, 53, 0.25);
}

.story__counter-total {
    font-size: 14px;
    color: rgba(10, 26, 53, 0.45);
    font-feature-settings: 'tnum';
}

.story__arrows {
    display: flex;
    gap: 0;
    border: 1px solid rgba(10, 26, 53, 0.18);
    border-radius: 999px;
    overflow: hidden;
}

.story__arrow {
    width: 56px;
    height: 48px;
    background: transparent;
    color: var(--navy-900);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 280ms;
    cursor: pointer;
    border: none;
}

.story__arrow:first-child {
    border-right: 1px solid rgba(10, 26, 53, 0.18);
}

.story__arrow:hover {
    background: rgba(10, 26, 53, 0.04);
    color: var(--gold-500);
}

.story__arrow--active {
    background: var(--navy-900);
    color: var(--white);
}

.story__arrow--active:hover {
    background: var(--gold-500);
    color: var(--white);
}

/* Thumbnails */
.story__thumbs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.story__thumb {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: none;
    padding: 0;
    position: relative;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    background: none;
    filter: grayscale(50%);
    opacity: 0.55;
}

.story__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story__thumb:hover {
    filter: grayscale(0);
    opacity: 0.85;
    transform: translateY(-2px);
}

.story__thumb.is-active {
    width: 72px;
    height: 72px;
    filter: grayscale(0);
    opacity: 1;
    box-shadow: 0 0 0 2px var(--navy-900), 0 0 0 4px var(--gold-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
    padding: 96px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 64px;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand column */
.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    margin-bottom: 28px;
    margin-left: 0;
}

.footer__logo-img {
    height: 140px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-mark--dark .logo-bar {
    background: var(--white);
}

.footer__logo-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.12em;
    color: var(--white);
}

.footer__tag {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    max-width: 340px;
    margin-bottom: 32px;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 280ms ease;
}

.footer__social:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
    transform: translateY(-2px);
}

/* Link columns */
.footer__col-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.005em;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 250ms ease;
    line-height: 1.5;
}

.footer__list a:hover {
    color: var(--gold-400);
}

.footer__list--contact li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold-400);
    text-transform: uppercase;
}

.footer__list--contact span:not(.footer__label) {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.footer__address {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    transition: color 250ms ease;
}

.footer__address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold-400);
}

.footer__address:hover {
    color: var(--gold-400);
}

/* Bottom strip */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal a {
    transition: color 250ms ease;
}

.footer__legal a:hover {
    color: var(--gold-400);
}

.footer__dot {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .footer {
        padding: 72px 0 24px;
    }

    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 48px 40px;
        padding-bottom: 48px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 56px 0 20px;
    }

    .footer__container {
        padding: 0 20px;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 24px;
    }
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 26, 53, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.modal__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 680px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 152, 88, 0.18);
    padding: 48px;
    box-shadow:
        0 30px 80px -10px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(200, 152, 88, 0.08);
    transform: translateY(20px) scale(0.96);
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.is-open .modal__container {
    transform: translateY(0) scale(1);
}

.modal__container::-webkit-scrollbar {
    width: 8px;
}

.modal__container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.modal__container::-webkit-scrollbar-thumb {
    background: rgba(200, 152, 88, 0.3);
    border-radius: 4px;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 250ms;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal__close:hover {
    background: var(--gold-500);
    color: var(--white);
    transform: rotate(90deg);
    border-color: var(--gold-500);
}

.modal__header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal__icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(200, 152, 88, 0.4);
}

.modal__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-400);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modal__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.modal__subtitle {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-top: 6px;
}

.modal__lead {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.modal__features-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-400);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.modal__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
    margin-bottom: 36px;
}

.modal__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.modal__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.modal__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 36px;
    font-size: 14.5px;
}

.modal__table thead th {
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    padding: 0 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.modal__table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.2s ease;
}

.modal__table tbody tr:last-child {
    border-bottom: none;
}

.modal__table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.modal__table td {
    padding: 14px 18px;
    vertical-align: top;
    line-height: 1.5;
}

.modal__td-deliverable {
    font-weight: 600;
    color: var(--white);
    width: 44%;
}

.modal__td-benefit {
    color: rgba(255, 255, 255, 0.78);
}

.modal__footer {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

@media (max-width: 640px) {
    .modal {
        padding: 12px;
    }

    .modal__container {
        padding: 36px 24px 28px;
        max-height: calc(100vh - 24px);
    }

    .modal__header {
        flex-direction: column;
        gap: 16px;
    }

    .modal__icon {
        width: 60px;
        height: 60px;
    }

    .modal__title {
        font-size: 24px;
    }

    .modal__list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .modal__table {
        font-size: 13.5px;
    }

    .modal__table thead th,
    .modal__table td {
        padding-left: 0;
        padding-right: 10px;
    }

    .modal__td-deliverable {
        width: 46%;
    }

    .modal__close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .btn--ghost {
        display: none;
    }

    .services {
        padding: 90px 0 110px;
    }

    .services__header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 56px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials {
        padding: 100px 0;
    }

    .testimonials__header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 56px;
    }

    .story {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .story__quote-glyph {
        font-size: 96px;
    }
}

@media (max-width: 640px) {
    .header__container {
        padding: 0 20px;
    }

    .header__actions .btn--primary span {
        display: none;
    }

    .lang-switch {
        display: none;
    }

    .hero__container {
        padding: 120px 20px 60px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__subtitle {
        font-size: 15px;
    }

    .hero__cta {
        padding: 16px 28px;
        font-size: 14px;
    }

    .services {
        padding: 70px 0 90px;
    }

    .services__container {
        padding: 0 20px;
    }

    .services__kicker {
        padding-left: 0;
        margin-bottom: 16px;
    }

    .services__kicker::before {
        display: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 36px 24px 30px;
        min-height: auto;
    }

    .service-card__head {
        margin-bottom: 36px;
    }

    .service-card__title {
        font-size: 24px;
    }

    .testimonials {
        padding: 70px 0 80px;
    }

    .testimonials__container {
        padding: 0 20px;
    }

    .testimonials__kicker {
        padding-left: 0;
        margin-bottom: 16px;
    }

    .testimonials__kicker::before {
        display: none;
    }

    .story {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 32px;
    }

    .story__media {
        aspect-ratio: 4 / 5;
        max-width: 280px;
        margin: 0 auto;
    }

    .story__content {
        padding: 0;
        text-align: center;
    }

    .story__quote-glyph {
        font-size: 80px;
        margin-bottom: 0;
        margin-top: -20px;
    }

    .story__quote {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .story__signature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        margin-bottom: 28px;
    }

    .story__person {
        align-items: center;
    }

    .story__controls {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: center;
    }

    .story__arrows {
        margin: 0 auto;
    }

    .story__thumbs {
        gap: 10px;
        flex-wrap: wrap;
    }

    .story__thumb {
        width: 44px;
        height: 44px;
    }

    .story__thumb.is-active {
        width: 56px;
        height: 56px;
    }
}
