/* Orixdent SaaS Theme (premium, minimal, 2026) */
:root {
    /* White page + black surfaces + gold CTAs */
    --bg: #ffffff;
    --bg-soft: #f6f7fb;
    --surface: #070a0f;
    --surface-2: #0b1220;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-border: rgba(255, 255, 255, 0.12);
    --text: rgba(11, 18, 32, 0.78);
    --text-strong: #0b1220;
    --muted: rgba(11, 18, 32, 0.56);
    --border: rgba(11, 18, 32, 0.12);
    /* Brand palette (gold) */
    --primary: #b08c57;
    --primary-strong: #8f6b37;
    --btn-gold: #b08c57;
    --btn-gold-hover: #8f6b37;
    --btn-gold-text: #120b02;
    --btn-gold-border: rgba(176, 140, 87, 0.42);
    --accent: rgba(11, 18, 32, 0.78);
    --accent-strong: #0b1220;
    --teal: rgba(11, 18, 32, 0.72); /* legacy token mapped to neutral */
    --success: #16a34a;
    --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06);
    --shadow-md: 0 14px 46px rgba(11, 18, 32, 0.12);
    --shadow-lg: 0 30px 92px rgba(11, 18, 32, 0.16);
    --radius: 14px;
    --radius-lg: 20px;
    --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-body: var(--font-sans);
    --font-display: var(--font-sans);
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 76px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1, h2, h3 {
    font-family: var(--font-display);
    color: var(--text-strong);
    line-height: 1.12;
    margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.2rem, 4.8vw, 3.55rem); font-weight: 600; letter-spacing: -0.03em; }

h2 { font-size: clamp(1.7rem, 3.1vw, 2.5rem); font-weight: 600; letter-spacing: -0.02em; }

h3 { font-size: 1.1rem; font-weight: 700; }

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

a { color: var(--text-strong); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-strong); }

/* Layout helpers */
.container { width: min(1140px, calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding: clamp(3.8rem, 8vw, 6rem) 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head p { margin: 0; color: var(--muted); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 650;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    user-select: none;
    white-space: nowrap;
}
.btn-lg { padding: 1rem 1.6rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.875rem; }
.btn-block { width: 100%; }
.btn-primary,
.btn-demo {
    background: var(--btn-gold);
    border-color: var(--btn-gold-border);
    color: var(--btn-gold-text);
    box-shadow: 0 10px 30px rgba(176, 140, 87, 0.22);
}
.btn-primary:hover,
.btn-demo:hover {
    transform: translateY(-1px);
    background: var(--btn-gold-hover);
    border-color: rgba(176, 140, 87, 0.72);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(176, 140, 87, 0.38);
}
.btn-primary:active,
.btn-demo:active {
    transform: translateY(0);
    background: var(--btn-gold-hover);
    border-color: rgba(176, 140, 87, 0.72);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(176, 140, 87, 0.24);
}
.btn-primary:focus-visible,
.btn-demo:focus-visible {
    outline: 2px solid var(--btn-gold);
    outline-offset: 3px;
}
.btn-secondary {
    background: #ffffff;
    border-color: var(--border);
    color: var(--text-strong);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    transform: translateY(-1px);
    background: #ffffff;
    border-color: rgba(176, 140, 87, 0.45);
    color: var(--text-strong);
    box-shadow: var(--shadow-md);
}
.btn-ghost {
    background: rgba(176, 140, 87, 0.12);
    border-color: rgba(176, 140, 87, 0.35);
    color: var(--btn-gold-text);
    box-shadow: none;
}
.btn-ghost:hover {
    transform: translateY(-1px);
    background: var(--btn-gold);
    border-color: var(--btn-gold-border);
    color: var(--btn-gold-text);
}
.hero-carousel .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.38);
    color: #ffffff;
    box-shadow: none;
}
.hero-carousel .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
}
.hero-carousel .btn-primary,
.hero-carousel .btn-demo {
    background: var(--btn-gold);
    border-color: var(--btn-gold-border);
    color: var(--btn-gold-text);
}
.hero-carousel .btn-primary:hover,
.hero-carousel .btn-demo:hover,
.hero-carousel .btn-primary:active,
.hero-carousel .btn-demo:active {
    color: #ffffff;
}
.page-home .site-header:not(.is-solid) .btn-primary,
.page-home .site-header:not(.is-solid) .btn-demo {
    background: var(--btn-gold);
    border-color: var(--btn-gold-border);
    color: var(--btn-gold-text);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}
.page-home .site-header:not(.is-solid) .btn-primary:hover,
.page-home .site-header:not(.is-solid) .btn-demo:hover,
.page-home .site-header:not(.is-solid) .btn-primary:active,
.page-home .site-header:not(.is-solid) .btn-demo:active {
    color: #ffffff;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand-logo {
    height: 56px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.brand-logo--default {
    display: none;
}

.brand-logo--solid {
    display: block;
}

.page-home .site-header:not(.is-solid) .brand-logo--default {
    display: block;
}

.page-home .site-header:not(.is-solid) .brand-logo--solid {
    display: none;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.site-nav { display: flex; align-items: center; gap: 1rem; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-link { padding: 0.55rem 0.9rem; border-radius: 10px; color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.nav-link:hover, .nav-link.is-active { background: rgba(176, 140, 87, 0.14); color: var(--text-strong); }
.nav-item--dropdown { position: relative; }
.nav-link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.nav-chevron {
    flex-shrink: 0;
    opacity: 0.72;
    transition: transform var(--transition);
}
.nav-item--dropdown:hover .nav-chevron,
.nav-item--dropdown:focus-within .nav-chevron,
.nav-item--dropdown.is-open .nav-chevron {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    z-index: 1100;
    min-width: 230px;
    margin: 0;
    padding: 0.4rem;
    list-style: none;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, 0.08);
    box-shadow: 0 16px 44px rgba(11, 18, 32, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-item--dropdown:hover .nav-dropdown-menu,
.nav-item--dropdown:focus-within .nav-dropdown-menu,
.nav-item--dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.nav-dropdown-link {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--text-strong);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
    background: rgba(176, 140, 87, 0.12);
    color: var(--text-strong);
    outline: none;
}
.nav-dropdown-link--overview {
    margin-bottom: 0.2rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
    font-weight: 700;
    color: var(--primary-strong);
}
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 14px; border: 1px solid rgba(11,18,32,0.10); background: rgba(11,18,32,0.03); cursor: pointer; }
.nav-toggle-bar { display: block; width: 18px; height: 2px; background: rgba(11,18,32,0.75); border-radius: 2px; margin: 4px auto; }

/* Alerts */
.alert { padding: 0.9rem 0; }
.alert-success { background: rgba(22, 163, 74, 0.09); border-bottom: 1px solid rgba(22, 163, 74, 0.22); }
.alert-error { background: rgba(239, 68, 68, 0.08); border-bottom: 1px solid rgba(239, 68, 68, 0.20); }
.alert p { margin: 0; font-weight: 600; }
.alert ul { margin: 0; padding-left: 1.2rem; }

/* Homepage hero carousel */
.hero-carousel {
    position: relative;
    height: 100dvh;
    height: 100svh;
    min-height: 100dvh;
    margin-top: calc(-1 * var(--header-h));
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
    isolation: isolate;
}

.hero-carousel-stage {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.hero-slide.is-leaving {
    opacity: 0;
    visibility: visible;
    z-index: 1;
}

.hero-slide-banner {
    position: absolute;
    inset: 0;
    overflow: hidden;
    isolation: isolate;
}

.hero-slide-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    transform: scale(1.08);
    transition: transform 7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-slide--cloud .hero-slide-media img {
    object-position: 72% center;
}

.hero-slide--scheduling .hero-slide-media img {
    object-position: 78% center;
}

.hero-slide--security .hero-slide-media img {
    object-position: 70% center;
}

.hero-slide.is-active .hero-slide-media img {
    transform: scale(1);
}

.hero-slide-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 10, 15, 0.94) 0%, rgba(7, 10, 15, 0.82) 28%, rgba(7, 10, 15, 0.45) 52%, rgba(7, 10, 15, 0.2) 72%, rgba(7, 10, 15, 0.35) 100%),
        linear-gradient(180deg, rgba(7, 10, 15, 0.72) 0%, transparent 26%, transparent 58%, rgba(7, 10, 15, 0.9) 100%);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active .hero-slide-overlay {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.12s;
}

.hero-slide.is-leaving .hero-slide-overlay,
.hero-slide:not(.is-active) .hero-slide-overlay {
    opacity: 0;
    visibility: hidden;
    transition-delay: 0s;
    transition-duration: 0.25s;
}

.hero-slide-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    position: relative;
    padding: calc(var(--header-h) + 1rem) 0 clamp(9rem, 15vw, 11rem);
}

.hero-slide-copy {
    max-width: 620px;
    padding: 0;
    transform: translateY(18px);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

.hero-slide.is-active .hero-slide-copy {
    transform: translateY(0);
}

.hero-slide.is-leaving .hero-slide-copy,
.hero-slide:not(.is-active) .hero-slide-copy {
    transform: translateY(-10px);
    transition-duration: 0.25s;
    transition-delay: 0s;
}

.hero-slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.1rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(176, 140, 87, 0.42);
    background: rgba(176, 140, 87, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    width: fit-content;
}

.hero-slide-copy h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 3.6vw, 2.65rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #fff;
    max-width: 20ch;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-slide-lead {
    margin: 0;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48ch;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.hero-slide-actions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(11rem, 19vw, 14rem);
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0;
}

.hero-slide-actions .btn {
    min-width: 160px;
}

.hero-slide-foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(4.5rem, 8vw, 5.5rem);
    margin-top: 0;
    padding-top: 0;
}

.hero-carousel-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 520px;
}

.hero-metric {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(7, 10, 15, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.hero-metric strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.15rem;
}

.hero-metric span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
}

.hero-carousel-controls {
    position: absolute;
    right: clamp(1rem, 4vw, 2rem);
    bottom: clamp(1.5rem, 3.5vw, 2.5rem);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-carousel-arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(7, 10, 15, 0.45);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hero-carousel-arrow:hover {
    background: rgba(176, 140, 87, 0.28);
    border-color: rgba(176, 140, 87, 0.55);
    transform: translateY(-1px);
}

.hero-carousel-arrow:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.hero-carousel-dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-carousel-dots button {
    width: 28px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), width var(--transition);
}

