/* ========================================
   CSS VARIABLES — MAXIGHT Brand Tokens
   ======================================== */
:root {
    /* Brand Colors */
    --midnight: #0B1426;
    --charcoal: #1A1A2E;
    --copper: #C4793B;
    --amber: #D49A5C;
    --green: #A9C23C;
    --green-dark: #8FA832;
    --red: #DB1215;
    --red-focus: #D53A3D;
    --mint: #E8F5E9;
    --sage: #D4EDDA;

    /* Neutrals */
    --white: #FFFFFF;
    --black: #000000;
    --gray-text: #868686;
    --gray-light: #F2F2F2;
    --gray-border: #EBEBEB;

    /* Status */
    --success-bg: #E8F0E9;
    --success-text: #428441;
    --warning-bg: #FBF6EA;
    --warning-text: #E0B252;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.4rem;
    --space-sm: 0.8rem;
    --space-md: 1.6rem;
    --space-lg: 2.4rem;
    --space-xl: 4.0rem;
    --space-2xl: 6.0rem;
    --space-3xl: 8.0rem;

    /* Border Radius */
    --radius-sm: 0.3rem;
    --radius-base: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-base: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 40px rgba(196,121,59,0.2), 0 0 80px rgba(196,121,59,0.1);

    /* Transitions */
    --transition-fast: all 0.15s ease-in-out;
    --transition-base: all 0.25s ease-in-out;
    --transition-slow: all 0.4s ease-in-out;
    --transition-image: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    z-index: 1000;
    height: 7.2rem;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-brand img {
    height: 40px;
    width: auto;
}

/* ========================================
   CONTAINER & GRID
   ======================================== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

/* ========================================
   HERO — Dark Immersive
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--charcoal) 50%, var(--midnight) 100%);
    color: var(--white);
    padding: 12rem 0 10rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse at center, rgba(196,121,59,0.12) 0%, rgba(196,121,59,0.04) 40%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(169,194,60,0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(0) translateX(0); }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-250px) translateX(40px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--copper);
    margin-bottom: 2.4rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title em {
    font-style: italic;
    color: var(--green);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: rgba(255,255,255,0.75);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--copper), var(--amber));
    margin: 2.4rem auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--copper);
    line-height: 1;
}

.hero-stat-label {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.4rem;
    letter-spacing: 0.03em;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(219,18,21,0.15);
    border: 1px solid rgba(219,18,21,0.4);
    color: var(--white);
    padding: 1rem 2.4rem;
    border-radius: var(--radius-full);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-top: 3rem;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(219,18,21,0.3); }
    50% { box-shadow: 0 0 0 12px rgba(219,18,21,0); }
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--red);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 8rem 0; }
.section-sm { padding: 5rem 0; }

.section-dark {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--charcoal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(196,121,59,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-mint {
    background: linear-gradient(180deg, var(--white) 0%, var(--mint) 8%, var(--mint) 92%, var(--white) 100%);
}

.section-header {
    margin-bottom: 5rem;
    text-align: center;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--copper);
    margin-bottom: 1.2rem;
    display: block;
}

.section-dark .section-eyebrow { color: var(--amber); }

.section-title {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    font-size: 1.6rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.8rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    transition: var(--transition-slow);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background-color: var(--black);
    border-color: var(--black);
}

.btn-secondary {
    background-color: transparent;
    color: var(--red);
    border-color: var(--red);
}
.btn-secondary:hover {
    background-color: var(--red);
    color: var(--white);
}

.btn-ghost {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-ghost:hover {
    background-color: var(--white);
    color: var(--midnight);
}

.btn-copper {
    background-color: transparent;
    color: var(--copper);
    border-color: var(--copper);
}
.btn-copper:hover {
    background-color: var(--copper);
    color: var(--white);
}

.btn-green {
    background-color: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-green:hover {
    background-color: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-lg {
    padding: 1.6rem 4rem;
    font-size: 1.5rem;
}

.btn-hero {
    padding: 1.8rem 4.8rem;
    font-size: 1.6rem;
    border-radius: var(--radius-sm);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

/* ========================================
   TWO-COLUMN LAYOUT
   ======================================== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.split-image {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-image);
}

.split-image:hover img {
    transform: scale(1.04);
}

.split-content {
    padding: 4rem 5rem;
}

.split-content h2 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.6rem;
}

.split-content p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #222;
    margin-bottom: 1.6rem;
}

.split-content p strong {
    color: var(--black);
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* ========================================
   FEATURE CARDS
   ======================================== */
.feature-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-base);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.feature-card-image-bg {
    width: 100%;
    height: 100%;
    transition: var(--transition-image);
}

