/* ===================================================================
   Kitchen Eyes - Page-Specific Styles
   Hero, dashboard mockups, module cards, deployment timeline, etc.
   Luxury cinematic visual identity
   =================================================================== */

/* ======================================
   HERO SECTION - Cinematic
   ====================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
    background: var(--navy-deepest);
}

/* Hero background image */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: opacity 1.2s ease;
    filter: saturate(1.15) brightness(1.18) contrast(1.18);
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(5,12,24,0.70) 0%, rgba(7,17,31,0.12) 35%, rgba(5,12,24,0.16) 60%, rgba(5,12,24,0.72) 100%);
}

.hero__bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 25%, rgba(5,12,24,0.45) 70%),
                radial-gradient(ellipse at 80% 80%, rgba(184,149,94,0.04) 0%, transparent 40%);
}

/* Grid background */
.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}

/* Glow orbs - subtler */
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.hero__glow--teal {
    width: 800px;
    height: 800px;
    background: rgba(30, 127, 122, 0.10);
    top: -5%;
    right: 0%;
}

.hero__glow--gold {
    width: 500px;
    height: 500px;
    background: rgba(184, 149, 94, 0.06);
    bottom: 10%;
    left: 0%;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3xl);
    align-items: center;
}

.hero__text {
    max-width: 580px;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--sp-xl);
}

.hero__label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.04;
    margin-bottom: var(--sp-xl);
    color: var(--text-white);
    letter-spacing: -0.03em;
    font-weight: 700;
}

.hero__subtitle {
    font-family: var(--font-light);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: var(--sp-2xl);
    max-width: 500px;
    opacity: 0.85;
}

.hero__actions {
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
}

/* Hero visual panel */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__ring {
    position: relative;
    width: 420px;
    height: 420px;
}

/* Background glow layer */
.hero__ring-glow {
    position: absolute;
    inset: -80px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(30, 127, 122, 0.14) 0%,
        rgba(30, 127, 122, 0.08) 30%,
        rgba(184, 149, 94, 0.04) 50%,
        transparent 70%);
    pointer-events: none;
    animation: ring-breathe 8s ease-in-out infinite;
}

.hero__ring-outer {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(30, 127, 122, 0.24);
    border-radius: 50%;
    animation: ring-spin 50s linear infinite;
    box-shadow:
        0 0 60px rgba(30, 127, 122, 0.06),
        0 0 120px rgba(30, 127, 122, 0.03),
        inset 0 0 30px rgba(30, 127, 122, 0.03);
}

/* Orbit node points on outer ring */
.hero__ring-node {
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--teal-light);
    border-radius: 50%;
    box-shadow:
        0 0 8px rgba(30, 127, 122, 0.7),
        0 0 20px rgba(30, 127, 122, 0.35),
        0 0 40px rgba(30, 127, 122, 0.12);
}
.hero__ring-node--1 { top: -3.5px; left: 50%; transform: translateX(-50%); }
.hero__ring-node--2 { top: 50%; right: -3.5px; transform: translateY(-50%); }
.hero__ring-node--3 { bottom: -3.5px; left: 50%; transform: translateX(-50%); }
.hero__ring-node--4 { top: 50%; left: -3.5px; transform: translateY(-50%); }

.hero__ring-mid {
    position: absolute;
    inset: 35px;
    border: 1px solid rgba(30, 127, 122, 0.16);
    border-radius: 50%;
    animation: ring-spin 30s linear infinite reverse;
    box-shadow: 0 0 30px rgba(30, 127, 122, 0.04),
                inset 0 0 15px rgba(30, 127, 122, 0.02);
}

/* Pulse ring between mid and inner */
.hero__ring-pulse {
    position: absolute;
    inset: 55px;
    border: 1px solid rgba(30, 127, 122, 0.12);
    border-radius: 50%;
    animation: ring-pulse-opacity 4s ease-in-out infinite;
    box-shadow: 0 0 24px rgba(30, 127, 122, 0.04);
}