.hero-carousel-dots button.is-active {
    width: 44px;
    background: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide-media img,
    .hero-slide-overlay,
    .hero-slide-copy {
        transition: none;
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-slide-inner {
        padding-top: calc(var(--header-h) + 0.75rem);
        padding-bottom: clamp(14rem, 38vw, 17rem);
    }

    .hero-slide-actions {
        bottom: clamp(15.5rem, 42vw, 18.5rem);
    }

    .hero-slide-foot {
        bottom: clamp(4rem, 10vw, 5rem);
    }

    .hero-slide-copy {
        max-width: none;
        padding: 0;
    }

    .hero-slide-copy h1 {
        max-width: none;
    }

    .hero-carousel-metrics {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .hero-slide-actions .btn {
        flex: 1 1 auto;
        min-width: 0;
    }

    .hero-carousel-controls {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

/* Homepage: full-screen hero + transparent header over image */
.page-home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}
.page-home .site-header.is-solid {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom-color: rgba(11, 18, 32, 0.08);
}
.page-home .site-header .nav-link { color: rgba(255, 255, 255, 0.88); }
.page-home .site-header .nav-link:hover,
.page-home .site-header .nav-link.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.page-home .site-header.is-solid .nav-link { color: var(--muted); }
.page-home .site-header.is-solid .nav-link:hover,
.page-home .site-header.is-solid .nav-link.is-active {
    background: rgba(176, 140, 87, 0.14);
    color: var(--text-strong);
}
.page-home .site-header:not(.is-solid) .nav-dropdown-menu {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}
.page-home .site-header.is-solid .nav-dropdown-menu {
    border-color: rgba(11, 18, 32, 0.08);
    box-shadow: 0 16px 44px rgba(11, 18, 32, 0.12);
}
.page-home .nav-toggle {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}
.page-home .nav-toggle-bar { background: rgba(255, 255, 255, 0.92); }
.page-home .site-header.is-solid .nav-toggle {
    border-color: rgba(11, 18, 32, 0.10);
    background: rgba(11, 18, 32, 0.03);
}
.page-home .site-header.is-solid .nav-toggle-bar { background: rgba(11, 18, 32, 0.75); }

.page-home .site-header:not(.is-solid) .brand {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
.page-home .site-header:not(.is-solid) .brand-logo {
    height: 58px;
    width: auto;
    max-width: 210px;
    filter: none;
}
.pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.75rem; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.72); font-weight: 650; font-size: 0.82rem; }
.pill-dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), rgba(127, 138, 151, 0.9)); }
.glass-card { padding: 0.9rem; border-radius: var(--radius-lg); background: rgba(7,10,15,0.45); border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 40px 120px rgba(0,0,0,0.45); }
.glass-card img { border-radius: calc(var(--radius-lg) - 8px); }

/* Problem vs Solution */
.problem-solution .section-head h2 {
    color: var(--text-strong);
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}
.compare-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.compare-card:hover {
    box-shadow: var(--shadow-md);
}
.problem-solution.is-in .compare-card:hover {
    transform: translateY(-2px);
}
.compare-card-problem {
    border-color: rgba(11, 18, 32, 0.14);
}
.compare-card-solution {
    border-color: rgba(176, 140, 87, 0.42);
    box-shadow: 0 8px 32px rgba(176, 140, 87, 0.12);
}
.compare-card-solution:hover {
    border-color: rgba(176, 140, 87, 0.55);
}
.compare-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-soft);
}
.compare-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.compare-card-problem .compare-card-media::after {
    background: linear-gradient(180deg, transparent 40%, rgba(11, 18, 32, 0.18) 100%);
}
.compare-card-solution .compare-card-media::after {
    background: linear-gradient(180deg, transparent 50%, rgba(176, 140, 87, 0.12) 100%);
}
.compare-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.compare-card-body {
    flex: 1;
    padding: 1.35rem 1.5rem 1.5rem;
    color: var(--text);
}
.compare-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}
.compare-tag-before {
    background: rgba(11, 18, 32, 0.06);
    color: rgba(11, 18, 32, 0.72);
    border: 1px solid rgba(11, 18, 32, 0.12);
}
.compare-tag-after {
    background: rgba(176, 140, 87, 0.14);
    color: var(--primary-strong);
    border: 1px solid rgba(176, 140, 87, 0.32);
}
.compare-card-body h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.3;
}
.compare-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.compare-list li {
    position: relative;
    padding-left: 1.35rem;
    margin: 0.55rem 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}
.compare-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(11, 18, 32, 0.22);
}
.compare-card-solution .compare-list li::before {
    background: var(--primary);
}
.compare-card[data-compare] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow var(--transition), border-color var(--transition);
}
.compare-card-problem[data-compare] {
    transform: translateX(-32px) translateY(12px);
}
.compare-card-solution[data-compare] {
    transform: translateX(32px) translateY(12px);
}
.problem-solution.is-in .compare-card[data-compare] {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
.problem-solution.is-in .compare-card-problem[data-compare] {
    transition-delay: 80ms;
}
.problem-solution.is-in .compare-card-solution[data-compare] {
    transition-delay: 180ms;
}
@media (prefers-reduced-motion: reduce) {
    .compare-card[data-compare],
    .compare-card-problem[data-compare],
    .compare-card-solution[data-compare] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .compare-card:hover {
        transform: none;
    }
}
@media (max-width: 760px) {
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .compare-card-problem[data-compare],
    .compare-card-solution[data-compare] {
        transform: translateY(24px);
    }
}

/* Cards / grids */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.card { background: var(--surface); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); color: rgba(255,255,255,0.74); }
.card h1, .card h2, .card h3 { color: rgba(255,255,255,0.94); }
.card .list { color: rgba(255,255,255,0.62); }
.card-accent { background: linear-gradient(135deg, rgba(26,166,183,0.10), rgba(176,140,87,0.08)); border-color: rgba(26,166,183,0.22); }
.card-accent { background: linear-gradient(135deg, rgba(176, 140, 87, 0.14), rgba(127, 138, 151, 0.10)); border-color: rgba(176, 140, 87, 0.28); }
.list { margin: 0.9rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.list li { margin: 0.55rem 0; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.5rem 1.6rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    color: var(--text);
}
.feature-card h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.35;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(176, 140, 87, 0.38);
}
.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    color: var(--primary-strong);
    background: linear-gradient(135deg, rgba(176, 140, 87, 0.18), rgba(176, 140, 87, 0.06));
    border: 1px solid rgba(176, 140, 87, 0.28);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-icon img,
.feature-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(176, 140, 87, 0.28), rgba(176, 140, 87, 0.12));
    border-color: rgba(176, 140, 87, 0.45);
    transform: scale(1.04);
}
/* Legacy letter badges (about page etc.) */
.icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--primary-strong);
    background: linear-gradient(135deg, rgba(176, 140, 87, 0.18), rgba(176, 140, 87, 0.06));
    border: 1px solid rgba(176, 140, 87, 0.28);
    margin-bottom: 1rem;
}

/* Key features — dark 2-column showcase */
.section.key-features {
    background: #070a0f;
    color: rgba(255, 255, 255, 0.84);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    position: relative;
    overflow: hidden;
}
.key-features {
    background: #070a0f;
    color: rgba(255, 255, 255, 0.84);
    position: relative;
    overflow: hidden;
}
.key-features::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 12% 18%, rgba(176, 140, 87, 0.14), transparent 60%),
        radial-gradient(ellipse 45% 40% at 88% 82%, rgba(176, 140, 87, 0.08), transparent 55%);
}
.key-features .container {
    position: relative;
    z-index: 1;
}
.key-features-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}
.key-features-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.85rem;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(176, 140, 87, 0.12);
    border: 1px solid rgba(176, 140, 87, 0.32);
}
.key-features-copy h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
}
.key-features-lead {
    margin: 0 0 1.35rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 52ch;
}
.key-features-highlights {
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}
.key-features-highlights li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}
.key-features-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(176, 140, 87, 0.18);
}
.feature-nav {
    display: grid;
    gap: 0.45rem;
}
.feature-nav-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid transparent;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-nav-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(176, 140, 87, 0.28);
}
.feature-nav-item.is-active {
    background: rgba(176, 140, 87, 0.12);
    border-color: rgba(176, 140, 87, 0.35);
    border-left-color: var(--primary);
}
.feature-nav-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(176, 140, 87, 0.14);
    border: 1px solid rgba(176, 140, 87, 0.28);
}
.feature-nav-icon img {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) saturate(100%) invert(78%) sepia(18%) saturate(746%) hue-rotate(358deg) brightness(95%) contrast(88%);
}
.feature-nav-text {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}
.feature-nav-text strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}
.feature-nav-text span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
}
.feature-nav-item.is-active .feature-nav-text span {
    color: #ffffff;
}
.key-features-showcase {
    min-width: 0;
}
.feature-slider-dark {
    max-width: none;
    margin: 0;
}
.feature-slider-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.key-features .feature-slider-viewport {
    border: 1px solid rgba(176, 140, 87, 0.28);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.02);
    min-height: 500px;
}
.feature-slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.feature-slider-track::-webkit-scrollbar { display: none; }
.feature-slider-track:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: var(--radius-lg);
}
.feature-slide {
    scroll-snap-align: start;
    min-width: 0;
}
.key-features .feature-slide-dark {
    margin: 0;
    padding: 0;
    text-align: left;
    min-height: 0;
    display: block;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #ffffff;
    overflow: hidden;
}
.key-features .feature-card.feature-slide-dark {
    color: #ffffff;
}
.key-features .feature-card.feature-slide-dark:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}
.key-features .feature-card.feature-slide-dark h3,
.key-features .feature-slide-dark h3 {
    color: #ffffff;
}
.key-features .feature-card.feature-slide-dark p,
.key-features .feature-lead {
    color: rgba(255, 255, 255, 0.92);
}
.key-features .feature-points li {
    color: rgba(255, 255, 255, 0.9);
}
.feature-slide-inner {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 500px;
    height: 100%;
    padding: 0;
    gap: 0;
}
.feature-slide-copy {
    padding: 1.75rem 1.85rem 1.15rem;
}
.feature-slide-media {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-top: 1px solid rgba(176, 140, 87, 0.24);
    background: #0a0e14;
}
.feature-slide-media::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 52px;
    background: linear-gradient(180deg, rgba(7, 10, 15, 0.65) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.feature-slide-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
}
.feature-slide-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.feature-icon-dark {
    width: 56px;
    height: 56px;
    margin: 0;
    background: rgba(176, 140, 87, 0.16);
    border-color: rgba(176, 140, 87, 0.38);
}
.feature-icon-dark img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(78%) sepia(18%) saturate(746%) hue-rotate(358deg) brightness(95%) contrast(88%);
}
.feature-tag {
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(176, 140, 87, 0.12);
    border: 1px solid rgba(176, 140, 87, 0.28);
}
.key-features .feature-slide-dark h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}
.feature-lead {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: none;
}
.feature-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
    max-width: none;
}
.feature-points li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.94rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}
.feature-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.feature-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.35rem;
}
.feature-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(176, 140, 87, 0.35);
    background: #ffffff;
    color: var(--primary-strong);
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-slider-btn-dark {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(176, 140, 87, 0.38);
    color: var(--primary);
}
.feature-slider-btn:hover,
.feature-slider-btn-dark:hover {
    background: rgba(176, 140, 87, 0.16);
    border-color: rgba(176, 140, 87, 0.55);
}
.feature-slider-btn:active {
    transform: scale(0.96);
}
.feature-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}
.feature-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(11, 18, 32, 0.16);
    cursor: pointer;
    transition: width var(--transition), background var(--transition);
}
.feature-dots-dark .feature-dot {
    background: rgba(255, 255, 255, 0.22);
}
.feature-dot.is-active {
    width: 28px;
    background: var(--primary);
}
.feature-dot:hover {
    background: rgba(176, 140, 87, 0.55);
}
.feature-dot.is-active:hover {
    background: var(--primary-strong);
}
@media (max-width: 1024px) {
    .key-features-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .key-features-copy h2 {
        max-width: 22ch;
    }
    .feature-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .key-features .feature-slider-viewport,
    .feature-slide-inner {
        min-height: 440px;
    }
    .feature-slide-copy {
        padding: 1.5rem 1.25rem 1rem;
    }
    .feature-slide-media {
        min-height: 190px;
    }
    .feature-slide-media img {
        min-height: 190px;
    }
    .key-features .feature-slide-dark h3 {
        font-size: 1.3rem;
    }
    .feature-nav {
        grid-template-columns: 1fr;
    }
    .feature-slide-top {
        flex-wrap: wrap;
    }
}
@media (prefers-reduced-motion: reduce) {
    .feature-slider-track { scroll-behavior: auto; }
    .feature-card:hover .feature-icon { transform: none; }
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.3rem; box-shadow: var(--shadow-sm); color: var(--text); }
.step h3 { color: var(--text-strong); }
.step span { width: 32px; height: 32px; border-radius: 999px; display: grid; place-items: center; background: rgba(176, 140, 87, 0.14); border: 1px solid rgba(176, 140, 87, 0.28); color: var(--primary-strong); font-weight: 800; }
.step p { margin: 0.6rem 0 0; color: var(--muted); }

