/* ==========================================================
   MeltMyWay — Hero Section Styles
   Design: Luxury / Editorial / Refined Minimalism
   ========================================================== */

/* ── Design Tokens ── */
:root {
    --color-bg: #F5F0EB;
    --color-bg-warm: #EDE6DD;
    --color-text: #1A1A1A;
    --color-text-muted: #6B6560;
    --color-accent: #C8A97E;
    --color-accent-light: #D4BA94;
    --color-surface: #FFFFFF;
    --color-divider: #D5CEC6;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    --font-review: 'Roboto', 'Segoe UI', system-ui, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    --nav-height: 72px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ── Noise Texture Overlay ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* ── Snowfall Canvas ── */
#snowfall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: var(--nav-height);
    background: rgba(245, 240, 235, 0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
    height: 60px;
    background: rgba(245, 240, 235, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav__logo {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.25em;
    color: var(--color-text);
    transition: opacity 0.3s ease;
}

.nav__logo:hover {
    opacity: 0.7;
}

.nav__links {
    display: flex;
    gap: 36px;
    margin-left: auto;
    margin-right: 80px;
}

.nav__links a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--color-text);
    position: relative;
    padding: 4px 0;
    display: inline-block;
    overflow: hidden;
}

.nav__links a span {
    display: inline-block;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav__links a::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--color-accent);
    transition: transform 0.4s var(--ease-out-expo);
}

.nav__links a:hover span {
    transform: translateY(-150%);
}

.nav__links a:hover::after {
    transform: translateY(-100%);
}

.nav__contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__cta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    padding: 10px 24px;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
    text-align: center;
    min-width: 100px;
}

.nav__cta--call {
    background: var(--color-text);
    color: var(--color-bg);
    border: 1px solid var(--color-text);
}

.nav__cta--text {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.nav__cta--accent {
    background: var(--color-accent);
    color: var(--color-bg);
    border: 1px solid var(--color-accent);
}

.display-desktop {
    display: flex;
}

.nav__cta:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 169, 126, 0.3);
}

.nav__contact-sub {
    font-size: 10px;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}

/* ── Hero Section ── */
.hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: var(--nav-height);
    position: relative;
}

/* ── Upper Hero ── */
.hero__upper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: 60px 48px 40px;
    flex-shrink: 0;
}

.hero__tagline-col {
    padding-bottom: 12px;
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 600px;
}

.hero__headline-col {
    text-align: right;
}

.hero__headline-top {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(48px, 6vw, 90px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--color-text);
    text-shadow: 0 4px 12px rgba(245, 240, 235, 0.4);
}

.hero__headline-indent {
    display: inline-block;
    padding-right: 0.15em;
}

/* ── Image Strip ── */
.hero__image-strip {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    height: clamp(300px, 40vw, 520px);
    overflow: hidden;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s var(--ease-out-expo);
}

.hero__image-strip:hover .hero__image {
    transform: scale(1.02);
}

/* Steam Effects Removed as requested */

/* Image reveal animation */
.anim-reveal .hero__image-wrapper {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.4s var(--ease-out-expo);
}

.anim-reveal.is-visible .hero__image-wrapper {
    clip-path: inset(0 0 0 0);
}

/* Bypass slow reveal animation on mobile for LCP */
@media (max-width: 1024px) {
    .anim-reveal .hero__image-wrapper {
        clip-path: none !important;
        transition: none !important;
    }
    .anim-reveal.is-visible .hero__image-wrapper {
        clip-path: none !important;
    }
}

/* ── Lower Hero ── */
.hero__lower {
    padding: 40px 48px 0;
    flex-shrink: 0;
}

.hero__lower-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero__headline-bottom {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-text);
    text-align: right;
    max-width: none;
    text-shadow: 0 4px 12px rgba(245, 240, 235, 0.4);
}

.hero__headline-indent-2 {
    display: inline-block;
    background: linear-gradient(135deg, #C8A97E 0%, #E88331 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-accent);
    /* Fallback */
}

.hero__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    margin-top: 12px;
    max-width: 600px;
}