.hero__ring-inner {
    position: absolute;
    inset: 75px;
    background: rgba(30, 127, 122, 0.08);
    border: 1px solid rgba(30, 127, 122, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 100px rgba(30, 127, 122, 0.14),
        0 0 200px rgba(30, 127, 122, 0.05),
        inset 0 0 50px rgba(30, 127, 122, 0.06);
    overflow: hidden;
}

/* Radial shimmer inside inner ring */
.hero__ring-shimmer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(30, 127, 122, 0.10) 12%,
        transparent 25%,
        rgba(184, 149, 94, 0.06) 40%,
        transparent 55%,
        rgba(30, 127, 122, 0.08) 70%,
        transparent 85%
    );
    animation: ring-spin 20s linear infinite;
    pointer-events: none;
}

.hero__ring-core {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--teal-light);
    font-weight: 700;
    letter-spacing: 0.10em;
    text-shadow:
        0 0 16px rgba(30, 127, 122, 0.5),
        0 0 40px rgba(30, 127, 122, 0.2);
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ring-breathe {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

@keyframes ring-pulse-opacity {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

/* Floating badges */
.hero__badges {
    position: absolute;
    inset: -50px;
}

.hero__badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(10, 20, 34, 0.92);
    border: 1px solid rgba(30, 127, 122, 0.08);
    border-radius: var(--radius-md);
    font-size: 0.70rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 6px 24px rgba(0,0,0,0.4),
        0 0 12px rgba(30, 127, 122, 0.03);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-light);
    box-shadow: 0 0 6px rgba(30, 127, 122, 0.6), 0 0 14px rgba(30, 127, 122, 0.25);
}

.hero__badge--1 { top: -5px; left: 50%; animation: badge-float-center 6s ease-in-out infinite 0s; }
.hero__badge--2 { top: 16%; right: -36px; animation: badge-float-side 7s ease-in-out infinite 0.6s; }
.hero__badge--3 { bottom: 16%; right: -44px; animation: badge-float-side 6.5s ease-in-out infinite 1.2s; }
.hero__badge--4 { bottom: -5px; left: 50%; animation: badge-float-center 7s ease-in-out infinite 1.8s; }
.hero__badge--5 { bottom: 16%; left: -44px; animation: badge-float-side 6s ease-in-out infinite 2.4s; }
.hero__badge--6 { top: 16%; left: -36px; animation: badge-float-side 7.5s ease-in-out infinite 3s; }

@keyframes badge-float-center {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes badge-float-side {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 968px) {
    .hero__content { grid-template-columns: 1fr; text-align: center; }
    .hero__text { max-width: 100%; margin: 0 auto; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__visual { margin-top: var(--sp-2xl); }
    .hero__ring { width: 280px; height: 280px; }
    .hero__badge { display: none; }
    .hero__ring-glow { inset: -30px; }
    .hero__ring-node { width: 4px; height: 4px; }
}


/* ======================================
   PAGE HERO (Interior pages) - Cinematic
   ====================================== */

.page-hero {
    padding: calc(var(--nav-height) + var(--sp-5xl)) 0 var(--sp-5xl);
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--navy-deepest);
}

/* Background image support */
.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.80;
    transition: opacity 1.2s ease;
    filter: saturate(1.12) brightness(1.16) contrast(1.16);
}

.page-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,12,24,0.62) 0%, rgba(7,17,31,0.14) 45%, rgba(5,12,24,0.65) 100%);
}

.page-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.20;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Unique page-hero accent lines */
.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--border-line) 30%, rgba(255,255,255,0.06) 50%, var(--border-line) 70%, transparent 90%);
    z-index: 3;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(30,127,122,0.07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    margin: 0 auto;
}

.page-hero h1 {
    margin-bottom: var(--sp-lg);
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 auto;
    max-width: 580px;
    line-height: 1.85;
}