/* How it works — full-screen background slider */
.how-it-works-full {
    padding: 0;
    position: relative;
    overflow: hidden;
}
.how-it-works-full .step-slider-hero {
    position: relative;
    max-width: none;
    margin: 0;
}
.how-it-works-head {
    position: absolute;
    top: clamp(1.75rem, 4vw, 2.75rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: min(92%, 720px);
    text-align: center;
    pointer-events: none;
}
.how-it-works-head h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.how-it-works-head p {
    margin: 0;
    font-size: clamp(0.98rem, 1.8vw, 1.08rem);
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}
.how-it-works-full .step-slider-viewport {
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: min(92vh, 920px);
    min-height: min(92dvh, 920px);
}
.how-it-works-full .step-slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-height: min(92vh, 920px);
    min-height: min(92dvh, 920px);
}
.how-it-works-full .step-slider-track::-webkit-scrollbar { display: none; }
.how-it-works-full .step-slider-track:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -4px;
}
.how-it-works-full .step-slide {
    scroll-snap-align: start;
    position: relative;
    min-width: 0;
    min-height: min(92vh, 920px);
    min-height: min(92dvh, 920px);
    display: grid;
    place-items: center;
    padding: clamp(6.5rem, 14vh, 9rem) 1.5rem clamp(5.5rem, 12vh, 7rem);
}
.step-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.step-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.step-slide-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 10, 15, 0.62) 0%, rgba(7, 10, 15, 0.28) 38%, rgba(7, 10, 15, 0.55) 100%),
        linear-gradient(90deg, rgba(7, 10, 15, 0.35) 0%, transparent 55%);
    pointer-events: none;
}
.step-slide-content {
    position: relative;
    z-index: 2;
    width: min(92%, 640px);
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
    text-align: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.step-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    background: rgba(176, 140, 87, 0.22);
    color: #f5e6d0;
    border: 1px solid rgba(176, 140, 87, 0.45);
}
.step-slide-content h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}
.step-slide-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(0.98rem, 1.8vw, 1.05rem);
    line-height: 1.65;
    max-width: 44ch;
    margin-inline: auto;
}
.how-it-works-full .step-slider-controls {
    position: absolute;
    left: 50%;
    bottom: clamp(1.25rem, 3vw, 2rem);
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(7, 10, 15, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.step-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}
.step-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: width var(--transition), background var(--transition);
}
.step-dot.is-active {
    width: 28px;
}
.how-it-works-full .step-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(176, 140, 87, 0.45);
    background: rgba(255, 255, 255, 0.1);
    color: #f5e6d0;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.how-it-works-full .step-slider-btn:hover {
    background: rgba(176, 140, 87, 0.28);
    border-color: rgba(176, 140, 87, 0.65);
}
.how-it-works-full .step-slider-btn:active {
    transform: scale(0.96);
}
.how-it-works-full .step-dot {
    background: rgba(255, 255, 255, 0.35);
}
.how-it-works-full .step-dot.is-active {
    background: var(--primary);
}
.how-it-works-full .step-dot:hover {
    background: rgba(176, 140, 87, 0.75);
}
@media (max-width: 760px) {
    .how-it-works-full .step-slide {
        padding: 5.5rem 1rem 5rem;
    }
    .how-it-works-head {
        width: min(94%, 100%);
        padding: 0 0.5rem;
    }
    .step-slide-content {
        padding: 1.35rem 1.15rem;
    }
    .how-it-works-full .step-slider-controls {
        width: min(94%, 100%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .how-it-works-full .step-slider-track { scroll-behavior: auto; }
}

/* Benefits — interactive boxes + visual slider */
.benefits-section {
    background: #ffffff;
}
.benefits-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-strong);
    background: rgba(176, 140, 87, 0.1);
    border: 1px solid rgba(176, 140, 87, 0.28);
}
.benefits-section .section-head h2 {
    color: var(--text-strong);
}
.benefits-showcase {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    max-width: 1100px;
    margin: 0 auto;
}
.benefits-boxes-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
}
.benefit-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    width: 100%;
    margin: 0;
    padding: clamp(1.25rem, 2.5vw, 1.6rem) clamp(1.25rem, 2.5vw, 1.75rem);
    text-align: left;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 18, 32, 0.1);
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(11, 18, 32, 0.04);
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease,
        background 0.28s ease;
}
.benefit-box:hover {
    border-color: rgba(176, 140, 87, 0.38);
    box-shadow: 0 14px 36px rgba(11, 18, 32, 0.08);
    transform: translateY(-2px);
}
.benefit-box.is-active {
    border-color: rgba(176, 140, 87, 0.55);
    background: linear-gradient(145deg, rgba(176, 140, 87, 0.1) 0%, #ffffff 72%);
    box-shadow: 0 18px 48px rgba(176, 140, 87, 0.16);
    transform: translateY(-3px);
}
.benefit-box:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}
.benefit-box-tag {
    display: inline-flex;
    padding: 0.26rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-strong);
    background: rgba(176, 140, 87, 0.12);
    border: 1px solid rgba(176, 140, 87, 0.28);
}
.benefit-box.is-active .benefit-box-tag {
    background: rgba(176, 140, 87, 0.2);
    border-color: rgba(176, 140, 87, 0.42);
}
.benefit-box-title {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.25;
}
.benefit-box-text {
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 42ch;
}
.benefits-visual {
    position: relative;
}
.benefits-visual-stage {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) + 4px);
    border: 1px solid rgba(176, 140, 87, 0.28);
    box-shadow: 0 28px 70px rgba(11, 18, 32, 0.12);
    background: #0a0e14;
    min-height: clamp(300px, 42vw, 520px);
    aspect-ratio: 16 / 8;
}
.benefits-visual-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition:
        opacity 0.55s ease,
        transform 0.65s ease,
        visibility 0s linear 0.55s;
}
.benefits-visual-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition:
        opacity 0.55s ease,
        transform 0.65s ease,
        visibility 0s linear 0s;
    z-index: 1;
}
.benefits-visual-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.benefits-visual-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 10, 15, 0.22) 100%);
}
.benefits-visual-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.benefits-visual-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(176, 140, 87, 0.35);
    background: #ffffff;
    color: var(--primary-strong);
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.benefits-visual-btn:hover {
    background: rgba(176, 140, 87, 0.1);
    border-color: rgba(176, 140, 87, 0.55);
}
.benefits-visual-btn:active {
    transform: scale(0.96);
}
.benefits-visual-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}
.benefits-visual-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(11, 18, 32, 0.14);
    cursor: pointer;
    transition: width var(--transition), background var(--transition);
}
.benefits-visual-dot.is-active {
    width: 28px;
    background: var(--primary);
}
.benefits-visual-dot:hover {
    background: rgba(176, 140, 87, 0.5);
}
.benefits-visual-dot.is-active:hover {
    background: var(--primary-strong);
}
@media (max-width: 760px) {
    .benefits-boxes-row {
        grid-template-columns: 1fr;
    }
    .benefits-visual-stage {
        min-height: 240px;
        aspect-ratio: 16 / 11;
    }
    .benefit-box.is-active,
    .benefit-box:hover {
        transform: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .benefit-box,
    .benefits-visual-slide {
        transition: none;
    }
    .benefits-visual-slide {
        transform: none;
    }
}

/* Carousel */
.carousel { background: var(--surface); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); padding: 1.2rem; box-shadow: var(--shadow-sm); }
.quote p { color: rgba(255,255,255,0.92); }
.quote-meta, .quote-meta strong { color: rgba(255,255,255,0.72); }
.carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; overflow: hidden; scroll-behavior: smooth; }
.quote { padding: 1.2rem; }
.quote p { margin: 0; font-size: 1.03rem; color: var(--text-strong); }
.quote-meta { display: flex; gap: 0.75rem; align-items: center; margin-top: 0.85rem; color: var(--muted); font-weight: 650; }
.quote-meta strong { color: rgba(255,255,255,0.92); }
.carousel-actions { display: flex; gap: 0.6rem; justify-content: flex-end; padding: 0.4rem 0.2rem 0; }