.hero__cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.hero__cta-button {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    padding: 18px 24px;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.hero__cta-button--primary {
    background: var(--color-text);
    color: var(--color-bg);
    border: 1px solid var(--color-text);
}

.hero__cta-button--secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.hero__cta-button--large {
    padding: 24px 48px;
    font-size: 15px;
    width: 100%;
    max-width: 500px;
    background: var(--color-accent);
    color: var(--color-bg);
    border: none;
    box-shadow: 0 4px 24px rgba(200, 169, 126, 0.25);
    letter-spacing: 0.16em;
}

.hero__cta-button--large::before {
    background: var(--color-bg);
}

.hero__cta-button--large:hover {
    color: var(--color-text);
    box-shadow: 0 8px 32px rgba(200, 169, 126, 0.45);
}

.hero__cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-accent);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 0;
}

.hero__cta-button:hover::before {
    transform: translateX(0);
}

.hero__cta-button span {
    position: relative;
    z-index: 1;
}

.hero__cta-button:hover {
    color: #fff;
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 169, 126, 0.3);
}

.hero__cta-confidence {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: var(--color-text-muted);
    text-align: right;
}

/* ── Bottom Row ── */
.hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 48px 36px;
    margin-top: auto;
    flex-shrink: 0;
}

.hero__scroll {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__scroll-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-text);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

.hero__scroll-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

/* Trust Badges */
.hero__trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero__trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.hero__trust-badge:hover {
    color: var(--color-text);
}

.hero__trust-icon {
    color: var(--color-accent);
    font-size: 12px;
}

.hero__trust-divider {
    width: 1px;
    height: 14px;
    background: var(--color-divider);
}

.hero__season-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 8px 16px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero__season-tag:hover {
    background: var(--color-accent);
    color: #fff;
}

/* ── Entrance Animations ── */
.anim-fade {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo);
}

.anim-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease-out-expo),
        transform 1s var(--ease-out-expo);
}

.anim-slide-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Section 2: Why MeltMyWay (Grid Redesign) ── */
.why-ref {
    padding: 100px 48px;
    background-color: var(--color-bg);
}

.why-ref__container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-ref__header {
    margin-bottom: 60px;
}

.why-ref__label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #E88331;
    /* Orange from reference */
    text-transform: uppercase;
    margin-bottom: 24px;
}

.why-ref__bullet {
    width: 6px;
    height: 6px;
    background-color: #E88331;
}

.why-ref__title {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 24px;
}

.why-ref__subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-weight: 400;
}

.why-ref__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
    /* row-gap 40px, col-gap 24px */
}

/* ── Item Wrapper ── */
.why-ref__item {
    display: flex;
    flex-direction: column;
}

/* ── Card ── */
.why-ref__card {
    background-color: rgba(0, 0, 0, 0.04);
    /* Changed from 1.6 to auto with a min-height for ~20% smaller feel while fitting text */
    min-height: 240px;
    padding: 24px;
    /* Reduced from 32px for smaller overall size */
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
    border-radius: 4px;
}

/* Hover Effect: Subtle shadow lift */
.why-ref__card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    /* Shadow */
    transform: translateY(-4px);
    /* Lift card slightly for corsair animation */
}

/* Icon */
.why-ref__icon {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 32px;
    height: 32px;
}

.why-ref__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity 0.4s ease;
}

.why-ref__card:hover .why-ref__icon img {
    opacity: 0.8;
}

/* Content Container */
.why-ref__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Stretch to fill the whole card */
}

.why-ref__heading {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-text);
    text-transform: uppercase;

    /* Align perfectly with the absolute icon */
    margin: 0 0 0 48px;
    /* 32px icon + 16px gap */
    height: 32px;
    /* Set height identical to icon to physically align them */
    display: flex;
    align-items: center;
    /* Vertically center the text within that height */

    transition: color 0.4s ease;
}