/* Page-specific hero tints - distinct identity per page */
.page-hero--platform {
    background: linear-gradient(155deg, #050C18 0%, #0A1E2E 40%, #082028 65%, #07111F 100%);
}
.page-hero--modules {
    background: linear-gradient(140deg, #050C18 0%, #12202A 35%, #0E2228 60%, #07111F 100%);
}
.page-hero--dashboards {
    background: linear-gradient(160deg, #050C18 0%, #0B1828 30%, #0F1E2A 55%, #07111F 100%);
}
.page-hero--deployment {
    background: linear-gradient(135deg, #050C18 0%, #0C1A24 40%, #101D26 65%, #07111F 100%);
}
.page-hero--about {
    background: linear-gradient(150deg, #050C18 0%, #0E1820 35%, #0A1C28 60%, #07111F 100%);
}
.page-hero--contact {
    background: linear-gradient(145deg, #050C18 0%, #101820 30%, #0C2030 55%, #07111F 100%);
}


/* ======================================
   BRAND STATEMENT - Elevated
   ====================================== */

.brand-statement {
    text-align: center;
    padding: var(--sp-5xl) 0;
    position: relative;
}

.brand-statement__text {
    font-family: var(--font-light);
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    color: var(--text-primary);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
}


/* ======================================
   FEATURE ROWS - Image-Ready
   ====================================== */

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3xl);
    align-items: center;
    padding: var(--sp-3xl) 0;
}

.feature-row--reverse {
    direction: rtl;
}
.feature-row--reverse > * {
    direction: ltr;
}

.feature-row__content h3 {
    margin-bottom: var(--sp-md);
}

.feature-row__content p {
    margin-bottom: var(--sp-lg);
}

.feature-row__visual {
    background: linear-gradient(160deg, var(--surface-card) 0%, var(--surface-dark) 100%);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: var(--sp-2xl);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.feature-row__visual:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(30, 127, 122, 0.05);
}

/* Image-ready feature visual */
.feature-row__visual--image {
    padding: 0;
}

.feature-row__visual--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0.88;
    transition: opacity 0.6s ease, transform 0.6s ease;
    filter: saturate(1.05) contrast(1.08);
}

.feature-row__visual--image:hover img {
    opacity: 0.95;
    transform: scale(1.02);
    filter: saturate(1.15) contrast(1.1);
}

.feature-row__visual--image .feature-row__visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,12,24,0.15) 0%, rgba(5,12,24,0.55) 100%);
    z-index: 1;
}

.feature-row__visual--image .feature-row__visual-content {
    position: relative;
    z-index: 2;
    padding: var(--sp-2xl);
    text-align: center;
}

@media (max-width: 968px) {
    .feature-row {
        grid-template-columns: 1fr;
    }
    .feature-row--reverse {
        direction: ltr;
    }
}


/* ======================================
   MODULE CATEGORY SECTIONS - Refined
   ====================================== */

.module-category {
    padding: var(--sp-3xl) 0 var(--sp-4xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.module-category::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30,127,122,0.12), transparent);
}

.module-category:last-child {
    border-bottom: none;
}

.module-category__header {
    display: flex;
    align-items: center;
    gap: var(--sp-xl);
    margin-bottom: var(--sp-3xl);
}

.module-category__icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 127, 122, 0.10);
    border: 1px solid rgba(30, 127, 122, 0.30);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-light);
    box-shadow: 0 0 24px rgba(30, 127, 122, 0.08);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.module-category__icon svg {
    width: 24px;
    height: 24px;
}

.module-category__icon--gold {
    background: rgba(184, 149, 94, 0.10);
    border-color: rgba(184, 149, 94, 0.30);
    color: var(--gold-light);
    box-shadow: 0 0 24px rgba(184, 149, 94, 0.06);
}

.module-category__info h3 {
    margin-bottom: var(--sp-xs);
    font-size: clamp(1.3rem, 2.5vw, 1.65rem);
}

.module-category__info p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.module-card {
    background: linear-gradient(160deg, var(--surface-card) 0%, var(--surface-card-alt) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: var(--sp-xl) var(--sp-lg);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--shadow-inset), 0 2px 8px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--grad-teal);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.module-card:hover {
    border-color: rgba(30, 127, 122, 0.30);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px rgba(30, 127, 122, 0.06), var(--shadow-inset);
}

