/* ============================================================
   NEXACARE — COMPLETE STYLESHEET
   Slogan: "Defined By Care"
   Email: info@nexacare.nexelica.co.za
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* ---- Palette (unchanged) ---- */
    --color-primary:          #0d1b2a;
    --color-primary-medium:   #152238;
    --color-primary-light:    #1b3a4b;

    --color-accent:           #094357;
    --color-accent-dark:      #059669;
    --color-accent-light:     #d1fae5;
    --color-accent-glow:      rgba(16, 185, 129, 0.10);
    --color-accent-soft:      #ecfdf5;
    --color-accent-secondary: #952446;
    --color-accent-secondary-soft: rgba(149, 36, 70, 0.12);

    --color-white:            #ffffff;
    --color-offwhite:         #fafcff;
    --color-surface:          #f0f7f4;
    --color-surface-alt:      #f8fafb;
    --color-border:           #e2e8f0;
    --color-border-light:     #f1f5f9;

    --color-text:             #1e293b;
    --color-text-secondary:   #556678;
    --color-text-light:       #94a3b8;
    --color-text-on-dark:     #e2e8f0;
    --color-text-on-dark-muted: #94a3b8;

    --color-whatsapp:         #25D366;

    /* ---- FONTS (UPDATED) ---- */
    /* Main headings (h1): Playfair Display — elegant serif */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    /* Subheadings (h2-h6) + UI elements: Montserrat */
    --font-heading: 'Montserrat', system-ui, sans-serif;
    /* Body text: Montserrat */
    --font-body:    'Montserrat', system-ui, sans-serif;

    /* ---- Spacing (unchanged) ---- */
    --space-2xs: 0.25rem;
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2rem;
    --space-xl:  3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
    --space-4xl: 7rem;

    /* ---- Radius (unchanged) ---- */
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   16px;
    --radius-xl:   24px;
    --radius-full: 9999px;

    /* ---- Shadows (unchanged) ---- */
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg:  0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl:  0 24px 60px rgba(0,0,0,0.10);
    --shadow-card: 0 2px 12px rgba(0,0,0,0.05);
    --shadow-card-hover: 0 12px 40px rgba(16,185,129,0.12);

    /* ---- Transitions (unchanged) ---- */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-base: 0.35s var(--ease-out);

    --container-max: 1200px;
}


/* ============================================================
   2. RESET (unchanged — keep as is)
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; font-size: 16px; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-white); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }
::selection { background: var(--color-accent); color: #fff; }


/* ============================================================
   3. TYPOGRAPHY (UPDATED)
   ============================================================ */

/* 
   FONT HIERARCHY:
   h1          → Playfair Display (--font-display) — elegant, editorial, large
   h2, h3, h4  → Montserrat (--font-heading) — clean, modern, structured
   body, p      → Montserrat (--font-body) — readable, professional
   buttons, ui  → Montserrat (--font-heading) — consistent with subheadings
*/

/* Main display heading — Playfair Display */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text);
    font-style: normal;
}

/* Sub-headings — Montserrat */
h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
}

h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

/* Body text */
p {
    color: var(--color-text-secondary);
    font-weight: 400;
}

/* Section overline label — Montserrat (small caps feel) */
.section-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent-secondary);
    margin-bottom: var(--space-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--color-accent-secondary);
    display: inline-block;
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 400;
}


/* ============================================================
   ALL REMAINING CSS SECTIONS (4-24) — UNCHANGED
   Keep everything from section 4 onwards exactly as before.
   The font variables will cascade automatically.
   
   KEY ELEMENTS THAT AUTO-UPDATE:
   • Buttons use --font-heading (now Montserrat)
   • Logo name uses --font-heading (now Montserrat)  
   • Nav links use inherited font (now Montserrat)
   • Metric values use --font-heading (now Montserrat)
   • FAQ questions use --font-heading (now Montserrat)
   • Footer headings use --font-heading (now Montserrat)
   • Hero h1 uses h1 rule (now Playfair Display)
   • All section h2 titles use h2 rule (now Montserrat)
   ============================================================ */