.why-ref__desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
    margin-top: auto;
}

.why-ref__card {
    background-color: rgba(0, 0, 0, 0.04);
    min-height: 190px;
    /* Reduced by ~20% */
    padding: 20px;
    /* Reduced padding */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
    border-radius: 4px;
}

/* We don't hide the title now, but optionally change color on hover */
.why-ref__card:hover .why-ref__heading {
    color: var(--color-accent);
}

/* ── Number Label Below Card ── */
.why-ref__number {
    font-family: var(--font-body);
    /* Monospace/Technical look */
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-top: 12px;
    padding-left: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .why-ref {
        padding: 80px 32px;
    }

    .why-ref__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-ref {
        padding: 60px 20px;
    }

    .why-ref__grid {
        grid-template-columns: 1fr;
    }

    .why-ref__header {
        margin-bottom: 40px;
    }

    .why-ref__title {
        font-size: clamp(28px, 8vw, 36px);
    }

    .why-ref__card {
        aspect-ratio: auto;
        min-height: 160px;
        padding: 20px;
    }

    .why-ref__icon {
        top: 20px;
        left: 20px;
    }

    .why-ref__heading {
        margin: 0 0 12px 40px;
    }
}

/* ==========================================================
   Trust & Reviews Section
   ========================================================== */
.trust-section {
    padding: 100px 48px;
    background-color: var(--color-bg-warm);
}

.trust-section__inner {
    max-width: 1400px;
    /* expanded to allow 4 cards alongside */
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    /* reduced gap */
    margin-top: 50px;
}