/* Pricing — gold & white, 3-column row */
.pricing-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
    padding: clamp(3.5rem, 7vw, 5rem) 0;
}
.pricing-section--page {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* Pricing page */
.pricing-page {
    padding: 0 0 clamp(3rem, 6vw, 4.5rem);
    background-color: #eceae5;
    background-image:
        radial-gradient(ellipse 80% 60% at 85% 100%, rgba(255, 255, 255, 0.75) 0%, transparent 55%),
        linear-gradient(180deg, #ebe8e2 0%, #e4e1db 100%);
}

.pricing-banner {
    position: relative;
    min-height: clamp(220px, 32vw, 340px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: 0;
}

.pricing-banner-media {
    position: absolute;
    inset: 0;
}

.pricing-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pricing-banner-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 10, 15, 0.18) 0%, rgba(7, 10, 15, 0.42) 100%),
        linear-gradient(90deg, rgba(7, 10, 15, 0.35) 0%, transparent 55%);
}

.pricing-banner-inner {
    position: relative;
    z-index: 1;
    padding: calc(var(--header-h) + 1.5rem) 0 clamp(5rem, 10vw, 6.5rem);
    max-width: 640px;
    color: #ffffff;
}

.pricing-banner-eyebrow {
    display: inline-flex;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(176, 140, 87, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.pricing-banner-title {
    margin: 0 0 0.65rem;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(2.25rem, 5vw, 3.35rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.pricing-banner-lead {
    margin: 0;
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48ch;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.22);
}

.pricing-stack {
    position: relative;
    z-index: 2;
    padding-top: clamp(2rem, 4vw, 3rem);
}

.pricing-page .pricing-billing {
    margin-top: 0;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.25rem);
}

.pricing-page .pricing-card {
    border-radius: 20px;
    box-shadow: 0 16px 44px rgba(11, 18, 32, 0.08);
}

.pricing-page .pricing-card--featured {
    box-shadow: 0 22px 56px rgba(176, 140, 87, 0.18);
}

.pricing-page .pricing-compare {
    margin-top: clamp(2rem, 4vw, 2.75rem);
    padding: clamp(1.75rem, 3vw, 2.25rem);
    border-radius: 20px;
    box-shadow: 0 16px 44px rgba(11, 18, 32, 0.08);
}

.pricing-page .pricing-footnote {
    margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}
.pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-strong);
    background: rgba(176, 140, 87, 0.1);
    border: 1px solid rgba(176, 140, 87, 0.28);
}
.pricing-head h1,
.pricing-head h2 {
    color: var(--text-strong);
}
.pricing-head p {
    color: var(--muted);
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}
.pricing-billing {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 0.3rem;
    margin: 0 auto 1.75rem;
    padding: 0.3rem;
    border-radius: 999px;
    border: 1px solid rgba(176, 140, 87, 0.28);
    background: rgba(176, 140, 87, 0.08);
}
.pricing-billing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.55rem 1.25rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.pricing-billing-btn:hover:not(.is-active) {
    color: var(--text-strong);
}
.pricing-billing-btn.is-active {
    background: var(--btn-gold);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(176, 140, 87, 0.28);
}
.pricing-billing-btn.is-active .pricing-save {
    color: rgba(255, 255, 255, 0.92);
}
.pricing-save {
    color: var(--primary-strong);
    font-weight: 700;
    margin-left: 0.15rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, 0.08);
    box-shadow: 0 8px 28px rgba(11, 18, 32, 0.04);
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}
.pricing-card:hover {
    border-color: rgba(176, 140, 87, 0.32);
    box-shadow: 0 14px 40px rgba(11, 18, 32, 0.07);
    transform: translateY(-2px);
}
.pricing-card--featured {
    border-color: rgba(176, 140, 87, 0.45);
    box-shadow: 0 18px 50px rgba(176, 140, 87, 0.14);
    z-index: 1;
}
.pricing-card--featured:hover {
    border-color: rgba(176, 140, 87, 0.6);
    box-shadow: 0 22px 56px rgba(176, 140, 87, 0.18);
}
.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-strong);
    background: rgba(176, 140, 87, 0.12);
    border: 1px solid rgba(176, 140, 87, 0.32);
}
.pricing-card-head {
    margin-bottom: 1.1rem;
    padding-right: 4.5rem;
}
.pricing-card--featured .pricing-card-head {
    padding-right: 5.5rem;
}
.pricing-tier {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-strong);
}
.pricing-name {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.45rem);
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.2;
}
.pricing-tagline {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
}
.pricing-amount {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.2rem 0.35rem;
    margin-bottom: 1.15rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}
.pricing-currency {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-strong);
}
.pricing-value {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.25rem);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--text-strong);
    line-height: 1;
}
.pricing-period {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
}
.pricing-features {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    flex: 1;
    display: grid;
    gap: 0.55rem;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(11, 18, 32, 0.72);
}
.pricing-check {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--primary);
}
.pricing-btn {
    margin-top: auto;
    text-align: center;
    justify-content: center;
}
.pricing-btn--gold {
    background: var(--btn-gold);
    border: 1px solid var(--btn-gold-border);
    color: var(--btn-gold-text);
    box-shadow: 0 8px 24px rgba(176, 140, 87, 0.22);
}
.pricing-btn--gold:hover {
    background: var(--btn-gold-hover);
    border-color: rgba(176, 140, 87, 0.72);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(176, 140, 87, 0.38);
}
.pricing-btn--gold:active {
    background: var(--btn-gold-hover);
    border-color: rgba(176, 140, 87, 0.72);
    color: #ffffff;
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(176, 140, 87, 0.24);
}
.pricing-btn--outline {
    background: #ffffff;
    border: 1px solid rgba(176, 140, 87, 0.38);
    color: var(--text-strong);
    box-shadow: none;
}
.pricing-btn--outline:hover {
    background: rgba(176, 140, 87, 0.08);
    border-color: rgba(176, 140, 87, 0.55);
    color: var(--primary-strong);
    transform: translateY(-1px);
}
.pricing-footnote {
    margin: 1.35rem auto 0;
    max-width: 60ch;
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
}
.pricing-compare {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, 0.08);
    box-shadow: 0 8px 28px rgba(11, 18, 32, 0.04);
}
.pricing-compare-head {
    text-align: center;
    margin-bottom: 1.25rem;
}
.pricing-compare-head h2 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    color: var(--text-strong);
}
.pricing-compare-head p {
    margin: 0;
    color: var(--muted);
}
.pricing-compare-wrap {
    overflow-x: auto;
}
.pricing-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}
.pricing-compare-table th,
.pricing-compare-table td {
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
    text-align: center;
    font-size: 0.92rem;
}
.pricing-compare-table thead th {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}
.pricing-compare-table tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--text-strong);
}
.pricing-compare-table tbody th[scope="row"] {
    font-weight: 600;
}
.pricing-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    font-weight: 800;
    color: var(--primary-strong);
    background: rgba(176, 140, 87, 0.12);
}
.pricing-no {
    color: rgba(11, 18, 32, 0.28);
    font-weight: 600;
}

/* CTA premium band */
.cta-premium {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: #ffffff;
}
.cta-premium-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(176, 140, 87, 0.1) 0%, #ffffff 55%);
    border: 1px solid rgba(176, 140, 87, 0.22);
    box-shadow: 0 12px 40px rgba(11, 18, 32, 0.05);
}
.cta-premium-eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-strong);
}
.cta-premium-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--text-strong);
}
.cta-premium-copy p {
    margin: 0.4rem 0 0;
    color: var(--muted);
    max-width: 48ch;
}
.cta-premium-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.btn-cta-outline {
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, 0.14);
    color: var(--text-strong);
    box-shadow: var(--shadow-sm);
}
.btn-cta-outline:hover {
    border-color: rgba(176, 140, 87, 0.45);
    background: #ffffff;
    color: var(--text-strong);
    transform: translateY(-1px);
}

/* Legacy pricing aliases (pricing page remnants) */
.pricing-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.price-card { background: #ffffff; border: 1px solid rgba(11, 18, 32, 0.08); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); color: var(--text); }
.price-card h3 { color: var(--text-strong); }
.price { color: var(--muted); margin: 0.6rem 0 1rem; }
.price strong { font-size: 1.7rem; color: var(--text-strong); }
.price-card-featured { border-color: rgba(176, 140, 87, 0.45); box-shadow: var(--shadow-md); position: relative; }
.tag { position: absolute; top: 14px; right: 14px; background: rgba(176, 140, 87, 0.12); border: 1px solid rgba(176, 140, 87, 0.32); color: var(--primary-strong); padding: 0.35rem 0.6rem; border-radius: 999px; font-weight: 700; font-size: 0.78rem; }

/* CTA banner (legacy) */
.cta-banner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: 1.6rem; border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(26,166,183,0.12), rgba(176,140,87,0.12)); border: 1px solid rgba(11,18,32,0.10); box-shadow: var(--shadow-sm); }
.cta-banner { background: linear-gradient(135deg, rgba(176, 140, 87, 0.18), rgba(255, 255, 255, 0.06)); border-color: rgba(176, 140, 87, 0.22); }
.cta-banner p { margin: 0.35rem 0 0; color: var(--muted); }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Footer — compact black & gold */
.site-footer {
    background: #070a0f;
    color: rgba(255, 255, 255, 0.68);
    padding: 1.75rem 0 0;
    border-top: 3px solid var(--primary);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    align-items: start;
    padding-bottom: 1.35rem;
}
.footer-brand-link {
    display: block;
    line-height: 0;
    width: 100%;
}
.footer-logo {
    width: 100%;
    height: 75px;
    display: block;
    object-fit: contain;
    object-position: left center;
    margin-top: 20px;
}
.footer-tagline {
    margin: 0.5rem 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.52);
    max-width: 22ch;
}
.footer-heading {
    margin: 0 0 0.55rem;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}
.footer-links {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-contact .footer-links a {
    font-size: 0.84rem;
}
.footer-bottom {
    border-top: 1px solid rgba(176, 140, 87, 0.18);
    padding: 0.75rem 0;
    background: rgba(0, 0, 0, 0.22);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
}
.footer-copy,
.footer-seo {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.42);
}
.footer-seo {
    text-align: right;
}
.badge {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 650;
    font-size: 0.78rem;
}

/* Mobile sticky demo CTA */
.sticky-mobile-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; padding: 0.8rem 1rem; background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); border-top: 1px solid rgba(11,18,32,0.10); z-index: 999; }
.sticky-mobile-cta .btn { width: 100%; }

/* Forms (shared) */
.center-card { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid rgba(11,18,32,0.10); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-md); }
.center-card-head { text-align: center; margin-bottom: 1.3rem; }
.center-card-head p { margin: 0.35rem auto 0; max-width: 60ch; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin: 1rem 0 1.1rem; }
.field { display: grid; gap: 0.45rem; font-weight: 650; color: var(--text-strong); font-size: 0.92rem; }
.field-full { grid-column: 1 / -1; }
.field input, .field textarea, .field select { width: 100%; padding: 0.85rem 0.95rem; border-radius: 14px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); color: var(--text-strong); font-family: var(--font-body); font-size: 0.98rem; transition: box-shadow var(--transition), border-color var(--transition), background var(--transition); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; background: rgba(255,255,255,0.06); border-color: rgba(176,140,87,0.55); box-shadow: 0 0 0 4px rgba(176,140,87,0.16); }
.field label { color: rgba(255,255,255,0.80); }
.muted { color: var(--muted); }
.req { color: rgba(239,68,68,0.9); }
.muted { color: var(--muted); }
.link { color: var(--primary-strong); font-weight: 700; }