.feature-card:hover .feature-card-image-bg {
    transform: scale(1.08);
}

.feature-card-icon {
    position: absolute;
    bottom: -24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.feature-card-body {
    padding: 3.6rem 2.4rem 2.4rem;
}

.feature-card-title {
    font-family: var(--font-body);
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.feature-card-text {
    font-size: 1.4rem;
    color: #222;
    line-height: 1.6;
}

/* ========================================
   STEP CARDS
   ======================================== */
.step-card {
    position: relative;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 3.2rem 2.8rem;
    box-shadow: var(--shadow-base);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--copper);
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--midnight), var(--charcoal));
    color: var(--copper);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.step-card p {
    font-size: 1.4rem;
    color: #222;
    line-height: 1.6;
}

/* ========================================
   TESTIMONIAL CARDS
   ======================================== */
.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 3.2rem;
    box-shadow: var(--shadow-base);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.2rem;
    left: 2.4rem;
    font-family: var(--font-display);
    font-size: 7rem;
    color: var(--copper);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: #222;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper), var(--amber));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.4rem;
}

.testimonial-role {
    font-size: 1.2rem;
    color: var(--gray-text);
}

/* ========================================
   SOCIAL PROOF MARQUEE
   ======================================== */
.social-proof-section {
    background: var(--midnight);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.social-proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--midnight), transparent);
    z-index: 2;
    pointer-events: none;
}

.social-proof-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--midnight), transparent);
    z-index: 2;
    pointer-events: none;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.social-proof-header .section-eyebrow {
    color: var(--copper);
}

.social-proof-header .section-title {
    color: var(--white);
}

.social-proof-header .section-subtitle {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    font-size: 1.6rem;
    margin-top: 1rem;
}

.marquee-container {
    position: relative;
}

.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--midnight), transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--midnight), transparent);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 60s linear infinite;
    width: max-content;
}

.marquee-track.reverse {
    animation: marqueeScrollReverse 55s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-row {
    margin-bottom: 2rem;
}

.marquee-item {
    flex-shrink: 0;
    width: 380px;
    height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.marquee-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 48px rgba(196,121,59,0.3);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marquee-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11,20,38,0.95) 0%,
        rgba(11,20,38,0.80) 35%,
        rgba(11,20,38,0.40) 60%,
        rgba(11,20,38,0.15) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 2.2rem;
}

.marquee-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.marquee-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.marquee-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper), var(--amber));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.marquee-author-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
}

.marquee-author-role {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
}

.marquee-hearts {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #ff4757;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.marquee-hearts svg {
    width: 18px;
    height: 18px;
    fill: #ff4757;
}

.social-proof-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 3;
}

.sp-stat {
    text-align: center;
}

.sp-stat-number {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--copper);
    line-height: 1;
}

.sp-stat-label {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {
    .marquee-item {
        width: 280px;
        height: 250px;
    }

    .social-proof-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .sp-stat-number {
        font-size: 2.8rem;
    }
}

/* ========================================
   PRICING TABLE
   ======================================== */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-table thead th {
    background: linear-gradient(135deg, var(--midnight), var(--charcoal));
    color: var(--white);
    padding: 1.6rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: left;
}

.pricing-table thead th:first-child {
    border-top-left-radius: var(--radius-lg);
}

.pricing-table thead th:last-child {
    border-top-right-radius: var(--radius-lg);
}

.pricing-table tbody td {
    padding: 1.6rem 2rem;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--gray-border);
    vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:nth-child(even) {
    background-color: rgba(232,245,233,0.3);
}

.pricing-table .price {
    font-weight: 700;
    color: var(--red);
    font-size: 1.6rem;
}

.pricing-table .price-monthly {
    font-size: 1.3rem;
    color: var(--gray-text);
}

.pricing-table .product-name {
    font-weight: 700;
}

.pricing-table .product-desc {
    font-size: 1.3rem;
    color: var(--gray-text);
    display: block;
    margin-top: 0.2rem;
}

/* ========================================
   BENEFIT CHECKLIST
   ======================================== */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--gray-border);
}

.benefit-item:last-child { border-bottom: none; }

.benefit-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

.benefit-text {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #222;
}

.benefit-text strong {
    color: var(--black);
}

/* ========================================
   WHO SHOULD APPLY CARDS
   ======================================== */
.criteria-card {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 2.4rem;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-base);
    transition: transform 0.25s ease;
}

