@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/fraunces-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/fraunces-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/fraunces-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/fraunces-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('assets/fonts/manrope-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/manrope-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/manrope-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/manrope-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/manrope-700.woff2') format('woff2');
}

:root {
    --ink: #0f172a;
    --ink-soft: #1f2937;
    --muted: #64748b;
    --accent: #e11d48;
    --accent-strong: #be123c;
    --teal: #0f766e;
    --sand: #f7f7f7;
    --cloud: #f3f4f6;
    --paper: #ffffff;
    --white: #ffffff;
    --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 20px 50px rgba(15, 23, 42, 0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition: 0.3s ease;
    --nav-height: 56px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
}

h3 {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
}

p {
    color: var(--ink-soft);
}

.container {
    width: min(1380px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-muted {
    background: var(--cloud);
}

.section-title {
    max-width: 720px;
    margin-bottom: 64px;
}

.section-title p {
    color: var(--muted);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.08);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.82rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--cloud);
    color: var(--ink-soft);
    font-size: 0.8rem;
    font-weight: 600;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: var(--transition);
    gap: 10px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: translateX(-140%);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.btn:hover::before,
.btn:focus::before {
    transform: translateX(140%);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.22);
}

.btn-primary:hover {
    background: var(--accent-strong);
}

.btn-secondary {
    background: var(--ink);
    color: var(--white);
}

.btn-secondary:hover {
    background: #111827;
}

.btn-outline {
    border-color: rgba(15, 23, 42, 0.25);
    color: var(--ink);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--ink);
    transform: translateY(-1px);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent);
}

.link-arrow span {
    transition: transform var(--transition);
}

.link-arrow:hover span {
    transform: translateX(4px);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 12px;
    background: var(--ink);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 1000;
}

.skip-link:focus {
    top: 12px;
}

header.nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(15, 23, 42, 0);
    box-shadow: none;
    transition: background 0.3s ease, backdrop-filter 0.3s ease,
                border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Slightly wider header container (reduced side padding feel). */
header.nav .container {
    width: min(1200px, 96%);
    padding: 0 32px;
}

header.nav.solid {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.1);
}

header.nav.solid .menu-desktop > ul > li > a,
header.nav.solid .logo span {
    color: var(--ink);
}

header.nav.solid .nav-cta {
    background: var(--accent);
    color: var(--white);
}

header.nav.solid .menu-desktop > ul > li > a::after {
    background: var(--accent);
}

header.nav.solid .menu-desktop > ul > li > a:hover,
header.nav.solid .menu-desktop > ul > li > a.active {
    color: var(--ink);
}

header.nav.solid .menu-desktop > ul > li > a:visited {
    color: var(--ink);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    min-height: var(--nav-height);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.logo img {
    width: auto;
    max-width: 220px;
    height: 56px;
    max-height: 56px;
    object-fit: contain;
}

.menu-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.menu-desktop > ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-mobile-panel {
    display: none;
}

.mobile-menu-backdrop {
    display: none;
}

.menu-desktop > ul > li > a {
    color: var(--ink);
    font-weight: 600;
    position: relative;
}

.menu-desktop > ul > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.menu-desktop > ul > li > a:hover::after,
.menu-desktop > ul > li > a.active::after {
    width: 100%;
}

.has-mega {
    position: relative;
}

.mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    transform: translateY(12px);
    width: 100%;
    top: calc(var(--nav-height) - 1px);
    padding: 18px 0 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 300;
}

.mega-menu::before {
    content: '';
    position: fixed;
    top: calc(var(--nav-height) - 1px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.has-mega.mega-open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.has-mega:hover .mega-menu::before,
.has-mega:focus-within .mega-menu::before,
.has-mega.mega-open .mega-menu::before {
    opacity: 1;
}

.mega-panel {
    width: min(1480px, calc(100% - 40px));
    margin: 0 auto;
    background: #fbfcfe;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
    padding: clamp(30px, 3.2vw, 48px);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.mega-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 26px 26px 0 0;
    background: rgba(15, 23, 42, 0.12);
    pointer-events: none;
}

.mega-panel::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    pointer-events: none;
}

.mega-panel::before {
    display: none;
}

.mega-panel::after {
    display: none;
}

.mega-panel {
    position: relative;
}

.mega-panel,
.mega-panel p,
.mega-item {
    color: var(--ink);
}




.mega-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(0, 0.9fr);
    gap: clamp(24px, 3vw, 36px);
    align-items: start;
}

