:root {
    /* Color Palette - Premium Corporate Legal Tech */
    --bg-base: #030712;         /* Pitch Slate Dark */
    --bg-surface: #0e1629;      /* Sleek Semi-Dark Steel */
    --bg-surface-glass: rgba(15, 23, 42, 0.65); /* Glassmorphic Base */
    --primary-color: #0b0f19;   /* Main Brand Depth */
    --secondary-color: #111827; /* Rich Slate Secondary */
    
    /* Accents - High Tech Credibility */
    --cyan-neon: #06b6d4;       /* Neon Cyber Cyan */
    --cyan-glow: rgba(6, 182, 212, 0.25);
    --gold-soft: #dfc19c;       /* Champagne Gold */
    --gold-dark: #c5a880;
    --gold-glow: rgba(223, 193, 156, 0.15);
    
    /* Success & Warnings */
    --success-color: #10b981;   /* Emerald Tech Green */
    --success-hover: #059669;
    --success-glow: rgba(16, 185, 129, 0.35);
    --danger: #ef4444;          /* Cyber Alert Red */
    --danger-bg: rgba(239, 68, 68, 0.08);
    --danger-border: rgba(239, 68, 68, 0.25);
    
    /* Typography Colors */
    --text-main: #cbd5e1;       /* Cool Grey Text */
    --text-light: #94a3b8;      /* Slate Grey Muted */
    --text-white: #f8fafc;      /* Pure Silver White */
    
    /* Global Styles */
    --font-title: 'Outfit', 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Borders */
    --border-light: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(6, 182, 212, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 255, 255, 0.05);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(6, 182, 212, 0.1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-base);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

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

ul {
    list-style: none;
}

/* Base Animations */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-emerald {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    50% { transform: scale(1.015); box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pulse {
    animation: pulse-emerald 2.2s infinite;
}

/* Premium Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-hover) 100%);
    color: var(--text-white);
    padding: 18px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px var(--success-glow);
    cursor: pointer;
    width: 100%;
    max-width: 500px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-primary i {
    margin-right: 12px;
    font-size: 1.25rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.5), 0 0 15px rgba(255, 255, 255, 0.2);
    filter: brightness(1.05);
}

/* Floating WA Button - Premium Design */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-hover) 100%);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
    animation: pulse-emerald 2.5s infinite;
}

.floating-wa:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
}

/* Premium Typography Layout */
.section-title {
    font-family: var(--font-title);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.01em;
    display: block;
    max-width: 100%;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    
    /* Glassmorphic Cyber Capsule Background */
    padding: 14px 36px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 1px solid rgba(6, 182, 212, 0.18);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 48px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

/* High-Tech Live Status Alert Bar */
.countdown-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(26, 6, 10, 0.97) 0%, rgba(92, 16, 28, 0.97) 50%, rgba(26, 6, 10, 0.97) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-white);
    padding: 10px 0;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1100;
    border-bottom: 2px solid rgba(185, 28, 28, 0.45);
    box-shadow: 0 4px 20px rgba(185, 28, 28, 0.15);
}

.countdown-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.countdown-bar p {
    margin: 0;
    color: #e2e8f0;
}

.countdown-bar p i {
    color: var(--danger);
    margin-right: 8px;
}

.countdown-bar span#timer {
    color: var(--gold-soft);
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    margin-left: 4px;
}

.live-users {
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--cyan-neon);
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.pulsing-dot {
    width: 7px;
    height: 7px;
    background-color: var(--cyan-neon);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.8); }
    70% { transform: scale(1.1); opacity: 0.6; box-shadow: 0 0 0 6px rgba(6, 182, 212, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

/* Premium Navigation Bar */
.navbar {
    position: absolute;
    top: 48px; /* Offset for live alert bar */
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 10;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-title);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.76rem;
    color: var(--gold-soft);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 500;
}

.btn-outline {
    display: inline-block;
    padding: 11px 22px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.btn-outline i {
    color: var(--success-color);
    margin-right: 8px;
}

.btn-outline:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: var(--success-color);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
    transform: translateY(-1px);
}

/* Premium Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-base);
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    padding: 160px 0 110px 0; /* Padding for navbar */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(15, 23, 42, 0.6) 0%, rgba(3, 7, 18, 0.95) 85%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.super-headline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.06);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--cyan-neon);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.super-headline i {
    font-size: 0.9rem;
}