/* Premium motion: reveal */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 560ms ease, transform 560ms ease; }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.form-foot { margin-top: 0.9rem; display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; }
.invalid { border-color: rgba(239,68,68,0.55) !important; box-shadow: 0 0 0 4px rgba(239,68,68,0.12) !important; }

/* Pricing toggle + table */
.toggle-row { display: flex; align-items: center; justify-content: center; gap: 0.9rem; margin: 0.4rem 0 1.6rem; }
.pricing-visual { margin: 0 auto 1.4rem; max-width: 980px; }
.pricing-visual .glass-card { padding: 0.75rem; }
.pricing-visual img { width: 100%; height: auto; }
.toggle { width: 56px; height: 32px; border-radius: 999px; border: 1px solid rgba(11,18,32,0.14); background: rgba(11,18,32,0.05); position: relative; cursor: pointer; }
.toggle-knob { width: 24px; height: 24px; border-radius: 999px; background: #fff; border: 1px solid rgba(11,18,32,0.10); position: absolute; top: 3px; left: 3px; transition: transform var(--transition); box-shadow: var(--shadow-sm); }
.toggle.is-on .toggle-knob { transform: translateX(24px); }
.save { color: var(--success); font-weight: 800; margin-left: 0.25rem; }
.compare { margin-top: 1.4rem; }
.table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { padding: 0.9rem 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.10); text-align: left; }
.compare-table th { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.compare-table td:nth-child(n+2) { text-align: center; font-weight: 800; color: var(--text-strong); }

/* Feature page rows */
.feature-stack { display: grid; gap: 1.25rem; }
.feature-row { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1.2rem; align-items: center; }
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }
.feature-row-copy p { color: var(--muted); margin: 0.6rem 0 0; }
.feature-row-visual .glass-card { box-shadow: var(--shadow-md); }

/* Contact page */
.contact-page {
    padding: 0 0 clamp(4rem, 8vw, 6rem);
    background-color: #eceae5;
    background-image:
        radial-gradient(ellipse 80% 60% at 15% 100%, rgba(255, 255, 255, 0.75) 0%, transparent 55%),
        linear-gradient(180deg, #ebe8e2 0%, #e4e1db 100%);
}

.contact-banner {
    position: relative;
    min-height: clamp(220px, 32vw, 340px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: clamp(-3.5rem, -7vw, -4.5rem);
}

.contact-banner-media {
    position: absolute;
    inset: 0;
}

.contact-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-banner-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 10, 15, 0.18) 0%, rgba(7, 10, 15, 0.42) 100%),
        linear-gradient(90deg, rgba(7, 10, 15, 0.35) 0%, transparent 55%);
}

.contact-banner-inner {
    position: relative;
    z-index: 1;
    padding: calc(var(--header-h) + 1.5rem) 0 clamp(5rem, 10vw, 6.5rem);
    max-width: 640px;
    color: #ffffff;
}

.contact-banner-eyebrow {
    display: inline-flex;
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(176, 140, 87, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-banner-title {
    margin: 0 0 0.65rem;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(2.25rem, 5vw, 3.35rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.contact-banner-lead {
    margin: 0;
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48ch;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.22);
}

.contact-stack {
    position: relative;
    z-index: 2;
}

.contact-stack-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 1.75rem);
    align-items: stretch;
    max-width: 1080px;
    margin-inline: auto;
}

.contact-form-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.75rem, 3.5vw, 2.25rem);
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, 0.08);
    box-shadow: 0 20px 52px rgba(11, 18, 32, 0.1);
}

.contact-details-panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.75rem, 3.5vw, 2.35rem);
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, 0.08);
    box-shadow: 0 20px 52px rgba(11, 18, 32, 0.1);
    overflow: hidden;
}

.contact-details-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(176, 140, 87, 0.45) 100%);
}

.contact-details-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.contact-details-title {
    margin: 0 0 0.5rem;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(1.65rem, 2.8vw, 2rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--text-strong);
}

.contact-details-lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 38ch;
}

.contact-details-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.contact-channel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.contact-channel {
    display: grid;
    gap: 0.2rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}

.contact-channel:first-child {
    padding-top: 0;
}

.contact-channel:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-channel-label {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.52);
}

.contact-channel-value {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-strong);
    text-decoration: none;
    transition: color var(--transition);
    word-break: break-word;
}

a.contact-channel-value {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 0.15rem;
}

a.contact-channel-value:hover {
    color: var(--primary-strong);
}

a.contact-channel-value:focus-visible {
    outline: 2px solid var(--primary-strong);
    outline-offset: 3px;
    border-radius: 4px;
}

.contact-hours-block {
    padding: 1.15rem 1.15rem 1rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3ef 100%);
    border: 1px solid rgba(11, 18, 32, 0.06);
}

.contact-hours-heading {
    margin: 0 0 0.85rem;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-strong);
}

.contact-hours-list {
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.contact-hours-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.contact-hours-row dt {
    margin: 0;
    font-weight: 600;
    color: var(--text-strong);
    flex-shrink: 0;
}

.contact-hours-row dd {
    margin: 0;
    text-align: right;
    color: var(--muted);
}

.contact-form-head {
    margin-bottom: clamp(1.15rem, 2.5vw, 1.5rem);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.contact-form-head h2 {
    margin: 0 0 0.35rem;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(1.55rem, 2.5vw, 1.85rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-strong);
}

.contact-form-head p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1.1rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.15rem;
    flex: 1;
    align-content: start;
}

.contact-field {
    display: grid;
    gap: 0.4rem;
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-field--message {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-strong);
}

.contact-req {
    color: #c62828;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(11, 18, 32, 0.14);
    border-radius: 10px;
    background: #fafafa;
    color: var(--text-strong);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(11, 18, 32, 0.42);
}

.contact-field textarea {
    resize: vertical;
    min-height: 120px;
    flex: 1;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: rgba(176, 140, 87, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(176, 140, 87, 0.16);
}

.contact-field input.invalid,
.contact-field textarea.invalid {
    border-color: #c62828;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
}

.contact-submit {
    width: 100%;
    margin-top: 0.1rem;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: var(--btn-gold);
    color: var(--btn-gold-text);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(176, 140, 87, 0.28);
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-submit:hover {
    background: var(--btn-gold-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(176, 140, 87, 0.34);
}

.contact-submit:active {
    transform: translateY(0);
    color: #ffffff;
}

.contact-submit:focus-visible {
    outline: 2px solid var(--primary-strong);
    outline-offset: 3px;
}

.contact-form-foot {
    margin: 0;
    text-align: center;
    font-size: 0.92rem;
    color: var(--muted);
}

.contact-form-foot a {
    font-weight: 600;
    color: var(--primary-strong);
    text-decoration: none;
}

.contact-form-foot a:hover {
    color: var(--text-strong);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Legacy contact aliases */
.contact-text-link {
    color: var(--text-strong);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(176, 140, 87, 0.55);
    transition: color var(--transition), text-decoration-color var(--transition);
}

.contact-text-link:hover {
    color: var(--primary-strong);
    text-decoration-color: var(--primary);
}

/* Demo request page */
.page-demo .demo-page {
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
    background: linear-gradient(180deg, #f8f7f4 0%, #ffffff 100%);
}

.demo-card {
    max-width: 760px;
    margin-inline: auto;
    padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 2.5rem);
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(11, 18, 32, 0.08);
}

.demo-card-head {
    text-align: center;
    margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.demo-card-head h1 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-strong);
}

.demo-card-head p {
    margin: 0 auto;
    max-width: 52ch;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted);
}

.demo-form {
    display: grid;
    gap: 1.35rem;
}

.demo-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1.5rem;
}

.demo-field {
    display: grid;
    gap: 0.5rem;
}

.demo-field--full {
    grid-column: 1 / -1;
}

.demo-label {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-strong);
}

.demo-req {
    color: #c62828;
}

.demo-field input,
.demo-field textarea {
    width: 100%;
    padding: 0.65rem 0 0.75rem;
    border: none;
    border-bottom: 1px solid rgba(11, 18, 32, 0.28);
    border-radius: 0;
    background: transparent;
    color: var(--text-strong);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.demo-field textarea {
    min-height: 120px;
    padding: 0.5rem 0 0.75rem;
    resize: vertical;
    border: none;
    border-bottom: 1px solid rgba(11, 18, 32, 0.28);
}

.demo-field input::placeholder,
.demo-field textarea::placeholder {
    color: rgba(11, 18, 32, 0.42);
}

.demo-field input:focus,
.demo-field textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-strong);
    box-shadow: 0 1px 0 0 var(--primary);
}

.demo-field input.invalid,
.demo-field textarea.invalid {
    border-bottom-color: #c62828;
    box-shadow: 0 1px 0 0 #c62828;
}

.demo-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.95rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: var(--primary);
    color: var(--text-strong);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(176, 140, 87, 0.32);
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.demo-submit:hover {
    background: var(--primary-strong);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(176, 140, 87, 0.42);
}

.demo-submit:active {
    background: var(--primary-strong);
    color: #ffffff;
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(176, 140, 87, 0.28);
}

.demo-submit:focus-visible {
    outline: 2px solid var(--primary-strong);
    outline-offset: 3px;
}

.demo-form-foot {
    margin: 0.25rem 0 0;
    text-align: center;
    font-size: 0.98rem;
    color: var(--muted);
}

.demo-form-foot a {
    margin-left: 0.35rem;
    color: var(--primary-strong);
    font-weight: 600;
    text-decoration: none;
}

.demo-form-foot a:hover {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 700px) {
    .demo-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .contact-banner {
        margin-bottom: -2rem;
        min-height: clamp(240px, 48vw, 300px);
    }

    .contact-banner-inner {
        padding-bottom: 3.5rem;
    }

    .pricing-banner {
        margin-bottom: -2rem;
        min-height: clamp(240px, 48vw, 300px);
    }

    .pricing-banner-inner {
        padding-bottom: 3.5rem;
    }

    .contact-stack-inner {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        grid-column: 1;
    }
}

@media (max-width: 600px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .cta-banner,
    .cta-premium-inner { flex-direction: column; align-items: flex-start; }
    .feature-row { grid-template-columns: 1fr; }
    .feature-row-reverse { direction: ltr; }
}