.mega-section {
    display: block;
    min-width: 0;
    padding-right: 18px;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.mega-columns > .mega-section:nth-child(4) {
    border-right: none;
}

.mega-columns > .mega-section:last-of-type {
    border-right: none;
    padding-right: 0;
}

.mega-section summary {
    list-style: none;
    cursor: pointer;
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}

.mega-section summary:focus-visible {
    outline: 2px solid rgba(225, 29, 72, 0.5);
    outline-offset: 4px;
    border-radius: 8px;
}

.mega-section summary::-webkit-details-marker {
    display: none;
}

.mega-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b1220;
    letter-spacing: 0.02em;
    font-family: 'Fraunces', serif;
}

.mega-section-desc {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.62);
    line-height: 1.35;
    max-width: 260px;
}

.mega-links {
    list-style: none;
    display: grid;
    gap: 10px;
    min-width: 0;
}

.mega-subhead {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 10px;
    margin-top: 2px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.mega-section .mega-links .mega-subhead + li a {
    padding-top: 2px;
}

.mega-links > li:first-child.mega-subhead {
    border-top: none;
    padding-top: 0;
}

.mega-links a {
    font-size: 1.02rem;
    font-weight: 600;
    color: #111827;
    padding: 6px 0;
    display: block;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: break-word;
}

.mega-links a::after {
    content: '→';
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
    margin-left: 8px;
}

.mega-links a:hover,
.mega-links a:focus,
.mega-links a:focus-visible {
    color: var(--accent);
}

.mega-links a:hover::after,
.mega-links a:focus::after,
.mega-links a:focus-visible::after {
    opacity: 1;
    transform: translateX(0);
}

.mega-cta {
    background: #0b1220;
    color: #ffffff;
    padding: 26px;
    border-radius: 20px;
    display: grid;
    gap: 18px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-cta-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.mega-cta-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
}

.mega-cta-actions {
    display: grid;
    gap: 12px;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.cta-primary {
    background: var(--accent);
    color: #ffffff;
}

.cta-primary:hover,
.cta-primary:focus {
    background: var(--accent-strong);
}

.cta-secondary {
    background: #ffffff;
    color: #0f172a;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-1px);
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    transform: translateX(-140%);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.cta-button:hover::before,
.cta-button:focus::before {
    transform: translateX(140%);
}

.cta-secondary:hover,
.cta-secondary:focus {
    background: #e2e8f0;
}

.cta-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-ghost:hover,
.cta-ghost:focus {
    border-color: #ffffff;
}

.mega-cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.mega-cta--panel {
    min-height: 260px;
    padding: clamp(20px, 2vw, 28px);
    background: linear-gradient(180deg, #050816 0%, #0b1220 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 35px 80px rgba(5, 12, 32, 0.5);
    align-self: stretch;
}

.menu-desktop > ul > li > a.nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 8px 16px rgba(225, 29, 72, 0.2);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
}

.menu-desktop > ul > li > a.nav-cta::after {
    display: none;
}

.menu-desktop > ul > li > a.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    transform: translateX(-140%);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.menu-desktop > ul > li > a.nav-cta:hover,
.menu-desktop > ul > li > a.nav-cta:focus-visible {
    background: #ffffff;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(225, 29, 72, 0.25);
}

.menu-desktop > ul > li > a.nav-cta:hover::before,
.menu-desktop > ul > li > a.nav-cta:focus-visible::before {
    transform: translateX(140%);
}

header.nav.solid .menu-desktop > ul > li > a.nav-cta {
    color: #ffffff;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ink);
    cursor: pointer;
}

.hero {
    position: relative;
    padding: 100px 0 90px;
    background: var(--white);
}

.home-hero {
    padding: 0;
    min-height: clamp(420px, 62vh, 680px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Full-bleed home hero: container goes edge to edge, image fills right side */
.home-hero .container {
    width: 100%;
    max-width: 100%;
    gap: 0;
    padding: 0;
    align-items: stretch;
}

.home-hero .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    padding: 56px 5% 56px max(40px, calc((100vw - 1380px) / 2));
}

.home-hero .hero-visual {
    align-self: stretch;
    min-height: clamp(420px, 62vh, 680px);
    overflow: hidden;
}

.home-hero .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin: 18px 0;
}

.home-hero .hero-title {
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.home-hero .hero-subtitle {
    font-size: 1.15rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 700;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

@media (max-width: 900px) {
    .hero-badge {
        display: block;
        max-width: 220px;
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 2.2rem);
        max-width: 260px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-cta-row .btn-primary {
    padding: 12px 28px;
    white-space: nowrap;
}

.hero-cta-row .btn-outline {
    background: var(--white);
    white-space: nowrap;
}

.hero-compact .container {
    max-width: 920px;
}

.hero-compact .hero-copy {
    max-width: 760px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.hero-highlight {
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--cloud);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: var(--shadow-sm);
}

.hero-highlight h4 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.hero-highlight p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ── Marquee ticker strip ─────────────────────────────────── */
.ticker-wrap {
    background: var(--ink);
    overflow: hidden;
    padding: 16px 0;
    border-top: 3px solid var(--accent);
}
.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
    width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 28px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}
.ticker-item::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-cta-row {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 12px;
    }

    .hero-cta-row .btn-primary,
    .hero-cta-row .btn-outline {
        width: 100%;
        padding: 14px 18px;
        font-size: 0.98rem;
        white-space: normal;
    }

    header.nav .container {
        padding: 0 16px;
    }

    .home-hero .hero-visual {
        display: none;
    }

    .home-hero {
        min-height: auto;
        padding: 48px 0 40px;
        align-items: stretch;
    }

    .home-hero .hero-copy {
        padding: 0 16px 32px;
        width: 100%;
        max-width: min(340px, 86vw);
        margin: 0 auto;
        /* reset full-bleed desktop padding */
    }

    .home-hero .hero-title {
        font-size: clamp(2.1rem, 3.2vw, 2.5rem);
        line-height: 1.25;
        letter-spacing: -0.01em;
        max-width: 100%;
    }

    .home-hero .hero-subtitle {
        font-size: clamp(0.92rem, 2vw, 1rem);
        line-height: 1.65;
        max-width: 100%;
    }

    .home-hero .hero-badge {
        font-size: 0.9rem;
        line-height: 1.3;
        max-width: min(320px, 78vw);
    }

    .hero-title {
        font-size: clamp(1.95rem, 3.4vw, 2.3rem);
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 450px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-grid {
        gap: 22px;
        grid-template-columns: 1fr;
    }

    .home-hero .hero-grid {
        gap: 16px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "badge"
            "title"
            "visual"
            "subtitle"
            "cta";
    }

    .hero-copy {
        padding: 0 10px;
        width: 100%;
    }

    .hero-title,
    .hero-subtitle {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.7rem, 5vw, 2.2rem);
        line-height: 1.2;
        letter-spacing: -0.012em;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.45;
    }

    .hero-badge {
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
        justify-content: center;
    }

    .hero-cta-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
        width: 100%;
    }

    .home-hero {
        min-height: auto;
        display: block;
        padding: 24px 0 28px;
        background: #ffffff;
    }

    .home-hero .hero-copy {
        display: contents;
    }

    .home-hero .hero-cta-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-hero .hero-cta-row .btn-primary,
    .home-hero .hero-cta-row .btn-outline {
        padding: 14px 16px;
        font-size: 0.98rem;
        white-space: normal;
    }

    .home-hero .hero-badge {
        display: inline-flex;
        padding: 5px 10px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.06);
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        grid-area: badge;
        white-space: normal;
        max-width: 100%;
    }

    .home-hero .hero-title {
        font-size: clamp(1.85rem, 6.4vw, 2.45rem);
        letter-spacing: -0.02em;
        line-height: 1.05;
        margin-top: 12px;
        grid-area: title;
        max-width: 100%;
    }

    .home-hero .hero-title span {
        display: block;
    }

    .home-hero .hero-subtitle {
        margin-top: 0.45rem;
        font-size: 1.05rem;
        line-height: 1.32;
        max-width: 100%;
        grid-area: subtitle;
    }

    .home-hero .hero-subtitle .subtitle-desktop {
        display: none;
    }

    .home-hero .hero-subtitle .subtitle-mobile {
        display: block;
    }

    .home-hero .hero-visual::before,
    .home-hero .hero-visual::after {
        content: none;
    }

    .home-hero .hero-cta-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 16px;
        grid-area: cta;
    }

    .home-hero .hero-cta-row .btn-primary,
    .home-hero .hero-cta-row .btn-outline {
        width: 100%;
        padding: 14px 16px;
        font-size: 0.98rem;
        white-space: normal;
    }

    .home-hero .hero-visual {
        display: block;
        width: min(460px, 94vw);
        min-height: 0;
        height: auto;
        margin: 10px auto 0;
        border-radius: 24px;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
        grid-area: visual;
        aspect-ratio: 4 / 3;
    }

    .home-hero .hero-visual img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
    }

    .home-hero .hero-highlights {
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 16px;
        gap: 10px;
    }

    .home-hero .hero-highlights .tag {
        font-size: 0.78rem;
        text-align: left;
        justify-content: flex-start;
    }
}