.module-card:hover::before {
    opacity: 1;
}

.module-card__name {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    color: var(--text-primary);
    margin-bottom: var(--sp-md);
    letter-spacing: -0.01em;
}

.module-card__desc {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.72;
}


/* ======================================
   DASHBOARD MOCKUPS - Command Centre
   ====================================== */

.dash-panel {
    background: linear-gradient(180deg, rgba(5,12,24,0.95) 0%, var(--navy-deepest) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                border-color var(--duration-normal) ease;
}

.dash-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(30, 127, 122, 0.06);
    border-color: var(--border-accent);
}

.dash-panel__header {
    padding: var(--sp-lg) var(--sp-xl);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.015);
}

.dash-panel__title {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.dash-panel__subtitle {
    font-size: 0.68rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dash-panel__body {
    padding: var(--sp-lg);
}

.dash-panel__accent {
    height: 2px;
    background: var(--grad-teal);
}

.dash-panel__accent--gold {
    background: var(--grad-gold);
}

/* KPI Row */
.dash-kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--sp-lg);
}

.dash-kpi {
    background: var(--surface-card);
    padding: var(--sp-md) var(--sp-sm);
    text-align: center;
}

.dash-kpi__value {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--teal-light);
    line-height: 1;
    text-shadow: 0 0 20px rgba(30, 127, 122, 0.15);
}

.dash-kpi__value--gold { color: var(--gold); text-shadow: 0 0 20px rgba(184, 149, 94, 0.15); }
.dash-kpi__value--green { color: var(--status-green); text-shadow: 0 0 20px rgba(52, 168, 108, 0.15); }

.dash-kpi__label {
    font-size: 0.58rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
    font-weight: 600;
}

/* Mini Chart Bars */
.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    padding: var(--sp-sm);
    background: var(--surface-card);
    border-radius: var(--radius-md);
    margin-bottom: var(--sp-md);
}

.dash-chart__bar {
    flex: 1;
    background: linear-gradient(180deg, var(--teal-muted) 0%, rgba(23,94,90,0.5) 100%);
    border-radius: 3px 3px 0 0;
    transition: height 0.5s var(--ease-out);
    min-width: 6px;
}

.dash-chart__bar--accent { background: linear-gradient(180deg, var(--teal) 0%, var(--teal-muted) 100%); }
.dash-chart__bar--gold { background: linear-gradient(180deg, var(--gold-subtle) 0%, rgba(145,117,72,0.5) 100%); }
.dash-chart__bar--gold-accent { background: linear-gradient(180deg, var(--gold) 0%, var(--gold-subtle) 100%); }

/* Alert List */
.dash-alert-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dash-alert {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    padding: 8px 12px;
    background: var(--surface-card);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.dash-alert__time {
    font-size: 0.68rem;
    color: var(--text-dim);
    margin-left: auto;
    white-space: nowrap;
}

/* Status Grid */
.dash-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 6px;
}

.dash-status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: var(--surface-card);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
}


/* ======================================
   TIMELINE / DEPLOYMENT PHASES - Dramatic
   ====================================== */

.timeline {
    position: relative;
    padding-left: var(--sp-3xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--teal), var(--teal-muted), var(--gold));
}

.timeline__item {
    position: relative;
    padding-bottom: var(--sp-3xl);
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: calc(-1 * var(--sp-3xl) + 6px);
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid var(--navy-deep);
    z-index: 1;
    box-shadow: 0 0 20px rgba(30, 127, 122, 0.2);
}

.timeline__dot--gold {
    background: var(--gold);
    box-shadow: 0 0 20px rgba(184, 149, 94, 0.2);
}

.timeline__phase {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--teal-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--sp-sm);
}

.timeline__title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: var(--sp-md);
}

.timeline__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--sp-md);
    max-width: 600px;
}

.timeline__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
}