.criteria-card:hover {
    transform: translateY(-3px);
}

.criteria-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-base);
    background-color: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.criteria-text {
    font-size: 1.5rem;
    color: #222;
    line-height: 1.6;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-item {
    border-bottom: 1px solid var(--gray-border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover { color: var(--copper); }

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    font-size: 1.6rem;
    color: var(--gray-text);
}

.faq-item.active .faq-toggle {
    background-color: var(--copper);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 2rem;
}

.faq-answer p {
    font-size: 1.5rem;
    color: #222;
    line-height: 1.7;
}

/* ========================================
   URGENCY BANNER
   ======================================== */
.urgency-bar {
    background: linear-gradient(90deg, var(--red) 0%, #c41015 100%);
    color: var(--white);
    padding: 1.2rem 0;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.urgency-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* ========================================
   SCIENCE LAYER CARDS (Dark bg)
   ======================================== */
.layer-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 3.2rem;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.layer-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(196,121,59,0.3);
    transform: translateY(-4px);
}

.layer-card-icon {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
    display: block;
}

.layer-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.layer-card p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ========================================
   DEPOSIT TABLE (Compact)
   ======================================== */
.deposit-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-base);
    margin: 2rem 0;
}

.deposit-table th {
    background-color: var(--midnight);
    color: var(--white);
    padding: 1.2rem 1.6rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: left;
}

.deposit-table td {
    padding: 1.4rem 1.6rem;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--gray-border);
    background-color: var(--white);
}

.deposit-table tr:last-child td { border-bottom: none; }

.deposit-tag {
    display: inline-block;
    background-color: var(--success-bg);
    color: var(--success-text);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========================================
   PROMISE BOX
   ======================================== */
.promise-box {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--charcoal) 100%);
    border-radius: var(--radius-xl);
    padding: 4rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(196,121,59,0.2);
}

.promise-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196,121,59,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.promise-box h3 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.promise-box p {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ========================================
   STAT HIGHLIGHT
   ======================================== */
.stat-highlight {
    text-align: center;
    padding: 2rem;
}

.stat-highlight-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-highlight-label {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.6);
}

.text-copper { color: var(--copper); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }

/* ========================================
   CONTACT CARDS
   ======================================== */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 2rem 2.4rem;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-base);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.contact-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.contact-card-label {
    font-size: 1.2rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.contact-card-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-top: 0.2rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--white);
    color: var(--black);
    padding: 5rem 0 3rem;
    position: relative;
    border-top: 1px solid var(--gray-border);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--copper), var(--amber));
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 1.6rem;
}

.footer-brand p {
    font-size: 1.4rem;
    color: var(--gray-text);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.6rem;
    color: var(--black);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    font-size: 1.3rem;
    color: var(--gray-text);
    transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--copper); }

.footer-newsletter-input {
    display: flex;
    gap: 0;
    margin-top: 0.8rem;
}

.footer-newsletter-input input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 1.3rem;
}

.footer-newsletter-input input::placeholder {
    color: #aaa;
}

.footer-newsletter-input button {
    padding: 0.8rem 1.6rem;
    background-color: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--transition-base);
}

.footer-newsletter-input button:hover {
    background-color: var(--black);
    border-color: var(--black);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 1.2rem;
    color: var(--gray-text);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 1.2rem;
    color: var(--gray-text);
    transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--copper); }

.footer-payments {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-payments span {
    font-size: 1.1rem;
    color: #aaa;
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--gray-border);
    border-radius: 3px;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1150px) {
    .hero { padding: 8rem 0 6rem; min-height: 70vh; }
    .hero-title { font-size: 4.4rem; }
    .split { grid-template-columns: 1fr; }
    .split-content { padding: 3rem 0; }
    .split-reverse { direction: ltr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    html { font-size: 9px; }

    .hero { padding: 6rem 0 5rem; min-height: auto; }
    .hero-title { font-size: 3.4rem; }
    .hero-subtitle { font-size: 1.8rem; }
    .hero-stats { gap: 2rem; }
    .hero-stat-number { font-size: 3rem; }

    .container, .container-narrow { padding: 0 1.5rem; }

    .section { padding: 5rem 0; }
    .section-title { font-size: 2.8rem; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    .split { grid-template-columns: 1fr; }
    .split-content { padding: 2rem 0; }
    .split-reverse { direction: ltr; }

    .pricing-table { font-size: 1.3rem; }
    .pricing-table thead th { padding: 1rem; font-size: 1.1rem; }
    .pricing-table tbody td { padding: 1rem; }

    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