.hero-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}
@media (max-width: 640px) {
    .hero-visual img {
        min-height: 200px;
    }
}

@media (min-width: 901px) {
    .home-hero .hero-grid {
        align-items: stretch;
        gap: 32px;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        min-height: clamp(420px, 62vh, 680px);
    }

    .home-hero .hero-visual {
        height: 100%;
        border-radius: 0;
        margin-top: -6px;
        margin-right: calc(50% - 50vw);
        position: relative;
    }

    .home-hero .hero-visual img {
        min-height: clamp(420px, 62vh, 680px);
    }

    .home-hero .hero-visual::before {
        content: '';
        position: absolute;
        inset: 0 70% 0 0;
        background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
    }

    .home-hero .hero-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0) 40%);
        pointer-events: none;
    }
}

.hero-subtitle {
    font-size: 1.08rem;
    color: var(--muted);
    margin-bottom: 22px;
}

.hero-subtitle .subtitle-mobile {
    display: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 20px;
    display: grid;
    gap: 16px;
}

.hero-card img {
    border-radius: var(--radius-md);
    height: 260px;
    object-fit: cover;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat {
    background: var(--cloud);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: left;
}

.stat h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.cards {
    display: grid;
    gap: 24px;
}

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

.cards.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    padding: 0 0 6px;
    border-radius: 0;
    background: none;
    border-bottom: 2px solid var(--accent);
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    min-width: auto;
    min-height: auto;
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
    margin-bottom: 16px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 14px 18px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--accent);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 10px;
    color: var(--muted);
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card img {
    border-radius: var(--radius-md);
    height: 260px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.03);
}