.timeline__tag {
    padding: 4px 14px;
    background: var(--surface-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    font-size: 0.73rem;
    color: var(--text-secondary);
}


/* ======================================
   PROCESS STEPS
   ====================================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--sp-md);
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--teal-muted), var(--gold));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 auto var(--sp-md);
    box-shadow: 0 0 30px rgba(30, 127, 122, 0.25),
                inset 0 1px 0 rgba(255,255,255,0.1);
}

.process-step__num--gold {
    background: var(--gold);
    box-shadow: 0 0 30px rgba(184, 149, 94, 0.25),
                inset 0 1px 0 rgba(255,255,255,0.1);
}

.process-step__title {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: var(--sp-sm);
    font-weight: 600;
}

.process-step__desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--sp-xl);
    }
    .process-steps::before { display: none; }
}


/* ======================================
   PILLAR CARDS - Premium Image-Ready
   ====================================== */

.pillar-card {
    background: var(--grad-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: var(--sp-2xl) var(--sp-xl) var(--sp-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.45s ease,
                box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--shadow-sm), var(--shadow-inset);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.pillar-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--grad-glass);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.pillar-card--teal::before { background: var(--grad-teal); }
.pillar-card--gold::before { background: var(--grad-gold); }

.pillar-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-card-hover);
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-lg);
    color: var(--text-white);
}

.pillar-card__icon svg {
    width: 26px;
    height: 26px;
}

.pillar-card__icon--teal {
    background: linear-gradient(135deg, #175E5A, #1E7F7A);
    box-shadow: 0 4px 24px rgba(30, 127, 122, 0.25),
                inset 0 1px 0 rgba(255,255,255,0.1);
}

.pillar-card__icon--gold {
    background: linear-gradient(135deg, #917548, #B8955E);
    box-shadow: 0 4px 24px rgba(184, 149, 94, 0.2),
                inset 0 1px 0 rgba(255,255,255,0.1);
}

.pillar-card h3 {
    margin-bottom: var(--sp-md);
}

.pillar-card__list {
    text-align: left;
    margin-top: var(--sp-lg);
}

.pillar-card__list li {
    padding: var(--sp-sm) 0;
    padding-left: var(--sp-xl);
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.pillar-card__list li:last-child {
    border-bottom: none;
}

.pillar-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-muted);
}


/* ======================================
   CONTACT FORM - Luxury
   ====================================== */

.contact-form {
    background: var(--grad-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: var(--sp-3xl) var(--sp-2xl);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-teal);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
}

@media (max-width: 640px) {
    .contact-form__grid {
        grid-template-columns: 1fr;
    }
}

.contact-form__full {
    grid-column: 1 / -1;
}

.contact-success {
    display: none;
    text-align: center;
    padding: var(--sp-3xl);
}

.contact-success.active {
    display: block;
}

.contact-success__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #175E5A, #1E7F7A);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-lg);
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 8px 30px rgba(30, 127, 122, 0.2);
}


/* ======================================
   FAQ - Refined
   ====================================== */

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--sp-lg) 0;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    padding: var(--sp-sm) 0;
    transition: color var(--duration-fast) ease;
}

.faq-item__question:hover {
    color: var(--teal-light);
}

.faq-item__icon {
    font-size: 1.2rem;
    color: var(--teal);
    transition: transform var(--duration-normal) ease;
    flex-shrink: 0;
}

.faq-item--open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-item--open .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: var(--sp-sm) 0 var(--sp-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ======================================
   GOVERNANCE STRIP
   ====================================== */

.gov-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
    padding: var(--sp-2xl) 0;
}

.gov-strip__item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-md);
}

.gov-strip__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(30, 127, 122, 0.06);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
}

.gov-strip__icon svg {
    width: 18px;
    height: 18px;
}

.gov-strip__text h4 {
    font-size: 0.9rem;
    margin-bottom: var(--sp-xs);
}

.gov-strip__text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .gov-strip { grid-template-columns: 1fr; }
}


/* ======================================
   COUNTERS
   ====================================== */

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-lg);
    text-align: center;
}

.counter-item__value {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--teal-light);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--sp-sm);
    text-shadow: 0 0 30px rgba(30, 127, 122, 0.15);
}