/* ... paste everything from section 4 through section 24 unchanged ... */

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-lg); }
.section   { padding: var(--space-4xl) 0; position: relative; }
.section--light { background: var(--color-surface); }
.text-center    { text-align: center; }
.mx-auto        { margin-left: auto; margin-right: auto; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.875rem 2rem; border-radius: var(--radius-full); font-family: var(--font-heading);
    font-weight: 600; font-size: 0.9375rem; cursor: pointer; transition: all var(--transition-base); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition-fast); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--color-accent); color: #fff; box-shadow: 0 4px 14px rgba(16,185,129,0.3); }
.btn--primary:hover { background: var(--color-accent-dark); box-shadow: 0 6px 22px rgba(16,185,129,0.4); transform: translateY(-2px); }

.btn--white { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.4); backdrop-filter: blur(4px); }
.btn--white:hover { background: rgba(255,255,255,0.25); border-color: #fff; }

.btn--outline { border: 2px solid var(--color-border); color: var(--color-text); }
.btn--outline:hover { border-color: var(--color-accent); color: var(--color-accent); }

.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
.btn--nav { padding: 0.625rem 1.5rem; font-size: 0.875rem; }

/* ============================================================
   6. HEADER
   ============================================================ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; transition: all var(--transition-base); }
.header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); box-shadow: 0 1px 20px rgba(0,0,0,0.06); padding: 0.6rem 0; }
.header.scrolled .logo__name { color: var(--color-text); }
.header.scrolled .logo__sub  { color: var(--color-text-secondary); }
.header.scrolled .nav__link  { color: var(--color-text-secondary); }
.header.scrolled .nav__link:hover, .header.scrolled .nav__link.active { color: var(--color-text); }
.header.scrolled .nav__toggle span { background: var(--color-text); }

.header__inner { display: flex; align-items: center; justify-content: space-between; }

/* ---- Logo ---- */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    text-decoration: none;
}

.header .logo {
    flex-shrink: 0;
}

.header .logo__img {
    display: block;
    width: auto;
    max-width: min(240px, 34vw);
    height: 56px;
    object-fit: contain;
}

/* Hide old elements */
.logo__mark,
.logo__text {
    display: none;
}

/* ---- Light / Dark logo swap ---- */

/* Default: hero has dark bg → show white logo */
.header .logo__img--light { display: block; }

/* Scrolled: header turns white → show dark logo */


/* Legal pages: always white header → dark logo */


/* Footer: always dark bg → white logo */
.footer .logo__img--light { display: block; }
.footer .logo__img        { height: 36px; }

.nav { display: flex; align-items: center; gap: var(--space-xl); }
.nav__links { display: flex; align-items: center; gap: var(--space-lg); }
.nav__link { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8); transition: color var(--transition-fast); position: relative; }
.nav__link:hover, .nav__link.active { color: #fff; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-accent-secondary); transition: width var(--transition-base); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.header.scrolled .nav__link::after { background: var(--color-accent-secondary); }
.nav__cta-mobile { display: none; }

.nav__toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 28px; height: 28px; cursor: pointer; z-index: 1001; }
.nav__toggle span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition-base); transform-origin: center; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   7. HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,0.75) 0%, rgba(13,27,42,0.5) 40%, rgba(16,185,129,0.12) 100%); }

.hero__content { position: relative; z-index: 2; max-width: 680px; padding-top: var(--space-4xl); }
.hero__label { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-full); padding: 0.4rem 1.25rem; font-size: 0.8125rem; font-weight: 600; color: #fff; margin-bottom: var(--space-lg); backdrop-filter: blur(8px); }
.hero__label svg { width: 14px; height: 14px; color: var(--color-accent-light); }
.hero h1 { color: #fff; margin-bottom: var(--space-md); }
.hero h1 span { color: var(--color-accent-light); }
.hero__subtitle { font-size: 1.125rem; line-height: 1.8; color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: var(--space-xl); }
.hero__actions { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-xl); }
.hero__trust { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: rgba(255,255,255,0.6); }
.hero__trust svg { width: 16px; height: 16px; color: var(--color-accent); flex-shrink: 0; }

.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2; color: rgba(255,255,255,0.5); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================================
   7b. HERO GRID (Content + Form)
   ============================================================ */
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: var(--space-xl);
}


/* ============================================================
   7c. HERO BOOKING FORM — COMPACT
   ============================================================ */
.hero__form-wrapper {
    position: relative;
}

.hero-form {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    animation: formSlideUp 0.8s var(--ease-out) 0.3s both;
}

@keyframes formSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Header ---- */
.hero-form__header {
    background: var(--color-primary);
    padding: 0.875rem 1.25rem;
    text-align: center;
}