.service-card .card-img-wrap {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.service-card .link-arrow {
    margin-top: auto;
}

.service-list {
    list-style: none;
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.service-list li::before {
    content: '•';
    color: var(--accent);
    margin-right: 8px;
}

.split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.split img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.list-check {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.list-check li {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--ink-soft);
}

.list-check li span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.12);
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}

.process-step {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 10px;
    position: relative;
    overflow: hidden;
    counter-increment: step;
}

.process-step::after {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    bottom: -16px;
    right: 12px;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.05);
    font-family: 'Fraunces', serif;
    letter-spacing: -0.04em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.process-step h4 {
    margin-bottom: 6px;
}

.step-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.step-label::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.callout {
    background: var(--ink);
    border-radius: var(--radius-lg);
    padding: 64px 56px;
    display: grid;
    gap: 20px;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.28);
}

.callout h2 {
    color: var(--white);
    font-size: clamp(2rem, 3vw, 3rem);
}

.callout p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.1rem;
    margin: 0;
    max-width: 540px;
}

.callout .hero-actions .btn-primary {
    box-shadow: 0 10px 28px rgba(225, 29, 72, 0.32);
}

.callout .hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: transparent;
}

.callout .hero-actions .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.contact-subcallout {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: var(--cloud);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-subactions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-afterform {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-status {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--muted);
}

.legal-updated {
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.legal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.25rem;
    margin-top: 10px;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
}

.legal-content ul {
    display: grid;
    gap: 8px;
    padding-left: 18px;
    margin: 0;
}

.contact-details {
    display: grid;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-item span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(225, 29, 72, 0.1);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

form {
    display: grid;
    gap: 16px;
}

input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid rgba(225, 29, 72, 0.25);
    border-color: rgba(225, 29, 72, 0.5);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--muted);
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

footer {
    background: #0b1220;
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.3fr) minmax(280px, 0.9fr);
    gap: 32px;
    margin-bottom: 32px;
}