.headline {
    font-family: var(--font-title);
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-white);
    letter-spacing: -0.02em;
    display: block;
    max-width: 100%;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    
    /* Premium Gold Plate Background */
    padding: 20px 44px;
    background: linear-gradient(135deg, rgba(223, 193, 156, 0.03) 0%, rgba(223, 193, 156, 0.07) 100%);
    border: 1px solid rgba(223, 193, 156, 0.16);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.subheadline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: justify;
    text-align-last: left;
    line-height: 1.75;
}

.subheadline strong {
    color: var(--text-white);
    font-weight: 600;
    border-bottom: 1px dashed rgba(223, 193, 156, 0.4);
}

.micro-text {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.micro-text i {
    color: var(--cyan-neon);
}

/* Premium Legal Tech Video Player Widget */
.video-container {
    width: 100%;
    max-width: 740px;
    align-self: stretch;
    margin: 10px auto 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background: #020617;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Sections General Design */
.section {
    padding: 96px 0;
    position: relative;
}

/* Dor Section - Premium Dashboard Widget Style */
.pain-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.card {
    background: rgba(17, 24, 39, 0.45);
    padding: 36px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 10px rgba(6, 182, 212, 0.08);
}

.card-icon {
    font-size: 2.1rem;
    color: var(--cyan-neon);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 8px;
}

.card h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.card:hover h3 {
    color: var(--cyan-neon);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Premium Notification banner instead of raw red alert box */
.alert-box {
    background-color: var(--danger-bg);
    border: 1px solid var(--danger-border);
    padding: 22px 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.alert-box p {
    font-size: 1.05rem;
    color: #fca5a5;
    margin: 0;
}

.alert-box p i {
    color: var(--danger);
    margin-right: 10px;
}

.alert-box p strong {
    color: var(--text-white);
}

/* Solution Section - Technological Design */
.solution-section {
    background-color: var(--bg-base);
}

.solution-section .section-title {
    color: var(--text-white);
}

.content-box {
    background: rgba(11, 15, 25, 0.55);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 36px;
    border-radius: 12px;
    margin-bottom: 48px;
    font-size: 1.1rem;
    line-height: 1.75;
    text-align: justify;
    text-align-last: left;
}

.content-box p {
    margin-bottom: 16px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.highlight-red {
    color: #fca5a5;
    font-weight: 600;
    border-bottom: 1px dashed rgba(239, 68, 68, 0.4);
}

/* Benefits Checklist - Premium System Look */
.benefits-wrapper {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
}

.benefits-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    color: var(--gold-soft);
    margin-bottom: 32px;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.01em;
    display: block;
    max-width: 100%;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    
    /* Subtle Gold Capsule */
    padding: 12px 32px;
    background: linear-gradient(135deg, rgba(223, 193, 156, 0.02) 0%, rgba(223, 193, 156, 0.06) 100%);
    border: 1px solid rgba(223, 193, 156, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.02rem;
    padding: 16px 20px;
    background-color: rgba(3, 7, 18, 0.4);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.benefits-list li:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
}

/* Highlighted last item in checklist */
.benefits-list li:last-child {
    grid-column: 1 / -1;
    background-color: rgba(6, 182, 212, 0.04);
    border: 1px dashed rgba(6, 182, 212, 0.3);
    align-items: center;
}

.benefits-list i {
    color: var(--cyan-neon);
    font-size: 1.25rem;
    margin-top: 2px;
}

/* High-End Symmetrical CTA Banner */
.cta-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 72px 0;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(11, 15, 25, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 44px 48px;
    border-radius: 12px;
    gap: 40px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-md);
}

.cta-icon {
    font-size: 2.8rem;
    color: var(--gold-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(223, 193, 156, 0.05);
    border: 1px solid rgba(223, 193, 156, 0.15);
    border-radius: 10px;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-family: var(--font-title);
    font-size: 1.45rem;
    margin-bottom: 8px;
    color: var(--gold-soft);
    font-weight: 600;
}

.cta-text p {
    color: var(--text-light);
    font-size: 0.98rem;
}

.cta-action {
    flex-shrink: 0;
}

/* Timeline Process - Legal Tech Style */
.process-section {
    background-color: var(--bg-base);
}

.timeline {
    position: relative;
    max-width: 840px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0) 0%, rgba(6, 182, 212, 0.3) 15%, rgba(6, 182, 212, 0.3) 85%, rgba(6, 182, 212, 0) 100%);
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 56px;
    height: 56px;
    background-color: #0b1329;
    color: var(--cyan-neon);
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px var(--bg-surface), 0 0 15px rgba(6, 182, 212, 0.2);
    font-family: var(--font-title);
}

.timeline-content {
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid var(--border-light);
    padding: 26px 30px;
    border-radius: 8px;
    flex: 1;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s ease;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(6, 182, 212, 0.25);
}

.timeline-content h3 {
    font-family: var(--font-title);
    color: var(--text-white);
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h3 {
    color: var(--gold-soft);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Premium FAQ Accordion Design */
.faq-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-light);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(11, 15, 25, 0.5);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.accordion-header i {
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--text-light);
    font-size: 0.95rem;
}

.accordion-header.active {
    border-left: 2px solid var(--cyan-neon);
}

.accordion-header.active i {
    transform: rotate(180deg);
    color: var(--cyan-neon);
}

.accordion-content {
    padding: 0 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(3, 7, 18, 0.25);
}

.accordion-content p {
    padding-bottom: 22px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-cta-margin {
    margin-top: 48px;
}

/* Anti-sell Section - Symmetrical Premium Warning Ticker */
.anti-sell-section {
    background-color: var(--bg-base);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.anti-sell-box {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    background-color: rgba(239, 68, 68, 0.02);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-left: 3px solid var(--danger);
    padding: 40px;
    border-radius: 8px;
    max-width: 840px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.anti-sell-icon {
    font-size: 2.8rem;
    color: var(--danger);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: 8px;
}

.anti-sell-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    color: #fca5a5;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.anti-sell-content p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.anti-sell-content p strong {
    color: var(--text-white);
}

.anti-sell-content p:last-child {
    margin-bottom: 0;
}

/* Footer Symmetrical & Premium System Details */
.footer {
    background-color: #02040a;
    color: var(--text-light);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 32px;
}

.footer-brand h3 {
    color: var(--text-white);
    font-family: var(--font-title);
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.oab-text {
    color: var(--gold-soft);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-contact p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-size: 0.92rem;
}

.footer-contact p i {
    color: var(--cyan-neon);
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.82rem;
    max-width: 900px;
    margin: 0 auto;
}

.footer-copyright {
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-compliance {
    font-size: 0.72rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Symmetrical Responsive Layout Overrides */
@media (max-width: 768px) {
    .headline {
        font-size: 1.55rem;
        line-height: 1.35;
        padding: 14px 20px;
        border-radius: 16px;
    }
    
    .section-title {
        font-size: 1.3rem;
        padding: 10px 20px;
        border-radius: 30px;
    }

    .benefits-title {
        font-size: 1.15rem;
        padding: 8px 18px;
        border-radius: 20px;
    }
    
    .navbar-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero {
        padding: 210px 0 64px 0; /* Add extra spacing for stacked header on mobile */
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(3, 7, 18, 0.85) 0%, rgba(3, 7, 18, 0.98) 100%);
    }

    .countdown-container {
        gap: 8px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .navbar {
        top: 92px; /* Adjusted height for mobile ticker */
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
    
    .cta-action {
        width: 100%;
    }
    
    .cta-action .btn-primary {
        width: 100%;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 18px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-number {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
        position: absolute;
        left: 0;
        box-shadow: 0 0 0 4px var(--bg-surface);
    }
    
    .timeline-content {
        margin-left: 48px;
        padding: 20px 24px;
    }

    .anti-sell-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        gap: 20px;
        align-items: center;
    }

    .video-container {
        margin: 5px auto 30px auto;
    }
}