.hero-form__header h3 {
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
}

.hero-form__header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    margin: 2px 0 0;
}

/* ---- Body ---- */
.hero-form__body {
    padding: 1rem 1.25rem 0;
}

.hero-form__group {
    margin-bottom: 0.6rem;
}

/* No labels — placeholders only for compact look */
.hero-form__group label {
    display: none;
}

.hero-form__group input,
.hero-form__group select {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--color-text);
    background: var(--color-offwhite);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    font-family: var(--font-body);
}

.hero-form__group input:focus,
.hero-form__group select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
    background: #fff;
    outline: none;
}

.hero-form__group input::placeholder {
    color: var(--color-text-light);
    font-size: 0.8rem;
}

.hero-form__group select {
    cursor: pointer;
    appearance: auto;
    color: var(--color-text-light);
}

.hero-form__group select:valid {
    color: var(--color-text);
}

/* Two-column row */
.hero-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

/* ---- Footer ---- */
.hero-form__footer {
    padding: 0.6rem 1.25rem 1rem;
}

.hero-form__submit {
    width: 100%;
    padding: 0.7rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.hero-form__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin: 0.5rem 0 0;
    font-size: 0.65rem;
    color: var(--color-text-light);
}

.hero-form__note svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* WhatsApp hero button */
.btn--whatsapp {
    background: var(--color-whatsapp);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
    background: #20c05c;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}


/* ============================================================
   HERO FORM RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr 320px;
        gap: var(--space-xl);
    }
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding-top: 110px;
        min-height: auto;
        padding-bottom: var(--space-lg);
    }

    .hero__form-wrapper {
        max-width: 380px;
    }

    .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .hero__grid { padding-top: 100px; }

    .hero__form-wrapper { max-width: 100%; }

    .hero-form__row { grid-template-columns: 1fr; gap: 0.6rem; }

    .hero h1 { font-size: 2.25rem; }
}



/* ============================================================
   HERO FORM RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr 380px;
        gap: var(--space-xl);
    }
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        padding-top: 120px;
        min-height: auto;
        padding-bottom: var(--space-xl);
    }

    .hero__content {
        text-align: left;
        padding-top: 0;
    }

    .hero__form-wrapper {
        max-width: 480px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-form__row {
        grid-template-columns: 1fr;
    }

    .hero-form__header {
        padding: var(--space-md);
    }

    .hero-form__body {
        padding: var(--space-sm) var(--space-md) 0;
    }

    .hero-form__submit {
        width: calc(100% - var(--space-md) * 2);
        margin-left: var(--space-md);
        margin-right: var(--space-md);
    }

    .hero-form__note {
        padding: var(--space-xs) var(--space-md) var(--space-sm);
    }
}

/* ============================================================
   8. INTRO STRIP
   ============================================================ */
.intro-strip { background: var(--color-white); border-bottom: 1px solid var(--color-border-light); padding: var(--space-lg) 0; position: relative; z-index: 10; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.intro-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.intro-strip__item { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm) 0; }
.intro-strip__item svg { width: 28px; height: 28px; color: var(--color-accent); flex-shrink: 0; }
.intro-strip__item strong { display: block; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--color-text); }
.intro-strip__item span { font-size: 0.8rem; color: var(--color-text-secondary); }

/* ============================================================
   9. WHO WE SERVE
   ============================================================ */
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); margin-top: var(--space-2xl); }
.serve-card { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: all var(--transition-base); border: 1px solid var(--color-border-light); }
.serve-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-6px); }
.serve-card__image { height: 200px; overflow: hidden; }
.serve-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-base); }
.serve-card:hover .serve-card__image img { transform: scale(1.05); }
.serve-card__body { padding: var(--space-md); }
.serve-card__icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--color-accent-soft); display: flex; align-items: center; justify-content: center; color: var(--color-accent); margin-bottom: var(--space-sm); }
.serve-card__icon svg { width: 20px; height: 20px; }
.serve-card h3 { margin-bottom: var(--space-xs); font-size: 1.1rem; }
.serve-card p  { font-size: 0.875rem; line-height: 1.65; }

/* ============================================================
   10. SERVICES
   ============================================================ */
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: start; }
.services-layout__left .section-subtitle { margin-bottom: var(--space-xl); }
.services-layout__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.services-layout__image img { width: 100%; height: 760px; object-fit: cover; }