@media (max-width: 760px) {
    .nav-toggle { display: inline-block; }
    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(11,18,32,0.10);
        padding: 1rem 1rem 1.25rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .site-nav.is-open { display: flex; }
    body.nav-open .nav-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    body.nav-open .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    body.nav-open .nav-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .page-home .site-nav { background: rgba(7, 10, 15, 0.96); border-bottom-color: rgba(255,255,255,0.10); }
    .page-home .site-nav .nav-link { color: rgba(255,255,255,0.92); }
    .page-home .site-header.is-solid .site-nav { background: rgba(255,255,255,0.96); border-bottom-color: rgba(11,18,32,0.10); }
    .page-home .site-header.is-solid .site-nav .nav-link { color: var(--muted); }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0.2rem; }
    .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.72rem 0.85rem;
        border-radius: 12px;
        border: 0;
        -webkit-tap-highlight-color: transparent;
    }
    @media (hover: hover) {
        .nav-link:hover,
        .nav-link.is-active {
            background: rgba(176, 140, 87, 0.14);
            color: var(--text-strong);
        }
        .page-home .site-nav .nav-link:hover,
        .page-home .site-nav .nav-link.is-active {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        .page-home .site-header.is-solid .site-nav .nav-link:hover,
        .page-home .site-header.is-solid .site-nav .nav-link.is-active {
            background: rgba(176, 140, 87, 0.14);
            color: var(--text-strong);
        }
    }
    .nav-link:active {
        background: rgba(176, 140, 87, 0.18);
    }
    .page-home .site-nav .nav-link:active {
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
    }
    .page-home .site-header.is-solid .site-nav .nav-link:active {
        background: rgba(176, 140, 87, 0.18);
        color: var(--text-strong);
    }
    .nav-item--dropdown { width: 100%; }
    .nav-link--dropdown { width: 100%; justify-content: space-between; }
    .nav-item--dropdown.is-open > .nav-link--dropdown {
        background: rgba(176, 140, 87, 0.14);
        color: var(--text-strong);
    }
    .page-home .site-nav .nav-item--dropdown.is-open > .nav-link--dropdown {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    .page-home .site-header.is-solid .site-nav .nav-item--dropdown.is-open > .nav-link--dropdown {
        background: rgba(176, 140, 87, 0.14);
        color: var(--text-strong);
    }
    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        width: 100%;
        margin: 0.2rem 0 0.35rem;
        padding: 0.35rem 0 0.35rem 0.75rem;
        border: 0;
        border-left: 2px solid rgba(176, 140, 87, 0.45);
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
        list-style: none;
    }
    .nav-item--dropdown.is-open .nav-dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 0.12rem;
    }
    .nav-item--dropdown:hover .nav-dropdown-menu,
    .nav-item--dropdown:focus-within .nav-dropdown-menu {
        display: none;
    }
    .nav-item--dropdown.is-open:hover .nav-dropdown-menu,
    .nav-item--dropdown.is-open:focus-within .nav-dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 0.12rem;
    }
    .nav-dropdown-link {
        padding: 0.62rem 0.75rem;
        border-radius: 10px;
        border: 0;
        -webkit-tap-highlight-color: transparent;
    }
    .nav-dropdown-link:active {
        background: rgba(176, 140, 87, 0.16);
    }
    .page-home .site-nav .nav-dropdown-link:active {
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
    }
  @media (hover: hover) {
        .nav-dropdown-link:hover,
        .nav-dropdown-link:focus-visible {
            background: rgba(176, 140, 87, 0.12);
            color: var(--text-strong);
        }
        .page-home .site-nav .nav-dropdown-link:hover,
        .page-home .site-nav .nav-dropdown-link:focus-visible {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }
    }
    .nav-dropdown-link--overview {
        border-bottom: 0;
        margin-bottom: 0.1rem;
        padding-bottom: 0.55rem;
        border-bottom: 1px solid rgba(11, 18, 32, 0.08);
    }
    .page-home .site-nav .nav-dropdown-link--overview {
        border-bottom-color: rgba(255, 255, 255, 0.12);
    }
    .page-home .site-header.is-solid .site-nav .nav-dropdown-link--overview {
        border-bottom-color: rgba(11, 18, 32, 0.08);
    }
    .page-home .site-nav .nav-dropdown-link {
        color: rgba(255, 255, 255, 0.88);
    }
    .page-home .site-header.is-solid .site-nav .nav-dropdown-link {
        color: var(--text-strong);
    }
    .nav-actions { flex-direction: column; align-items: stretch; }
    .nav-actions .btn { width: 100%; }
    .two-col { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .pricing-preview,
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card:hover,
    .pricing-card--featured:hover { transform: none; }
    .hero-carousel-metrics { grid-template-columns: 1fr; }
        .brand-logo {
            height: 48px;
            width: auto;
            max-width: 168px;
        }
    .page-home .site-header:not(.is-solid) .brand { padding: 0; }
        .page-home .site-header:not(.is-solid) .brand-logo {
            height: 46px;
            width: auto;
            max-width: 160px;
        }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .footer-seo { text-align: left; }
    .sticky-mobile-cta { display: block; }
    .footer-inner { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .feature-card:hover, .btn:hover { transform: none; }
}

p {
    margin: 0 0 1rem;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: min(1140px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--btn-gold);
    color: var(--btn-gold-text);
    border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
    left: 0;
}

/* Legacy duplicate button rules removed — see top of file */

/* Alerts */
.alert {
    padding: 1rem 0;
    font-size: 0.95rem;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-bottom: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-bottom: 1px solid #fecaca;
}

.alert ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.alert p,
.alert li {
    margin: 0;
}

/* Legacy duplicate header/nav rules removed — see top of file */

/* Hero */
.hero {
    position: relative;
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(14, 165, 233, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-dark);
    background: rgba(14, 165, 233, 0.1);
    border-radius: 999px;
}

.hero-lead {
    font-size: 1.125rem;
    max-width: 32rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-visual img {
    filter: drop-shadow(var(--shadow-lg));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Stats */
.stats {
    margin-top: -2rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 0.35rem;
    line-height: 1;
}

.stat-label {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
}

/* Sections */
.section {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* About hero (full-screen mission / vision) */
.about-hero {
    position: relative;
    min-height: 100dvh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + clamp(2rem, 5vw, 3.5rem)) 0 clamp(2.5rem, 5vw, 4rem);
    overflow: hidden;
    background: #f5f3ef;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-hero-slides {
    position: absolute;
    inset: 0;
}

.about-hero-slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 900ms ease, transform 1.1s ease;
    transform: scale(1.03);
    filter: brightness(1.1) contrast(1.14) saturate(1.12);
}

.about-hero-slides img.is-active {
    opacity: 1;
    transform: scale(1);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.18) 48%, rgba(250, 248, 244, 0.32) 100%),
        radial-gradient(ellipse 70% 50% at 50% 32%, rgba(255, 255, 255, 0.28), transparent 75%),
        radial-gradient(900px 520px at 50% 18%, rgba(176, 140, 87, 0.08), transparent 58%);
}

.about-hero-line {
    position: absolute;
    left: 50%;
    bottom: clamp(1.5rem, 4vw, 2.5rem);
    transform: translateX(-50%);
    width: min(140px, 28vw);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(176, 140, 87, 0.55), transparent);
    z-index: 2;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4.5vw, 3.25rem);
}

.about-hero-head {
    text-align: center;
    max-width: 720px;
    padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 12px 36px rgba(11, 18, 32, 0.06);
}

.about-hero-head h1 {
    margin-bottom: 1rem;
}

.about-hero-lead {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    line-height: 1.75;
    color: var(--muted);
}

.about-mv-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
    width: min(920px, 100%);
}

.about-mv-box {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 2.5vw, 1.85rem);
    border: 1px solid rgba(176, 140, 87, 0.22);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 32px rgba(11, 18, 32, 0.05);
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.about-mv-box:hover {
    border-color: rgba(176, 140, 87, 0.42);
    box-shadow: 0 14px 40px rgba(11, 18, 32, 0.08);
}

.about-mv-box:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.about-mv-box.is-active {
    border-color: rgba(176, 140, 87, 0.65);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(176, 140, 87, 0.16) 100%);
    box-shadow:
        0 18px 48px rgba(176, 140, 87, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.65);
    transform: translateY(-3px);
}

.about-mv-box-rule {
    display: block;
    width: 48px;
    height: 2px;
    margin-bottom: 1.1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), rgba(176, 140, 87, 0.35));
    transition: width var(--transition), background var(--transition);
}

.about-mv-box.is-active .about-mv-box-rule {
    width: 64px;
    background: linear-gradient(90deg, var(--primary-strong), var(--primary));
}

.about-mv-box-label {
    display: block;
    margin-bottom: 0.85rem;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.8vw, 2.15rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-strong);
}

.about-mv-box p {
    margin: 0;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.75;
    color: var(--muted);
    transition: color var(--transition);
}

.about-mv-box.is-active p {
    color: rgba(11, 18, 32, 0.72);
}

.section-about-values {
    padding-top: clamp(3rem, 6vw, 4.5rem);
}

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding-bottom: 2.5rem;
    }

    .about-mv-panels {
        grid-template-columns: 1fr;
    }

    .about-mv-box.is-active {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-hero-slides img {
        transition: none;
        transform: none;
    }

    .about-mv-box,
    .about-mv-box-rule,
    .about-mv-box p {
        transition: none;
    }

    .about-mv-box.is-active {
        transform: none;
    }
}

/* About values (reference cards + infographics) */
.about-values {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.about-values-head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    align-items: stretch;
}

.about-value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.5rem, 2.5vw, 2rem);
    background: linear-gradient(180deg, #faf9f6 0%, #f5f3ef 100%);
    border: 1px solid rgba(176, 140, 87, 0.18);
    border-radius: 22px;
    box-shadow: 0 8px 28px rgba(11, 18, 32, 0.05);
}

.about-value-rule {
    width: 56px;
    height: 2px;
    margin-bottom: 1.35rem;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 999px;
}

.about-value-card h3 {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-strong);
    max-width: 18ch;
}

.about-value-card > p {
    margin: 0 0 1.5rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 34ch;
}

.about-value-visual {
    width: 100%;
    margin-top: auto;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(11, 18, 32, 0.08);
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* About infographic mocks */
.ab-fi { width: 100%; }

.ab-fi-ux {
    display: flex;
    gap: 0.5rem;
    min-height: 130px;
}

.ab-fi-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 28px;
    padding: 0.35rem;
    background: var(--surface);
    border-radius: 8px;
}

.ab-fi-sidebar span {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
}

.ab-fi-sidebar-active {
    background: var(--primary) !important;
}