.counter-item__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ======================================
   IMAGE-LED SECTION BLOCKS
   ====================================== */

.cinematic-strip {
    position: relative;
    padding: var(--sp-5xl) 0;
    overflow: hidden;
}

.cinematic-strip__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cinematic-strip__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.76;
    transition: opacity 1.2s ease;
    filter: saturate(1.08) brightness(1.12) contrast(1.15);
}

.cinematic-strip__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,12,24,0.62) 0%, rgba(7,17,31,0.12) 50%, rgba(5,12,24,0.64) 100%);
}

.cinematic-strip > .container {
    position: relative;
    z-index: 1;
}

/* Ambient section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-line), transparent);
    margin: 0;
}

/* Contact side panel */
.contact-side-panel {
    background: linear-gradient(160deg, var(--surface-card) 0%, var(--surface-dark) 100%);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 360px;
    position: relative;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
}

.contact-side-panel__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--surface-card) 0%, var(--surface-dark) 50%, var(--surface-card) 100%);
}

.contact-side-panel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,12,24,0.4) 0%, rgba(5,12,24,0.7) 100%);
    z-index: 1;
}

.contact-side-panel__content {
    position: relative;
    z-index: 2;
    padding: var(--sp-2xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}


/* ======================================
   CTA BANNER - Cinematic Upgrade
   ====================================== */

.cta-banner--cinematic {
    padding: var(--sp-6xl) 0;
    background: var(--navy-deepest);
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-banner__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transition: opacity 1.2s ease;
    filter: saturate(1.08) brightness(1.14) contrast(1.16);
}

.cta-banner__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(5,12,24,0.65) 0%,
        rgba(7,17,31,0.10) 35%,
        rgba(5,12,24,0.16) 65%,
        rgba(5,12,24,0.68) 100%);
}

.cta-banner--cinematic .container {
    position: relative;
    z-index: 1;
}


/* ======================================
   ATMOSPHERE PANEL - Full-width image section
   ====================================== */

.atmosphere-panel {
    position: relative;
    padding: var(--sp-6xl) 0;
    overflow: hidden;
}

.atmosphere-panel__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.atmosphere-panel__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: opacity 1.2s ease;
    filter: saturate(1.08) brightness(1.14) contrast(1.16);
}

.atmosphere-panel__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(5,12,24,0.60) 0%,
        rgba(7,17,31,0.10) 30%,
        rgba(5,12,24,0.10) 70%,
        rgba(5,12,24,0.62) 100%);
}

.atmosphere-panel > .container {
    position: relative;
    z-index: 1;
}

.atmosphere-panel__quote {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.atmosphere-panel__quote p {
    font-family: var(--font-light);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    color: var(--text-primary);
    line-height: 1.85;
    max-width: 100%;
    font-style: italic;
}

.atmosphere-panel__quote .atmosphere-panel__source {
    display: block;
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: var(--sp-xl);
    font-style: normal;
}


/* ======================================
   SECTION TRANSITION LINES
   ====================================== */

.section-glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--teal-muted) 25%, var(--teal) 40%, var(--teal-light) 50%, var(--teal) 60%, var(--teal-muted) 75%, transparent 95%);
    opacity: 0.35;
}

.section-glow-line--gold {
    background: linear-gradient(90deg, transparent 5%, var(--gold-subtle) 25%, var(--gold) 40%, var(--gold-light) 50%, var(--gold) 60%, var(--gold-subtle) 75%, transparent 95%);
    opacity: 0.3;
}


/* ======================================
   FOOTER - Enhanced Luxury
   ====================================== */

.footer--luxury {
    border-top: none;
    position: relative;
}

.footer--luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--teal-muted) 25%, var(--gold-subtle) 50%, var(--teal-muted) 75%, transparent 95%);
    opacity: 0.5;
}

.footer__brand-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-lg);
    background: transparent;
    filter: drop-shadow(0 0 14px rgba(30, 127, 122, 0.3));
    transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__brand-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer__brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