.service-item { display: flex; gap: var(--space-md); padding: var(--space-md); border-radius: var(--radius-md); transition: all var(--transition-base); border: 1px solid transparent; margin-bottom: var(--space-sm); }
.service-item:hover { background: var(--color-white); border-color: var(--color-border-light); box-shadow: var(--shadow-md); }
.service-item__number { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; color: var(--color-accent); opacity: 0.3; line-height: 1; flex-shrink: 0; min-width: 48px; }
.service-item:hover .service-item__number { opacity: 1; }
.service-item h3 { margin-bottom: var(--space-2xs); }
.service-item p  { font-size: 0.9rem; line-height: 1.65; margin-bottom: var(--space-xs); }
.service-item__tag { font-size: 0.7rem; font-weight: 700; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.08em; background: var(--color-accent-soft); padding: 0.2rem 0.6rem; border-radius: var(--radius-full); display: inline-block; }

/* ============================================================
   11. IMAGE BANNER
   ============================================================ */
.image-banner { padding: 0; overflow: hidden; }
.image-banner__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; min-height: 320px; }
.image-banner__item { overflow: hidden; position: relative; }
.image-banner__item img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; transition: transform 0.6s var(--ease-out); }
.image-banner__item:hover img { transform: scale(1.05); }
.image-banner__item--accent { background: var(--color-accent); display: flex; align-items: center; justify-content: center; }
.image-banner__cta { padding: var(--space-xl); text-align: center; }
.image-banner__cta h3 { color: #fff; font-size: 1.5rem; margin-bottom: var(--space-sm); }
.image-banner__cta p  { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: var(--space-md); }

/* ============================================================
   12. PROCESS
   ============================================================ */
.process { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: var(--space-2xl); flex-wrap: wrap; }
.process__step { text-align: center; flex: 1; min-width: 160px; max-width: 200px; padding: var(--space-sm); }
.process__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--color-accent-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-sm); color: var(--color-accent); transition: all var(--transition-base); }
.process__icon svg { width: 26px; height: 26px; }
.process__step:hover .process__icon { background: var(--color-accent); color: #fff; box-shadow: 0 8px 24px rgba(16,185,129,0.3); transform: scale(1.08); }
.process__number { font-family: var(--font-heading); font-weight: 800; font-size: 0.75rem; color: var(--color-accent); margin-bottom: var(--space-xs); letter-spacing: 0.05em; }
.process__step h4 { margin-bottom: var(--space-2xs); font-size: 0.95rem; }
.process__step p  { font-size: 0.8rem; line-height: 1.5; }
.process__connector { width: 40px; height: 2px; background: var(--color-border); margin-top: 42px; flex-shrink: 0; }

/* ============================================================
   13. PILLARS
   ============================================================ */
.pillars-section { position: relative; overflow: hidden; }
.pillars-section__bg { position: absolute; inset: 0; }
.pillars-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.pillars-section__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.82) 100%); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); margin-top: var(--space-2xl); }
.pillar { padding: var(--space-xl) var(--space-lg); border-radius: var(--radius-lg); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px); transition: all var(--transition-base); }
.pillar:hover { background: rgba(255,255,255,0.1); border-color: rgba(16,185,129,0.3); transform: translateY(-4px); }
.pillar__icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(16,185,129,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md); color: var(--color-accent-light); }
.pillar__icon svg { width: 22px; height: 22px; }
.pillar h3 { color: #fff; margin-bottom: var(--space-xs); font-size: 1.1rem; }
.pillar p  { font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,0.7); }

/* ============================================================
   14. METRICS
   ============================================================ */
.metrics { background: var(--color-white); padding: var(--space-3xl) 0; border-top: 1px solid var(--color-border-light); border-bottom: 1px solid var(--color-border-light); }
.metrics__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); text-align: center; }
.metric { padding: var(--space-lg); border-radius: var(--radius-lg); transition: all var(--transition-base); }
.metric:hover { background: var(--color-accent-soft); }
.metric__value {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}