.trust-card {
    background-color: transparent;
    padding: 0;
    /* removed padding completely for flush layout */
    text-align: center;
    transition: transform 0.4s var(--ease-out-expo);

    /* Interactive properties for <a> tag */
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.trust-card:hover {
    transform: translateY(-4px);
}

.trust-card__stars {
    color: #FBB03B;
    font-size: 19px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.trust-card__stars .trust-score {
    margin-right: 6px;
    color: var(--color-text);
    /* Or just let it inherit if not needed, but keep it robust */
}

.trust-card__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

/* HomeStars Branding */
.brand-homestars {
    background-color: #00AEEF;
    color: white;
    font-family: var(--font-review);
    font-weight: 700;
    font-size: 14px;
    /* scaled up */
    padding: 6px 11px;
    /* scaled up */
    border-radius: 3px 3px 0 0;
    letter-spacing: 0.05em;
    width: 119px;
}

.brand-verified {
    background-color: #727272;
    color: white;
    font-family: var(--font-review);
    font-weight: 700;
    font-size: 11px;
    /* scaled up */
    letter-spacing: 0.15em;
    padding: 2px 11px;
    /* scaled up */
    border-radius: 0 0 3px 3px;
    width: 119px;
}

/* Google Branding */
.brand-google {
    font-family: var(--font-review);
    font-size: 26px;
    /* reduced font for Google */
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
}

.g-blue {
    color: #4285F4;
}

.g-red {
    color: #EA4335;
}

.g-yellow {
    color: #FBBC05;
}

.g-green {
    color: #34A853;
}

.brand-reviews {
    font-family: var(--font-review);
    font-size: 13px;
    /* halved */
    color: #5F6368;
    margin-top: 2px;
}

.trust-card__company {
    font-family: var(--font-review);
    font-size: 18px;
    /* scaled up */
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 4px;
    margin-top: auto;
}

.trust-card__metric {
    font-family: var(--font-review);
    font-size: 13px;
    /* scaled up */
    line-height: 1.4;
    color: var(--color-text-muted);
    margin: 0;
}

/* ── Trust Section Responsive ── */
@media (max-width: 1024px) {
    .trust-section {
        padding: 80px 32px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        /* fall back to 2x2 on tablets */
    }
}

@media (max-width: 640px) {
    .trust-section {
        padding: 60px 20px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        /* single column on mobile */
    }
}

/* ── Global Responsive ── */
/* Tablet */
@media (max-width: 1024px) {
    .nav {
        padding: 0 32px;
    }

    .nav__links {
        display: none;
    }

    .hero__upper {
        padding: 48px 32px 28px;
    }

    .hero__tagline {
        font-size: 10px;
    }

    .hero__lower {
        padding: 28px 32px 0;
    }

    .hero__cta-row {
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
    }

    .hero__bottom {
        padding: 0 32px 28px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero__trust {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero__trust-divider:last-of-type {
        display: none;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --nav-height: 60px;
    }

    .nav {
        padding: 0 20px;
    }

    .nav__logo {
        font-size: 15px;
        letter-spacing: 0.2em;
    }

    .nav__phone {
        font-size: 0;
    }

    .nav__phone-icon {
        width: 36px;
        height: 36px;
    }

    .nav__cta {
        font-size: 10px;
        padding: 8px 16px;
    }

    .hero__upper {
        grid-template-columns: 1fr;
        padding: 32px 20px 20px;
        gap: 24px;
    }

    .hero__tagline-col {
        order: 2;
    }

    .hero__headline-col {
        order: 1;
        text-align: left;
    }

    .hero__headline-top {
        font-size: clamp(28px, 8vw, 42px);
    }

    .hero__image-wrapper {
        height: clamp(240px, 60vw, 360px);
    }

    .hero__image {
        object-position: 20% center;
    }

    .hero__lower {
        padding: 20px 20px 0;
    }

    .hero__lower-content {
        align-items: flex-start;
    }

    .hero__headline-bottom {
        font-size: clamp(28px, 8vw, 42px);
        text-align: left;
    }

    .hero__cta-row {
        align-items: flex-start;
        margin-top: 28px;
    }

    .hero__cta-button {
        font-size: 11px;
        padding: 16px 20px;
        width: 100%;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }

    .hero__cta-button span {
        white-space: normal;
        text-align: center;
    }

    .hero__bottom {
        padding: 0 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero__trust {
        flex-direction: column;
        gap: 8px;
    }

    .hero__trust-divider {
        display: none;
    }

    .mobile-sticky-bar {
        display: flex;
    }
}

/* ── Common Editorial Elements ── */
.text-center {
    text-align: center;
}

/* ── Section 2 & 3: Editorial Block ── */
.editorial-block {
    padding: 100px 48px;
    background: var(--color-bg);
    position: relative;
    border-top: 1px solid var(--color-divider);
}

.editorial-block__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.editorial-heading {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 90px);
    font-weight: 400;
    line-height: 0.9;
    color: var(--color-text);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.editorial-heading--indent {
    display: inline-block;
    padding-left: 1.5em;
    font-style: italic;
    color: var(--color-accent);
}

.editorial-body {
    font-family: var(--font-body);
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 640px;
    margin-bottom: 48px;
}

.editorial-trust-logos {
    border-top: 1px solid var(--color-divider);
    padding-top: 32px;
}

.editorial-trust-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.editorial-partners {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.partner-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
}

.partner-item span {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.partner-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    transition: color 0.3s ease;
}

.partner-link:hover {
    color: var(--color-text);
}

.partner-divider {
    width: 1px;
    background: var(--color-divider);
}

.editorial-attribution {
    font-size: 10px;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 24px;
}

.editorial-visual-col {
    height: 100%;
    min-height: 600px;
}

.editorial-visual-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.editorial-visual-inner {
    color: var(--color-bg);
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.1em;
    opacity: 0.3;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

/* ── Section 4: Benefits Editorial (Magazine Layout) ── */
.benefits-editorial {
    padding: 100px 48px;
    background: var(--color-surface);
}

.benefits-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 100px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-title-small {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    max-width: 1400px;
    margin: 0 auto;
}



.benefit-card {
    position: relative;
    padding-top: 40px;
    border-top: 2px solid var(--color-text);
}

.benefit-card__number {
    position: absolute;
    top: -24px;
    left: 0;
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--color-bg-warm);
    line-height: 1;
    z-index: 0;
    font-style: italic;
}

.benefit-card__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.benefit-card__desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-muted);
}


/* ── Section 4: About Us Points (Right Column of Editorial Block) ── */
.about-points {
    padding: 16px 0;
}

.about-points__title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-text);
    margin-bottom: 24px;
}

.about-points__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.about-points__list li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
}