.footer-grid h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
}

.footer-column ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column h3 {
    font-size: 1.05rem;
}

.footer-brand-bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
}

.footer-contact-inline {
    display: grid;
    gap: 6px;
}

.footer-contact-inline a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.footer-contact-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.footer-contact {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 500;
}

.footer-logo {
    width: 240px;
    max-width: 100%;
    height: auto;
    max-height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

footer p {
    color: rgba(255, 255, 255, 0.85);
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    border: 1px solid transparent;
    display: grid;
    place-items: center;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 18px rgba(225, 29, 72, 0.25);
}

.socials a:hover,
.socials a:focus-visible {
    background: #ffffff;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 24px rgba(225, 29, 72, 0.3);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    text-align: center;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: 0.6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .mega-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mega-cta {
        grid-column: 1 / -1;
    }

    .mega-section {
        border-right: none;
        padding-right: 0;
    }

    .mega-layout {
        grid-template-columns: 1fr;
    }

    .mega-secondary-column {
        order: -1;
    }

    .mega-secondary-card {
        padding: 16px;
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        order: -1;
    }

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

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

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

@media (max-width: 900px) {
    header.nav .container {
        padding: 0 20px;
    }

    .header-container {
        gap: 12px;
        flex-wrap: wrap;
    }

    .logo img {
        width: auto;
        height: 48px;
        max-height: 48px;
    }

    .mobile-toggle {
        display: inline-flex;
        order: 2;
        margin-left: auto;
    }

    .menu-desktop > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .mega-menu {
        display: none !important;
    }

    .menu-desktop {
        display: none;
    }

    .menu-mobile-panel {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: var(--white);
        padding: 32px 24px 24px;
        border-radius: 0;
        border: none;
        box-shadow: 0 35px 65px rgba(15, 23, 42, 0.25);
        transform: translateX(100%);
        transform-origin: top right;
        transition: transform 0.35s ease, opacity 0.35s ease;
        z-index: 500;
        visibility: hidden;
        pointer-events: none;
        opacity: 0;
        overflow-y: auto;
    }

    .menu-mobile-panel.open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        opacity: 1;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 18px;
        font-size: 1rem;
        font-weight: 700;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--ink);
    }

    .mobile-menu-panels {
        display: flex;
        flex-direction: column;
        gap: 16px;
        flex: 1 1 auto;
        overflow-y: auto;
        max-height: none;
        padding-right: 4px;
    }

    .mobile-menu-contact {
        display: grid;
        gap: 4px;
        font-size: 0.95rem;
        color: var(--ink);
        margin-top: 10px;
    }

    .mobile-menu-contact-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        color: var(--ink);
    }

    .mobile-menu-contact-icon {
        display: inline-flex;
        width: 26px;
        height: 26px;
        border-radius: 999px;
        background: rgba(225, 29, 72, 0.1);
        align-items: center;
        justify-content: center;
        color: var(--accent);
    }

    .mobile-menu-panels details {
        border: 1px solid rgba(15, 23, 42, 0.12);
        border-radius: 12px;
        padding: 12px;
        background: var(--cloud);
    }

    .mobile-menu-panels summary {
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
    }

    .mobile-menu-panels ul {
        list-style: none;
        margin: 10px 0 0;
        padding: 0;
        display: grid;
        gap: 8px;
    }

    .mobile-menu-panels a {
        color: var(--ink);
        font-weight: 500;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
        font-weight: 600;
        color: var(--ink);
    }

    .mobile-menu-links a {
        padding-bottom: 6px;
        border-bottom: none;
    }

    .mobile-menu-links a:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mobile-menu-links__details summary {
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.1);
        display: flex;
        justify-content: space-between;
        cursor: pointer;
        font-weight: 600;
    }

    .mobile-menu-links__details ul {
        margin: 8px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .mobile-menu-links__details li a {
        color: var(--ink);
        font-weight: 500;
    }

    .mobile-menu-cta {
        margin-top: 10px;
    }

    .mobile-menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(5, 9, 20, 0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        z-index: 480;
    }

    .mobile-menu-backdrop.visible {
        opacity: 1;
        pointer-events: auto;
    }

    .hero {
        padding: 70px 20px 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-visual,
    .hero-card img {
        display: none;
    }

    .hero-card {
        display: none;
    }

    .hero-title {
        font-size: clamp(1.9rem, 3.8vw, 2.2rem);
        line-height: 1.28;
        max-width: 280px;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 280px;
    }

    .hero-badge {
        max-width: 240px;
        line-height: 1.3;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    body.no-scroll {
        overflow: hidden;
    }

    header.nav.solid .menu-desktop > ul > li > a {
        color: var(--ink);
    }

    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        margin-top: 12px;
        display: none;
        width: 100%;
    }

    .has-mega.mega-open .mega-menu {
        display: block;
    }

    .mega-panel {
        width: 100%;
        padding: 20px;
        box-shadow: none;
        border: 1px solid rgba(15, 23, 42, 0.1);
        margin: 0;
    }

    .mega-panel::before {
        display: none;
    }

    .mega-panel::after {
        display: none;
    }

    .mega-columns {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mega-section {
        border-bottom: 1px solid rgba(15, 23, 42, 0.1);
        padding-bottom: 14px;
    }

    .mega-section:last-of-type {
        border-bottom: none;
    }

    .mega-section summary {
        margin-bottom: 8px;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .mega-section summary::after {
        content: '+';
        font-size: 1.2rem;
        color: var(--muted);
    }

    .mega-section[open] summary::after {
        content: '-';
    }

    .mega-section-desc {
        grid-column: 1 / -1;
    }

    .mega-cta {
        margin-top: 6px;
    }
}

@media (max-width: 700px) {
    .section {
        padding: 65px 0;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .footer-logo {
        width: 200px;
        max-height: 56px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .cards.cols-2,
    .cards.cols-3,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .footer-column:last-child {
        text-align: right;
    }

    .footer-column:last-child ul {
        justify-items: end;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-card {
    background: var(--paper);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.blog-card-link {
    display: block;
    height: 100%;
}

.blog-card-media {
    height: 220px;
    min-height: 220px;
    position: relative;
}

.blog-card-media--img {
    position: relative;
    overflow: hidden;
}

.blog-card-media--img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.0), rgba(15, 23, 42, 0.28));
}

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

.blog-card-body {
    padding: 20px 20px 24px;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.blog-pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.08);
    color: var(--accent-strong);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.blog-card-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.blog-card-desc {
    color: var(--muted);
    margin-bottom: 14px;
}

.blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-strong);
    font-weight: 700;
}


.blog-shell {
    padding-top: 48px;
}

.blog-post-page .container {
    padding: 0 5%;
}

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
}

.blog-header {
    margin-bottom: 34px;
    max-width: 760px;
}

.blog-h1 {
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
    margin: 10px 0 12px;
}

.blog-lede {
    color: var(--muted);
    margin-bottom: 0;
    font-size: 1rem;
}

.blog-article-hero {
    margin-bottom: 24px;
    display: grid;
    gap: 16px;
}

.blog-article-titlewrap {
    padding: 0;
}

.blog-article-title {
    font-size: clamp(2.7rem, 3.6vw, 3.8rem);
    margin: 6px 0 10px;
}

.blog-article-cover {
    margin: 0;
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.blog-article-cover-img {
    display: block;
    height: 420px;
    width: 100%;
}

.blog-article-cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-prose {
    background: var(--paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 42px;
    max-width: 1160px;
    margin: 0 auto;
}

.blog-prose p {
    margin: 16px 0 20px;
    color: var(--ink-soft);
}

.blog-prose h2 {
    margin: 28px 0 14px;
    font-size: 1.7rem;
}

.blog-prose ul {
    padding-left: 22px;
    margin: 14px 0 22px;
}

.blog-prose li {
    margin: 9px 0;
    color: var(--ink-soft);
}

.blog-prose strong {
    color: var(--ink);
}

.blog-article-cta {
    margin-top: 32px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.12), rgba(15, 118, 110, 0.12));
    display: grid;
    gap: 16px;
}

.blog-article-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.blog-article-cta p {
    color: var(--muted);
    margin: 0;
}

.blog-article-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-related {
    margin-top: 48px;
}

.blog-more-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.blog-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
}

.blog-tag {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--teal);
    font-weight: 600;
    font-size: 0.92rem;
}