.metric__label {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); margin-top: var(--space-2xl); }
.testimonial { background: var(--color-white); border-radius: var(--radius-lg); padding: var(--space-xl); box-shadow: var(--shadow-card); border: 1px solid var(--color-border-light); transition: all var(--transition-base); }
.testimonial:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.testimonial__stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: var(--space-sm); }
.testimonial blockquote { font-size: 0.95rem; line-height: 1.75; color: var(--color-text); font-style: normal; margin-bottom: var(--space-lg); }
.testimonial__author { display: flex; align-items: center; gap: var(--space-sm); }
.testimonial__avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--color-accent-soft); }
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__author strong { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--color-text); }
.testimonial__author span { font-size: 0.8rem; color: var(--color-text-secondary); }

/* ============================================================
   16. FAQ — BULLETPROOF FIX
   ============================================================ */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-3xl);
    align-items: start;
}

.faq-layout__left .section-subtitle {
    margin-bottom: var(--space-xl);
}

.faq-layout__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
}

.faq-layout__contact > p {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2xs);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.625rem;
    background: var(--color-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-accent);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
}

.faq-item__question {
    width: 100%;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    text-align: left;
    background: none;
    border: none;
    outline: none;
    line-height: 1.4;
}

.faq-item__question:hover {
    color: var(--color-accent);
}

.faq-item.active .faq-item__question {
    color: var(--color-accent);
}

.faq-item__chevron {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--color-text-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__chevron {
    transform: rotate(180deg);
    color: var(--color-accent);
}

/* KEY FIX: Use display none/block instead of max-height */
.faq-item__answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
}

.faq-item.active .faq-item__answer {
    display: block;
}

.faq-item__answer p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin: 0;
    padding: 0;
}

.faq-item__answer a {
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: underline;
}

.faq-item__answer a:hover {
    color: var(--color-accent-dark);
}

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ============================================================
   17. FUTURE SERVICES
   ============================================================ */
.future-section { background: var(--color-accent-soft); }
.future-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.future-layout__content .section-subtitle { margin-bottom: var(--space-xl); }
.future-layout__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.future-layout__image img { width: 100%; height: 420px; object-fit: cover; }
.future-items { display: flex; flex-direction: column; gap: var(--space-sm); }
.future-item { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm) var(--space-md); background: var(--color-white); border-radius: var(--radius-md); border: 1px solid var(--color-border); transition: all var(--transition-fast); }
.future-item:hover { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.future-item svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; }
.future-item span { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--color-text); }
.future-badge { margin-left: auto; padding: 0.15rem 0.6rem; background: var(--color-accent-secondary-soft); border-radius: var(--radius-full); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent-secondary); flex-shrink: 0; }

/* ============================================================
   18. ABOUT
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.about-layout__images { position: relative; min-height: 500px; }
.about-layout__img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); width: 85%; }
.about-layout__img-main img { width: 100%; height: 440px; object-fit: cover; }
.about-layout__img-small { position: absolute; bottom: 0; right: 0; width: 55%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); border: 4px solid var(--color-white); }
.about-layout__img-small img { width: 100%; height: 220px; object-fit: cover; }
.about-layout__badge { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--color-accent-secondary); color: #fff; padding: var(--space-md); border-radius: var(--radius-md); text-align: center; box-shadow: 0 8px 24px rgba(149,36,70,0.22); }
.about-layout__badge-number { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1.75rem; line-height: 1; }
.about-layout__badge-text { display: block; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; opacity: 0.85; }
.about-layout__content p { font-size: 1rem; line-height: 1.8; margin-bottom: var(--space-md); }
.about-layout__content p strong { color: var(--color-text); }
.about-values { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }
.about-value { display: flex; align-items: flex-start; gap: var(--space-sm); }
.about-value__icon { width: 28px; height: 28px; border-radius: 50%; background: var(--color-accent-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: var(--color-accent); }
.about-value__icon svg { width: 14px; height: 14px; }
.about-value p { font-size: 0.925rem; color: var(--color-text); }
.about-value strong { font-weight: 600; }

/* ============================================================
   19. CONTACT
   ============================================================ */
.contact-section { background: var(--color-white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-3xl); align-items: start; }
.contact-layout__info h2 { margin-bottom: var(--space-md); }
.contact-layout__info > p { margin-bottom: var(--space-xl); font-size: 1.0625rem; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-xl); }
.contact-detail { display: flex; align-items: center; gap: var(--space-sm); }
.contact-detail__icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--color-accent-soft); display: flex; align-items: center; justify-content: center; color: var(--color-accent); flex-shrink: 0; }
.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-detail span { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-light); }
.contact-detail a, .contact-detail p { font-size: 0.9rem; color: var(--color-text); font-weight: 500; }
.contact-detail a:hover { color: var(--color-accent); }