.about-points__list li::before {
    content: "•";
    color: var(--color-accent);
    /* MeltMyWay orange accents */
    position: absolute;
    left: 0;
    font-size: 20px;
    top: -2px;
}

.about-points__list strong {
    color: var(--color-text);
    /* Highlight the strong text */
    font-weight: 600;
}

.about-points__closing {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    font-style: italic;
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid var(--color-divider);
}

/* ── Responsive Updates ── */
@media (max-width: 1024px) {
    .editorial-block__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .editorial-visual-col {
        min-height: 400px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .concierge-fit__wrapper {
        padding: 60px 40px;
    }
}

@media (max-width: 640px) {

    .editorial-block,
    .benefits-editorial,
    .concierge-fit {
        padding: 80px 20px;
    }

    .editorial-heading {
        font-size: clamp(36px, 10vw, 48px);
    }

    .editorial-heading--indent {
        padding-left: 0;
    }

    .editorial-partners {
        flex-direction: column;
        gap: 24px;
    }

    .partner-divider {
        width: 100%;
        height: 1px;
    }

    .concierge-fit__wrapper {
        padding: 40px 20px;
    }

    .hero__cta-row--fit {
        flex-direction: column;
    }
}

/* ── Section 5: Process Accordion (Interactive) ── */
.process-editorial {
    padding: 100px 48px;
    background: var(--color-bg-warm);
}

.process-editorial__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.process-editorial__sub {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 16px;
}

.process-split {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 64px;
    border-top: 1px solid var(--color-divider);
}

@media (min-width: 1025px) {
    .process-split {
        flex-direction: row;
        align-items: stretch;
    }

    .process-accordion {
        flex: 1;
        min-width: 0;
        /* Prevent flex blowout */
        border-top: none;
        margin-top: 0;
    }

    .process-visual {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding-left: 24px;
    }
}

.process-accordion {
    display: flex;
    flex-direction: column;
}

.process-visual {
    position: relative;
    z-index: 20;
}

.process-visual__image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.accordion-item {
    border-bottom: 1px solid var(--color-divider);
    position: relative;
    /* Ensure no default outline on click */
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 32px 0;
    cursor: pointer;
    list-style: none;
    /* Hide default details arrow */
    position: relative;
    transition: color 0.3s ease;
}

/* Fallback to hide webkit arrow */
.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-header:hover {
    color: var(--color-accent);
}

.accordion-marker {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-accent);
    font-style: italic;
    width: 60px;
    flex-shrink: 0;
}

.accordion-title-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 40px;
    /* Space for plus/minus icon */
    flex-grow: 1;
}

.accordion-title {
    font-family: var(--font-body);
    /* Cleaner, more legible font */
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin: 0;
}

.accordion-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Custom Plus/Minus Icon */
.accordion-icon {
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--color-text);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Horizontal line of plus */
.accordion-icon::before {
    width: 100%;
    height: 2px;
}

/* Vertical line of plus */
.accordion-icon::after {
    width: 2px;
    height: 100%;
}

/* When details is open, rotate to form minus or x */
details[open] .accordion-icon::after {
    transform: rotate(90deg);
}

details[open] .accordion-icon::before {
    transform: rotate(180deg);
}

/* Smooth expanding body */
.accordion-body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-muted);
    padding: 0 0 32px 60px;
    /* Aligns paragraph text with header text layout */
    margin: 0;
    max-width: 800px;

    /* Animation logic for details */
    animation: sweep 0.4s ease-in-out forwards;
}