.blog-aside-actions {
    display: grid;
    gap: 10px;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.pages-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px;
}

.pages-card h2 {
    margin-bottom: 10px;
}

.pages-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.pages-list a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.04);
    transition: background var(--transition), transform var(--transition);
}

.pages-list a:hover {
    background: rgba(225, 29, 72, 0.08);
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .blog-grid,
    .blog-grid--related {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .blog-article-cover-img {
        height: 280px;
    }
}

@media (max-width: 700px) {
    .blog-grid,
    .blog-grid--related,
    .pages-grid {
        grid-template-columns: 1fr;
    }
    .blog-article-cover-img {
        height: 220px;
    }
    .blog-prose {
        padding: 20px;
    }
}

/* =====================================================
   STATS BAND
   ===================================================== */
.stats-band {
    background: var(--ink);
    padding: 48px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.stats-grid .stat {
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.1);
    background: none;
    border-radius: 0;
    text-align: center;
}
.stats-grid .stat:last-child {
    border-right: none;
}
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-weight: 600;
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }
    .stats-grid .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 24px;
    }
    .stats-grid .stat:nth-child(2n) {
        border-right: none;
    }
    .stats-grid .stat:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* =====================================================
   CARD ICON WRAP (problem cards)
   ===================================================== */
.card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(220,38,38,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--accent);
    flex-shrink: 0;
}
.card-icon-wrap svg {
    width: 22px;
    height: 22px;
}

/* =====================================================
   WHY US SECTION
   ===================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.why-card {
    background: var(--white);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.why-card:hover {
    box-shadow: 0 8px 32px rgba(15,23,42,0.1);
    transform: translateY(-3px);
}
.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(220,38,38,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
}
.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink);
}
.why-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ink-muted);
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-card {
        padding: 28px 24px;
        text-align: left;
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
    }
    .why-icon {
        margin: 0;
        flex-shrink: 0;
    }
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.testimonial-stars {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.testimonial-quote {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--ink-muted);
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(15,23,42,0.08);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--ink);
    line-height: 1.3;
}
.testimonial-role {
    font-size: 0.77rem;
    color: var(--ink-muted);
    margin-top: 2px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* =====================================================
   BLOG TEASER
   ===================================================== */
.blog-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.blog-teaser-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,0.08);
    background: var(--white);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,23,42,0.12);
}
.blog-teaser-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.blog-teaser-body {
    padding: 24px;
}
.blog-teaser-body h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 10px;
    color: var(--ink);
}
.blog-teaser-body p {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}
.section-cta-row {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .blog-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .blog-teaser-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   FOOTER SOCIAL ICONS
   ===================================================== */
.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
:root {