.contact-form { background: var(--color-white); border-radius: var(--radius-xl); padding: var(--space-xl); box-shadow: var(--shadow-xl); border: 1px solid var(--color-border-light); }
.contact-form__header { margin-bottom: var(--space-lg); }
.contact-form__header h3 { margin-bottom: var(--space-2xs); font-size: 1.3rem; }
.contact-form__header p { font-size: 0.875rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-group { margin-bottom: var(--space-md); }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--color-text); margin-bottom: var(--space-2xs); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-md); font-size: 0.9rem; color: var(--color-text); background: var(--color-offwhite); transition: border-color var(--transition-fast), box-shadow var(--transition-fast); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px var(--color-accent-glow); background: var(--color-white); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-text-light); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; appearance: auto; }
.form-submit { width: 100%; margin-top: var(--space-xs); padding: 1rem; font-size: 1rem; }

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    min-height: 1.4rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.form-status--hero {
    text-align: center;
}

.form-status.is-success {
    color: #047857;
}

.form-status.is-error {
    color: #b91c1c;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.footer { background: var(--color-primary); padding: var(--space-3xl) 0 var(--space-lg); color: var(--color-text-on-dark-muted); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-xl); padding-bottom: var(--space-xl); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand > p { margin-top: var(--space-sm); font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer__logo-image { width: min(220px, 100%); height: auto; margin-top: var(--space-md); opacity: 0.98; }
.footer__social { display: flex; gap: var(--space-xs); margin-top: var(--space-md); }
.footer__social a { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--color-text-on-dark-muted); transition: all var(--transition-fast); }
.footer__social a:hover { background: var(--color-accent-secondary); color: #fff; }
.footer__social svg { width: 16px; height: 16px; }
.footer__heading { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: #fff; margin-bottom: var(--space-md); text-transform: uppercase; letter-spacing: 0.08em; }
.footer__links li { margin-bottom: var(--space-xs); }
.footer__links a, .footer__links span { font-size: 0.875rem; color: var(--color-text-on-dark-muted); transition: color var(--transition-fast); }
.footer__links a:hover { color: var(--color-accent); }

.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-lg); font-size: 0.8rem; flex-wrap: wrap; gap: var(--space-sm); }
.footer__bottom a { color: var(--color-accent-secondary); }
.footer__bottom a:hover { text-decoration: underline; }
.footer__slogan { font-family: var(--font-heading); font-weight: 700; color: rgba(255,255,255,0.3); font-size: 0.85rem; letter-spacing: 0.05em; }

/* ============================================================
   21. WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.15);
    transition: all var(--transition-base);
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.2);
    animation: none;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float__tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.whatsapp-float__tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--color-primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.15); }
    50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 2px 8px rgba(0,0,0,0.15), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ============================================================
   22. SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   23. LEGAL PAGES (shared styles)
   ============================================================ */