@keyframes sweep {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Badges - Process Footer */
.process-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px dashed var(--color-divider);
}

.trust-badge {
    background: var(--color-surface);
    padding: 32px;
    border-left: 2px solid var(--color-accent);
}

.trust-badge__title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-badge__desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

/* ── Section 6: Mid-Page CTA ── */
.mid-cta {
    padding: 40px 48px;
    /* Greatly reduced from 120px */
    background: var(--color-text);
    /* Dark background */
    color: var(--color-bg);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mid-cta__inner {
    max-width: 800px;
    margin: 0 auto;
}

.mid-cta__heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    /* Slightly smaller */
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    /* Reduced from 24px */
    color: var(--color-bg);
}

.mid-cta__body {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    /* Slightly smaller */
    line-height: 1.6;
    color: rgba(245, 240, 235, 0.8);
    margin-bottom: 24px;
    /* Reduced from 48px */
}

.mid-cta .hero__cta-row--fit {
    justify-content: center;
    gap: 16px;
}

.mid-cta .hero__cta-button--primary {
    background: var(--color-bg);
    color: var(--color-text);
}

.mid-cta .hero__cta-button--primary::before {
    background: var(--color-accent);
}

.mid-cta .hero__cta-button--secondary {
    border-color: rgba(245, 240, 235, 0.3);
    color: var(--color-bg);
}

.mid-cta .hero__cta-button--secondary:hover {
    background: rgba(245, 240, 235, 0.1);
}

/* ── Section 7: System Anatomy ── */
.anatomy-editorial {
    padding: 100px 48px;
    background: var(--color-bg);
    color: var(--color-text);
}

.anatomy-editorial__header {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.anatomy-editorial__header .editorial-heading {
    color: var(--color-text);
    margin: 0;
}

.anatomy-editorial__header .editorial-body {
    color: var(--color-text-muted);
    margin: 0;
    padding-bottom: 20px;
}

.anatomy-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.anatomy-item {
    position: relative;
    width: 100%;
}

.anatomy-item__visual {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(0, 0, 0, 0.04);
    /* light placeholder */
    transition: transform 0.6s var(--ease-out-expo), background-color 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--color-divider);
}

.anatomy-item:hover .anatomy-item__visual {
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    /* slight lift effect */
}

.anatomy-item figcaption {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-top: 16px;
    text-transform: uppercase;
    line-height: 1.5;
}

/* ── Section 8 & 9: Investment / Contact ── */
.investment-contact {
    padding: 100px 48px;
    background: var(--color-bg);
}

.investment-contact__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.investment-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.cost-drivers {
    border-top: 1px solid var(--color-divider);
    margin-top: 24px;
}

.cost-driver {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-divider);
}

.cost-driver__header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
}

.cost-driver__num {
    font-family: var(--font-display);
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
}

.cost-driver__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text);
    text-transform: uppercase;
}

.cost-driver__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 30px;
    /* aligns roughly with title, skipping num */
}

@media (min-width: 1024px) {
    .cost-driver__content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.cost-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cost-info h5 {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.cost-info p {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

.contact-col {
    background: var(--color-bg-warm);
    padding: 60px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}

.contact-col__illustration {
    margin-bottom: 40px;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-image: url('assets/cost_illustration_v2.png');
    background-size: 130%;
    background-position: center top;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
}

.contact-col .investment-title {
    margin-top: auto;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.contact-method h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text);
}

.contact-method p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.contact-method .hero__cta-button {
    width: 100%;
}

.contact-method-divider {
    width: 100%;
    height: 1px;
    background: var(--color-divider);
}

/* ── Section 10: FAQ Editorial ── */
.faq-editorial {
    padding: 100px 48px;
    background: var(--color-surface);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--color-divider);
}

.faq-panel {
    border-bottom: 1px solid var(--color-divider);
}

.faq-panel summary {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 32px 48px 32px 0;
    transition: color 0.3s ease;
}

.faq-panel summary:hover {
    color: var(--color-accent);
}

.faq-panel summary::-webkit-details-marker {
    display: none;
}

.faq-panel summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 300;
    color: var(--color-text-muted);
    transition: transform 0.4s ease;
}