.ab-fi-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ab-fi-toolbar {
    height: 10px;
    border-radius: 4px;
    background: rgba(11, 18, 32, 0.08);
    width: 55%;
}

.ab-fi-row {
    display: flex;
    gap: 0.35rem;
}

.ab-fi-block {
    flex: 1;
    height: 28px;
    border-radius: 6px;
    background: rgba(11, 18, 32, 0.06);
    border: 1px solid rgba(11, 18, 32, 0.08);
}

.ab-fi-block--gold {
    background: rgba(176, 140, 87, 0.18);
    border-color: rgba(176, 140, 87, 0.35);
}

.ab-fi-cta {
    align-self: flex-start;
    margin-top: 0.25rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--text-strong);
    font-size: 0.58rem;
    font-weight: 700;
}

.ab-fi-cloud {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
}

.ab-fi-cloud-icon {
    color: var(--primary-strong);
}

.ab-fi-cloud-meta {
    text-align: center;
    font-size: 0.62rem;
}

.ab-fi-cloud-badge {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: rgba(176, 140, 87, 0.15);
    color: var(--primary-strong);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.ab-fi-cloud-sync {
    display: block;
    color: var(--muted);
}

.ab-fi-devices {
    display: flex;
    gap: 0.35rem;
    align-items: flex-end;
}

.ab-fi-devices span {
    width: 22px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid rgba(11, 18, 32, 0.15);
    background: rgba(11, 18, 32, 0.05);
}

.ab-fi-devices span:nth-child(2) {
    height: 18px;
}

.ab-fi-devices-active {
    height: 22px !important;
    border-color: rgba(176, 140, 87, 0.45) !important;
    background: rgba(176, 140, 87, 0.12) !important;
}

.ab-fi-ops {
    width: 100%;
    padding: 0.25rem;
}

.ab-fi-kpi-row {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    font-size: 0.62rem;
}

.ab-fi-kpi-row span {
    display: block;
    color: var(--muted);
    margin-bottom: 0.15rem;
}

.ab-fi-kpi-row strong {
    font-size: 0.85rem;
    color: var(--text-strong);
}

.ab-fi-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.3rem;
    height: 64px;
    padding: 0.35rem;
    background: rgba(11, 18, 32, 0.04);
    border-radius: 8px;
}

.ab-fi-chart span {
    flex: 1;
    background: rgba(11, 18, 32, 0.12);
    border-radius: 3px 3px 0 0;
    min-height: 8px;
}

.ab-fi-bar-gold {
    background: linear-gradient(180deg, var(--primary), var(--primary-strong)) !important;
}

@media (max-width: 960px) {
    .about-values-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.about-list li {
    position: relative;
    padding-left: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

/* Features page grid alias */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Testimonials — Word of Mouth */
.testimonials-wom {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background-color: #f4f1ec;
    background-image:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(255, 255, 255, 0.9) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 75%, rgba(210, 198, 180, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 60% 40%, rgba(255, 255, 255, 0.5) 0%, transparent 45%),
        linear-gradient(160deg, #faf8f5 0%, #ebe6de 45%, #f6f3ef 100%);
}
.wom-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}
.wom-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.wom-head {
    display: flex;
    align-items: flex-end;
    gap: 0.65rem;
    margin-bottom: 0.35rem;
}
.wom-corner {
    display: block;
    width: 52px;
    height: 52px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    position: relative;
    flex-shrink: 0;
}
.wom-corner::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-top: 1px solid rgba(176, 140, 87, 0.45);
    border-left: 1px solid rgba(176, 140, 87, 0.45);
}
.wom-title {
    margin: 0;
    padding-top: 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-strong);
    text-align: left;
}
.wom-team-photo {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 18, 32, 0.12);
    border: 1px solid rgba(176, 140, 87, 0.18);
}
.wom-team-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
}
.wom-quotes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    padding-top: clamp(0.5rem, 2vw, 2rem);
}
.wom-quote {
    margin: 0;
}
.wom-quote blockquote {
    margin: 0 0 1rem;
}
.wom-quote blockquote p {
    margin: 0;
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    line-height: 1.65;
    color: var(--text-strong);
    font-weight: 400;
}
.wom-quote figcaption {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-strong);
    padding-top: 0.85rem;
    border-top: 1px solid var(--primary);
}
@media (max-width: 900px) {
    .wom-layout {
        grid-template-columns: 1fr;
    }
    .wom-quotes {
        padding-top: 0;
    }
    .wom-title {
        font-size: clamp(1.85rem, 5.5vw, 2.35rem);
    }
}
@media (max-width: 600px) {
    .wom-quotes {
        grid-template-columns: 1fr;
    }
    .wom-team-photo img {
        aspect-ratio: 16 / 11;
    }
    .wom-head {
        margin-bottom: 0.35rem;
    }
    .wom-title {
        font-size: clamp(1.75rem, 7vw, 2.1rem);
    }
}

/* Testimonials (legacy cards) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
}

.testimonial-card blockquote {
    margin: 0 0 1.5rem;
}

.testimonial-card blockquote p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    display: block;
    font-size: 0.875rem;
    color: var(--text-body);
    margin-top: 0.2rem;
}

/* Quote form */
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.quote-benefits {
    margin-top: 2rem;
}

.quote-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: var(--text-dark);
}

.quote-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.quote-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-row {
    margin-bottom: 1.25rem;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: #dc2626;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
    background: var(--white);
}

.form-row input.invalid {
    border-color: #dc2626;
}

/* Legacy footer overrides removed — see compact footer above */

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 900px) {

    .hero-grid,
    .about-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        max-width: 480px;
        margin-inline: auto;
    }

    .about-visual {
        order: -1;
    }

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .form-row-split {
        grid-template-columns: 1fr;
    }

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

/* Feature detail pages */
.page-feature-detail .feature-hero {
    padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 55%);
}

.feature-hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.feature-hero-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
}

.feature-hero-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    color: var(--text-strong);
    margin: 0 0 1.1rem;
    letter-spacing: -0.025em;
    max-width: 14ch;
}

.feature-hero-lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
    max-width: 42ch;
}

.feature-hero-accent {
    width: 80px;
    height: 4px;
    margin-top: 1.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-strong));
}

.feature-hero-visual {
    position: relative;
}

.feature-hero-frame {
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(11, 18, 32, 0.08);
    box-shadow: 0 24px 60px rgba(11, 18, 32, 0.14), 0 8px 24px rgba(176, 140, 87, 0.08);
}

.feature-hero-chrome {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: var(--surface-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-hero-chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.feature-hero-chrome span:first-child { background: rgba(176, 140, 87, 0.65); }

.feature-hero-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top center;
}

.feature-modules {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}

.feature-modules-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.feature-modules-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: var(--text-strong);
    margin: 0;
    font-weight: 700;
}

.feature-modules-line {
    flex: 1;
    max-width: 140px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(176, 140, 87, 0.5), transparent);
}

.feature-module-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-module-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.5rem, 3vw, 3rem);
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 3.5vw, 2.75rem);
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(11, 18, 32, 0.08);
    box-shadow: 0 4px 24px rgba(11, 18, 32, 0.06);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.feature-module-card:hover {
    box-shadow: 0 12px 40px rgba(11, 18, 32, 0.1);
    border-color: rgba(176, 140, 87, 0.25);
}

.feature-module-main {
    display: flex;
    align-items: flex-start;
    gap: 1.35rem;
    flex: 1 1 52%;
    min-width: 0;
}

.feature-module-icon-wrap {
    flex-shrink: 0;
}

.feature-module-icon {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(176, 140, 87, 0.1);
    border: 1px solid rgba(176, 140, 87, 0.2);
    color: var(--primary-strong);
}

.feature-module-icon svg {
    width: 36px;
    height: 36px;
}

.feature-module-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    color: var(--text-strong);
    margin: 0.15rem 0 0.55rem;
    line-height: 1.35;
    font-weight: 700;
}

.feature-module-copy p {
    margin: 0;
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 48ch;
}

.feature-module-visual {
    flex: 0 1 42%;
    min-width: 260px;
    max-width: 400px;
    position: relative;
}

.fi-panel {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-strong);
    width: 100%;
}

.fi-search { width: 100%; }
.fi-search-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.6rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.fi-search-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid rgba(176, 140, 87, 0.35);
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(176, 140, 87, 0.12);
}
.fi-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.fi-search-meta { flex: 1; min-width: 0; }
.fi-search-meta strong { display: block; font-size: 0.72rem; }
.fi-search-meta span { color: var(--muted); font-size: 0.62rem; }
.fi-action-row { display: flex; gap: 0.25rem; }
.fi-action-btn {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--muted);
}
.fi-action-btn--gold {
    background: rgba(176, 140, 87, 0.18);
    border-color: rgba(176, 140, 87, 0.35);
    color: var(--primary-strong);
}

.fi-docs { width: 100%; }
.fi-folder { margin-bottom: 0.4rem; }
.fi-tabs { display: flex; gap: 0.25rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.fi-tab {
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    font-size: 0.62rem;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--border);
}
.fi-tab--active {
    background: rgba(176, 140, 87, 0.14);
    border-color: rgba(176, 140, 87, 0.35);
    color: var(--primary-strong);
    font-weight: 600;
}
.fi-note-area {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem;
}
.fi-note-line {
    height: 5px;
    background: rgba(11, 18, 32, 0.08);
    border-radius: 3px;
    margin-bottom: 0.35rem;
}
.fi-note-line--short { width: 55%; }
.fi-note-line--med { width: 75%; margin-bottom: 0; }

.fi-perms { width: 100%; font-size: 0.62rem; }
.fi-perms-head,
.fi-perms-row {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 0.25rem;
    align-items: center;
    text-align: center;
}
.fi-perms-head {
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 0.35rem;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.fi-perms-head span:first-child,
.fi-perms-role { text-align: left; }
.fi-perms-row { padding: 0.3rem 0; border-top: 1px solid var(--border); }
.fi-check {
    width: 18px;
    height: 18px;
    margin-inline: auto;
    border-radius: 4px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    color: transparent;
}
.fi-check--on {
    background: var(--primary);
    border-color: var(--primary-strong);
    color: #fff;
    font-weight: 700;
}

.fi-cal { width: 100%; }
.fi-cal-header {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.62rem;
    color: var(--muted);
}
.fi-cal-active {
    color: var(--primary-strong);
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
}
.fi-cal-slot {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.35rem;
}
.fi-cal-time { font-size: 0.58rem; color: var(--muted); width: 2rem; flex-shrink: 0; }
.fi-cal-event {
    flex: 1;
    padding: 0.3rem 0.45rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.62rem;
}
.fi-cal-event--gold {
    border-color: rgba(176, 140, 87, 0.4);
    background: rgba(176, 140, 87, 0.1);
}

.fi-remind { width: 100%; display: flex; flex-direction: column; gap: 0.4rem; }
.fi-remind-card {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.62rem;
}
.fi-remind-card strong { display: block; font-size: 0.68rem; }
.fi-remind-card span { color: var(--muted); font-size: 0.58rem; }
.fi-remind-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(176, 140, 87, 0.15);
    color: var(--primary-strong);
    font-size: 0.55rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.fi-remind-icon--email { font-size: 0.75rem; }
.fi-badge {
    margin-left: auto;
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    background: var(--bg-soft);
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--muted);
    flex-shrink: 0;
}
.fi-badge--sent {
    background: rgba(22, 163, 74, 0.12);
    color: var(--success);
}