.legal-page { padding-top: 120px; padding-bottom: var(--space-4xl); }
.legal-page .container { max-width: 800px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: var(--space-sm); color: var(--color-text); }
.legal-page .legal-updated { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: var(--space-2xl); }
.legal-page h2 { font-size: 1.35rem; margin-top: var(--space-xl); margin-bottom: var(--space-sm); color: var(--color-text); }
.legal-page h3 { font-size: 1.1rem; margin-top: var(--space-lg); margin-bottom: var(--space-xs); }
.legal-page p  { margin-bottom: var(--space-md); font-size: 0.95rem; line-height: 1.85; }
.legal-page ul { margin-bottom: var(--space-md); padding-left: var(--space-lg); }
.legal-page li { font-size: 0.95rem; line-height: 1.85; color: var(--color-text-secondary); margin-bottom: var(--space-xs); list-style: disc; }
.legal-page a  { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-page a:hover { color: var(--color-accent-dark); }

/* Legal page header (solid) */
.header--legal { background: var(--color-white); box-shadow: 0 1px 10px rgba(0,0,0,0.05); }
.header--legal .logo__name { color: var(--color-text); }
.header--legal .logo__sub  { color: var(--color-text-secondary); }
.header--legal .nav__link   { color: var(--color-text-secondary); }
.header--legal .nav__link:hover { color: var(--color-text); }
.header--legal .nav__toggle span { background: var(--color-text); }

/* ============================================================
   24. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .intro-strip__grid    { grid-template-columns: repeat(2, 1fr); }
    .serve-grid           { grid-template-columns: repeat(2, 1fr); }
    .services-layout      { grid-template-columns: 1fr; }
    .image-banner__grid   { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid         { grid-template-columns: repeat(2, 1fr); }
    .metrics__grid        { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid    { grid-template-columns: repeat(2, 1fr); }
    .future-layout        { grid-template-columns: 1fr; }
    .about-layout         { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .contact-layout       { grid-template-columns: 1fr; gap: var(--space-xl); }
    .faq-layout           { grid-template-columns: 1fr; gap: var(--space-xl); }
    .footer__grid         { grid-template-columns: repeat(2, 1fr); }
    .process__connector   { display: none; }
    .process              { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
    :root { --space-4xl: 4rem; --space-3xl: 3rem; }
    .section { padding: var(--space-3xl) 0; }
    body {
        -webkit-text-size-adjust: 100%;
        text-rendering: optimizeLegibility;
    }

    .header .logo {
        width: auto;
    }

    .header .logo__img { height: 48px; max-width: 176px; }

    .nav__toggle { display: flex; }
    .nav__cta-mobile { display: block; }
    .nav__links { position: fixed; top: 0; right: 0; width: 100%; height: 100vh; background: rgba(13,27,42,0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; gap: var(--space-lg); opacity: 0; visibility: hidden; transition: all var(--transition-base); }
    .nav__links.open { opacity: 1; visibility: visible; }
    .nav__link { font-size: 1.25rem; color: rgba(255,255,255,0.85) !important; }
    .nav__link:hover, .nav__link.active { color: #fff !important; }
    .btn--nav-desktop { display: none; }

    .intro-strip__grid, .serve-grid, .pillars-grid, .metrics__grid, .testimonials-grid { grid-template-columns: 1fr; }
    .image-banner__grid { grid-template-columns: 1fr 1fr; min-height: auto; }
    .image-banner__item img { min-height: 200px; }
    .form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
    p,
    li,
    .section-subtitle,
    .serve-card p,
    .service-item p,
    .process__step p,
    .testimonial blockquote,
    .about-layout__content p,
    .about-value p,
    .contact-detail a,
    .contact-detail p,
    .footer__links a,
    .footer__links span,
    .footer__brand > p,
    .intro-strip__item span {
        font-weight: 500;
        color: var(--color-text);
    }
    .pillar p,
    .image-banner__cta p {
        font-weight: 500;
        color: rgba(255,255,255,0.88);
    }
    .future-item span,
    .future-badge,
    .btn,
    .form-group label,
    .faq-item__question,
    .contact-form__header p {
        font-weight: 600;
    }
    .footer__links a,
    .footer__links span,
    .footer__brand > p,
    .footer__bottom,
    .footer__slogan {
        color: rgba(255,255,255,0.86);
    }
    .hero__overlay { background: linear-gradient(135deg, rgba(13,27,42,0.84) 0%, rgba(13,27,42,0.62) 45%, rgba(16,185,129,0.14) 100%); }
    .hero h1 { font-size: 2.5rem; }
    .hero__label {
        font-size: 0.95rem;
        font-weight: 700;
        color: rgba(255,255,255,0.96);
        background: rgba(255,255,255,0.16);
        border-color: rgba(255,255,255,0.3);
        text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    }
    .hero__subtitle {
        font-size: 1.05rem;
        font-weight: 600;
        line-height: 1.75;
        color: rgba(255,255,255,0.96);
        text-shadow: 0 1px 3px rgba(0,0,0,0.32);
    }
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .hero__actions .btn {
        font-weight: 700;
        letter-spacing: 0.01em;
    }
    .btn--white {
        background: rgba(255,255,255,0.18);
        border-color: rgba(255,255,255,0.52);
    }
    .hero__scroll { display: none; }
    .about-layout__images { min-height: 380px; }
    .about-layout__img-main img { height: 320px; }
    .about-layout__img-small img { height: 160px; }

    .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
    .whatsapp-float__tooltip { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--space-sm); }
    .header .logo {
        width: auto;
    }
    .header .logo__img { height: 42px; max-width: 156px; }
    .image-banner__grid { grid-template-columns: 1fr; }
    .intro-strip__grid { grid-template-columns: 1fr 1fr; }
    .process__step { min-width: 100%; }
}