.faq-panel[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-panel__content {
    padding-bottom: 32px;
    padding-right: 48px;
    animation: sweep .3s ease-in-out forwards;
}

@keyframes sweep {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.faq-panel__content p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* ── Section 11: Footer Editorial ── */
.footer-editorial {
    background: var(--color-text);
    color: var(--color-bg);
}

.footer-editorial__top {
    padding: 100px 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-editorial__top .editorial-heading {
    color: var(--color-bg);
}

.footer-editorial__top .editorial-body {
    color: rgba(245, 240, 235, 0.7);
}

.footer-editorial__top .hero__cta-button--primary {
    background: var(--color-bg);
    color: var(--color-text);
    border: none;
}

.footer-editorial__top .hero__cta-button--secondary {
    border-color: rgba(245, 240, 235, 0.3);
    color: var(--color-bg);
}

/* Contact Form Styles */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

/* Success Message Styles */
.success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: rgba(200, 169, 126, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 4px;
    text-align: center;
    gap: 16px;
}

.success-message.is-visible {
    display: flex;
    animation: sweep 0.6s var(--ease-out-expo) forwards;
}

.success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.success-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-bg);
}

.success-message h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-accent);
}

.success-message p {
    font-size: 14px;
    color: rgba(245, 240, 235, 0.7);
    line-height: 1.6;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 235, 0.7);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(245, 240, 235, 0.05);
    border: 1px solid rgba(245, 240, 235, 0.2);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-bg);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%23F5F0EB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--color-text);
    color: var(--color-bg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 240, 235, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: rgba(245, 240, 235, 0.1);
}

.contact-form .btn-submit {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

.footer-editorial__bottom {
    padding: 60px 48px;
    border-top: 1px solid rgba(245, 240, 235, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-bg);
}

.footer-content-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(245, 240, 235, 0.4);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-bg);
}

.footer-attribution {
    font-size: 10px;
    color: rgba(245, 240, 235, 0.3);
    font-style: italic;
    text-align: center;
}

/* ── Responsive Updates ── */
@media (max-width: 1024px) {

    .display-desktop,
    .nav__links,
    .nav__contact-sub {
        display: none !important;
    }

    .hero__upper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 24px;
    }

    .hero__tagline-col {
        order: 2;
    }

    .hero__headline-col {
        order: 1;
        text-align: left;
    }

    .anatomy-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .investment-contact__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .anatomy-editorial__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-col {
        padding: 40px;
    }
}

@media (max-width: 640px) {

    .process-editorial,
    .anatomy-editorial,
    .investment-contact,
    .faq-editorial,
    .footer-editorial__top,
    .mid-cta {
        padding: 80px 20px;
    }

    .footer-editorial__bottom {
        padding: 40px 20px;
    }

    .process-timeline {
        padding-left: 20px;
    }

    .process-step__marker {
        left: -40px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .process-step__marker::after {
        display: none;
    }

    .anatomy-gallery {
        grid-template-columns: 1fr;
    }

    .contact-col {
        padding: 32px 20px;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
    }

    .form-row {
        flex-direction: column;
        gap: 24px;
    }

    .process-trust-badges {
        grid-template-columns: 1fr;
    }

    .trust-badge {
        padding: 24px;
    }
}

/* ── Mobile Sticky Bar Base ── */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
    /* Hidden by default, shown in mobile query */
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 16px 20px;
    gap: 12px;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.mobile-sticky-bar.is-visible {
    transform: translateY(0);
}

.sticky-cta {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 16px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sticky-cta--call {
    background: var(--color-text);
    color: var(--color-bg);
    border: 1px solid var(--color-text);
}

.sticky-cta--text {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}