.fi-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.15rem;
}
.fi-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.55rem;
    color: var(--muted);
    text-align: center;
}
.fi-flow-step--active { color: var(--primary-strong); font-weight: 600; }
.fi-flow-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-size: 0.6rem;
    font-weight: 700;
}
.fi-flow-step--active .fi-flow-dot {
    background: var(--primary);
    border-color: var(--primary-strong);
    color: #fff;
}
.fi-flow-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin-bottom: 1rem;
}

.fi-tooth-chart { width: 100%; text-align: center; }
.fi-tooth-row {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
}
.fi-tooth {
    width: 14px;
    height: 20px;
    border-radius: 3px 3px 6px 6px;
    background: #fff;
    border: 1px solid var(--border);
}
.fi-tooth--marked {
    background: rgba(176, 140, 87, 0.35);
    border-color: var(--primary);
}
.fi-chart-legend {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.58rem;
    color: var(--muted);
    margin-top: 0.35rem;
}
.fi-legend-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #fff;
    border: 1px solid var(--border);
    margin-right: 0.2rem;
    vertical-align: middle;
}
.fi-legend-dot--gold { background: rgba(176, 140, 87, 0.5); border-color: var(--primary); }

.fi-clinical,
.fi-invoice,
.fi-payments,
.fi-export,
.fi-kpi,
.fi-growth,
.fi-multi,
.fi-audit,
.fi-cloud,
.fi-handoff { width: 100%; font-size: 0.65rem; }

.fi-clinical-head,
.fi-invoice-head {
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-strong);
}
.fi-clinical-body {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem;
}
.fi-clinical-body p { margin: 0 0 0.35rem; line-height: 1.45; }
.fi-clinical-tags { display: flex; gap: 0.3rem; flex-wrap: wrap; }
.fi-tag {
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    background: rgba(176, 140, 87, 0.12);
    color: var(--primary-strong);
    font-size: 0.55rem;
    font-weight: 600;
}

.fi-handoff {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.fi-handoff-col { flex: 1; }
.fi-handoff-label {
    display: block;
    font-size: 0.55rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.fi-handoff-card {
    padding: 0.4rem 0.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
}
.fi-handoff-card--gold {
    border-color: rgba(176, 140, 87, 0.4);
    background: rgba(176, 140, 87, 0.1);
}
.fi-handoff-arrow { color: var(--primary); font-weight: 700; }

.fi-invoice-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fi-invoice-total { color: var(--primary-strong); font-size: 0.85rem; }
.fi-invoice-line {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}
.fi-invoice-cta {
    margin-top: 0.45rem;
    padding: 0.35rem;
    text-align: center;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.58rem;
}

.fi-pay-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}
.fi-pay-row--muted { color: var(--muted); font-size: 0.6rem; }
.fi-pay-bar {
    height: 6px;
    background: var(--border);
    border-radius: 999px;
    margin: 0.35rem 0;
    overflow: hidden;
}
.fi-pay-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-strong));
    border-radius: 999px;
}
.fi-text-gold { color: var(--primary-strong); }

.fi-export-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 0.35rem;
}
.fi-export-item--gold {
    border-color: rgba(176, 140, 87, 0.35);
    background: rgba(176, 140, 87, 0.08);
}

.fi-kpi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
}
.fi-kpi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.4rem;
}
.fi-kpi-label { display: block; font-size: 0.55rem; color: var(--muted); }
.fi-kpi-card strong { font-size: 0.9rem; color: var(--text-strong); }
.fi-kpi-trend { font-size: 0.55rem; font-weight: 600; }
.fi-kpi-trend--up { color: var(--success); }
.fi-kpi-chart {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    height: 48px;
    padding: 0.35rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
}
.fi-bar {
    flex: 1;
    background: rgba(11, 18, 32, 0.12);
    border-radius: 3px 3px 0 0;
    min-height: 8px;
}
.fi-bar--gold { background: linear-gradient(180deg, var(--primary), var(--primary-strong)); }

.fi-growth-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.25rem 0.5rem;
    align-items: center;
    margin-bottom: 0.4rem;
}
.fi-growth-line span:first-child { grid-column: 1; font-size: 0.6rem; color: var(--muted); }
.fi-growth-line strong { grid-column: 2; grid-row: 1 / 3; font-size: 0.85rem; }
.fi-spark {
    grid-column: 1;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 24px;
}
.fi-spark span {
    flex: 1;
    background: rgba(11, 18, 32, 0.1);
    border-radius: 2px 2px 0 0;
    align-self: flex-end;
}
.fi-spark-peak { background: var(--primary) !important; }
.fi-spark-warn { background: rgba(176, 140, 87, 0.5) !important; }

.fi-multi-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.7fr;
    gap: 0.35rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.62rem;
}
.fi-multi-row--head {
    font-weight: 700;
    color: var(--muted);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom-width: 2px;
}
.fi-multi-row--active {
    background: rgba(176, 140, 87, 0.08);
    border-radius: 6px;
    padding-inline: 0.35rem;
    color: var(--primary-strong);
    font-weight: 600;
}

.fi-audit-row {
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.6rem;
    line-height: 1.4;
}
.fi-audit-time {
    display: inline-block;
    width: 2.2rem;
    color: var(--muted);
    font-weight: 600;
}
.fi-audit-row--gold { color: var(--primary-strong); }

.fi-cloud {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.fi-cloud-status strong { display: block; font-size: 0.75rem; }
.fi-cloud-status span { color: var(--muted); font-size: 0.58rem; }
.fi-cloud-bar {
    height: 5px;
    background: var(--border);
    border-radius: 999px;
    margin-top: 0.35rem;
    overflow: hidden;
}
.fi-cloud-bar-fill {
    width: 92%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-strong));
    border-radius: 999px;
}

.features-index-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.features-index-card {
    display: grid;
    grid-template-columns: auto 1fr minmax(160px, 240px);
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.features-index-card:hover {
    border-color: rgba(176, 140, 87, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.features-index-card h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-strong);
    margin: 0 0 0.4rem;
}

.features-index-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.features-index-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(176, 140, 87, 0.12);
    border: 1px solid rgba(176, 140, 87, 0.22);
}

.features-index-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-strong);
}

.features-index-thumb {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.features-index-thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.pill--sm {
    padding: 0.2rem 0.55rem;
    font-size: 0.72rem;
}

.cta-banner--gold {
    background: linear-gradient(135deg, rgba(176, 140, 87, 0.14), rgba(255, 255, 255, 0.9));
    border-color: rgba(176, 140, 87, 0.28);
}

@media (max-width: 960px) {
    .feature-hero-grid {
        grid-template-columns: 1fr;
    }

    .feature-hero-copy h1 {
        max-width: none;
    }

    .feature-hero-visual {
        max-width: 640px;
        margin-inline: auto;
    }

    .feature-module-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .feature-module-main {
        flex: none;
    }

    .feature-module-visual {
        flex: none;
        min-width: 0;
        max-width: none;
        width: 100%;
    }

    .features-index-card {
        grid-template-columns: auto 1fr;
    }

    .features-index-thumb {
        display: none;
    }
}

@media (max-width: 600px) {
    .feature-modules-head {
        flex-direction: column;
        gap: 0.75rem;
    }

    .feature-modules-line {
        max-width: 80px;
    }

    .feature-module-card {
        padding: 1.35rem;
    }

    .feature-module-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-module-copy p {
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-visual img {
        animation: none;
    }

    .btn:hover,
    .stat-card:hover,
    .feature-card:hover {
        transform: none;
    }
}

/* Blog */
.page-blog,
.page-blog-detail {
    background: var(--bg);
}

.blog-banner,
.blog-article-hero {
    position: relative;
    min-height: clamp(280px, 42vw, 420px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--surface-2);
}

.blog-banner-media,
.blog-article-hero-media {
    position: absolute;
    inset: 0;
}

.blog-banner-media img,
.blog-article-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.blog-banner-shade,
.blog-article-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 15, 0.35) 0%, rgba(7, 10, 15, 0.88) 100%);
}

.blog-banner-inner,
.blog-article-hero-inner {
    position: relative;
    z-index: 1;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
    max-width: 760px;
}

.blog-banner-eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(176, 140, 87, 0.22);
    color: #f4e8d4;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.blog-banner-title,
.blog-article-title {
    color: #fff;
    margin-bottom: 0.85rem;
}

.blog-banner-lead,
.blog-article-lead {
    margin: 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.65;
}

.blog-index-grid-wrap {
    padding: clamp(4rem, 7vw, 7rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
    border-color: rgba(176, 140, 87, 0.38);
    box-shadow: var(--shadow-md);
    color: inherit;
}

.blog-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-soft);
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

@media (hover: hover) {
    .blog-card:hover .blog-card-media img {
        transform: scale(1.03);
    }
}

.blog-card-body {
    padding: 1.35rem 1.4rem 1.5rem;
}

.blog-card-meta,
.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.85rem;
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.blog-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(176, 140, 87, 0.14);
    color: var(--primary-strong);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.35;
    margin: 0 0 0.65rem;
    color: var(--text-strong);
}

.blog-card-desc {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-strong);
}

.blog-back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-back-link:hover {
    color: #fff;
}

.blog-article-meta {
    color: rgba(255, 255, 255, 0.78);
}

.blog-article-meta .blog-card-tag {
    background: rgba(255, 255, 255, 0.14);
    color: #f4e8d4;
}

.blog-article-body {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6rem);
}

.blog-article-content {
    max-width: 720px;
    margin: 0 auto;
}

.blog-article-section + .blog-article-section {
    margin-top: 2.25rem;
}

.blog-article-section h2 {
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    margin-bottom: 0.85rem;
}

.blog-article-section p {
    margin: 0 0 1rem;
    color: var(--text);
    line-height: 1.75;
}

.blog-article-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .blog-index-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .blog-card-body {
        padding: 1.15rem 1.1rem 1.25rem;
    }

    .blog-article-hero-inner {
        padding-bottom: 1.75rem;
    }
}