:root {
    --primary: #10B981; /* Emerald Green */
    --primary-dark: #059669;
    --primary-glow: rgba(16, 185, 129, 0.4);
    --secondary: #F59E0B; /* Amber/Gold */
    --royal-blue: #4169E1; /* Royal Blue */
    --danger: #EF4444; /* Urgent Red */
    --dark: #0a192f; /* Premium Petroleum Blue */
    --dark-lighter: #112240;
    --text: #e6f1ff;
    --text-muted: #8892b0;
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --chrome-gradient: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 40%, #D0D0D0 60%, #808080 100%);
}

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

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Urgency Top Bar */
.urgency-bar {
    background: var(--royal-blue);
    padding: 12px 0;
    width: 100%;
    z-index: 2000;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.5s ease;
}

.urgency-bar.exhausted {
    background: var(--danger);
}

@keyframes urgency-glow {
    0% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.02); filter: brightness(1.2); box-shadow: 0 0 20px rgba(65, 105, 225, 0.5); }
    100% { transform: scale(1); filter: brightness(1); }
}

.urgency-active {
    animation: urgency-glow 1s ease-out forwards;
}

/* Elite Background & Texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAApb3P0AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAnUExURf///8nJyez s7O7u7vLy8vX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wvYyOAAAAOnpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQwIDc5LjE2MDQ1MSwgMjAxNy8wNS8wNi0wMTowODoyMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0I0MUM0RjZENzg0MTFFN0ExRjBEOEE0RjY0RjY0RjYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0I0MUM0RjZENTg0MTFFN0ExRjBEOEE0RjY0RjY0RjYiIHhtcHA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE3IChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Q0I0MUM0RjRENzg0MTFFN0ExRjBEOEE0RjY0RjY0RjYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Q0I0MUM0RjVENTg0MTFFN0ExRjBEOEE0RjY0RjY0RjYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InciPz4A6U8kAAAAnElEQVQ4y2NgwAHY8HAY8GFiYHJiIDJgYGBitGFgYmJiZGNitGVgZGJitGFgZGRiZGNidGVgZGRidGFidGVgZGRidGFidGVgZGRidGEidGVgZGRidGEidGVgZGRidGEidGVgZGRidGEidGVgZGRidGEidGVgZGRidGEidGVgZGRidGEidGVgZGRidGEi9WUiAQArzQ9tO35F2wAAAABJRU5ErkJggg==");
    opacity: 0.05;
    pointer-events: none;
    z-index: 10000;
}

.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #060e1b; /* Base dark petroleum */
    overflow: hidden;
    pointer-events: none;
}

.bg-glow-1 {
    position: absolute;
    width: 80vw;
    height: 80vw;
    top: -40vw;
    left: -40vw;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    filter: blur(120px);
}

.bg-glow-2 {
    position: absolute;
    width: 80vw;
    height: 80vw;
    top: -20vw;
    right: -40vw;
    background: radial-gradient(circle, rgba(110, 231, 183, 0.18) 0%, transparent 65%);
    filter: blur(100px);
}

.bg-glow-3 {
    position: absolute;
    bottom: -20%;
    left: 10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    filter: blur(150px);
}

/* Navbar (Non-fixed, Minimalist) */
.navbar {
    padding: 30px 0;
    background: transparent;
    width: 100%;
    z-index: 1000;
}

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

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a.btn-outline {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 0 20px var(--primary-glow);
    text-transform: uppercase;
}

.nav-links a.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px var(--primary);
}

.chrome-text {
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    display: inline-block;
}

.logo {
    display: flex;
    justify-content: center;
    width: 100%;
}
.logo img {
    height: 65px; 
    width: auto;
}

/* Buttons with Halo Glow */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1.2;
}

.btn .main-text {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn .sub-text {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05), 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary:not(.disabled):hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px var(--primary-glow), 0 15px 35px rgba(16, 185, 129, 0.4);
}

/* Glassmorphism Cards */
.glass-card {
    background: transparent;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
}

/* Trader Bubbles & Live Feed */
.trader-feed-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.trader-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: float-bubble 15s linear infinite;
    opacity: 0;
}

.trader-bubble img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.trader-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.trader-info .name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
}

.trader-info .usage {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

@keyframes float-bubble {
    0% { transform: translateY(100px) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-300px) translateX(50px); opacity: 0; }
}

/* Timeline Section: High Fidelity IQ Option Style */
.timeline-section {
    padding: 120px 0;
    background: transparent;
    overflow: hidden;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.section-title.left {
    text-align: left;
    margin-bottom: 0;
}

.section-title.left h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 600px;
    line-height: 1.1;
}

.official-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    padding: 12px 25px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
}

.badge-icon svg {
    width: 20px;
    fill: white;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-muted);
}

/* Timeline Nav (Line & Dots) */
.timeline-nav-wrapper {
    position: relative;
    padding: 50px 0 70px;
    max-width: 1100px;
    margin: 0 auto;
    --timeline-line-offset: -10px;
}

.timeline-line-bg {
    position: absolute;
    top: calc(50% + var(--timeline-line-offset));
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-line-progress {
    position: absolute;
    top: calc(50% + var(--timeline-line-offset));
    left: 0;
    width: 0%; /* Dynamic */
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary));
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.timeline-dots {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.dot {
    position: relative;
    width: 18px;
    height: 18px;
    background: #334155;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1);
}

.dot.active::before,
.dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: radar-pulse 2s ease-out infinite;
}

.dot.active::after {
    animation-delay: 1s;
}

@keyframes radar-pulse {
    0% { width: 18px; height: 18px; opacity: 0.8; }
    100% { width: 50px; height: 50px; opacity: 0; }
}

.dot span {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}

.dot.active span {
    color: white;
    transform: translateX(-50%) translateY(-5px);
}

/* Timeline Content Carousel */
.timeline-carousel-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.timeline-carousel-viewport {
    flex: 1;
    overflow: hidden;
    padding: 20px 10px;
}

.timeline-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-card {
    min-width: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    opacity: 0.4;
    transform: scale(0.95);
}

.timeline-card.active {
    opacity: 1;
    transform: scale(1);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(16, 185, 129, 0.1);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.year-badge {
    background: var(--dark-lighter);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.stat {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.timeline-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.timeline-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Nav Arrows */
.carousel-nav {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: var(--primary);
}

.carousel-nav svg {
    width: 30px;
    fill: white;
}

/* =====================
   LIFESTYLE SECTION
   IQ Option Reference
===================== */
.lifestyle-section {
    padding: 80px 0 120px;
}

/* Block 1: Big image + bottom gradient testimonial */
.lifestyle-hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 500px;
    background: var(--dark-lighter);
}

.lifestyle-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.8s ease;
    display: block;
}

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

/* Bottom gradient overlay over the image */
.lifestyle-hero-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    pointer-events: none;
}

/* Testimonial row: bottom-left only, not full-width */
.lifestyle-testimonial-card {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: auto;
    max-width: 460px;
    width: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 5;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.testimonial-body p {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    font-weight: 400;
}

.testimonial-body strong {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-body span {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

/* Block 2: Split grid — equal height both sides */
.lifestyle-split {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    grid-template-rows: 940px;
    gap: 24px;
}

/* Left card: same height as image */
.lifestyle-split-text {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 940px;
    box-sizing: border-box;
}

.lifestyle-split-text h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.25;
    color: var(--text);
    margin: 0;
}

/* Small pill button inside the card */
.btn-lifestyle {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
    width: fit-content;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--primary-glow);
    margin-top: 40px;
}

.btn-lifestyle:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px var(--primary);
}

.lifestyle-split-image {
    border-radius: 24px;
    overflow: hidden;
    height: 940px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 12px;
    box-sizing: border-box;
}

.lifestyle-split-image img {
    width: auto;
    max-width: 100%;
    height: calc(100% + 24px);
    object-fit: contain;
    display: block;
    border-radius: 24px;
    transform: translateY(-12px);
}

/* Legacy */
.lifestyle-grid { display: none; }


.card-luxury {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--dark-lighter);
}

.card-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    mix-blend-mode: luminosity;
    opacity: 0.7;
}

.card-luxury:hover img {
    transform: scale(1.1);
    mix-blend-mode: normal;
    opacity: 1;
}

.card-luxury .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    z-index: 5;
}

.card-luxury h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}


/* Nav Button */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 0 20px var(--primary-glow);
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px var(--primary);
}

/* Hero CTA: white border ring */
/* Hero CTA: white opacity halo ring */
.btn-hero-cta {
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.12),
        0 0 0 8px rgba(255, 255, 255, 0.04),
        0 8px 25px rgba(16, 185, 129, 0.3);
    border-radius: 14px;
}

/* Final CTA center */
.final-cta {
    text-align: center;
    padding-top: 40px;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 24px;
}

.btn.disabled {
    background: #475569 !important;
    opacity: 0.5 !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

/* Hero Section */
.hero {
    padding: 20px 0 60px;
    text-align: center;
}

.badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.logo-inline {
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.highlight-chrome {
    background: linear-gradient(135deg, #10B981 0%, #6EE7B7 40%, #10B981 70%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
    display: inline;
}

.highlight {
    color: var(--primary);
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto 50px;
}

/* SEO Content Section */
.seo-content {
    padding: 100px 0;
    background: transparent;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.seo-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--primary);
}

/* Thin Inter version matching timeline title style */
.seo-h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    font-weight: 300 !important;
    letter-spacing: -0.5px;
    line-height: 1.2 !important;
    color: unset !important;
}

.seo-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.seo-text strong {
    color: var(--text);
    font-weight: 600;
}

.seo-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    background: var(--glass);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(10px);
}

.highlight-item h4 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

/* Video: 16:9 widescreen */
.video-container {
    max-width: 950px;
    margin: 0 auto 60px;
}

.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid var(--glass-border);
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.video-wrapper.is-playing {
    background: #000;
    cursor: default;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.play-overlay p {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.play-button svg { width: 45px; fill: white; }

.video-embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: inherit;
}

#youtube-inline-player {
    width: 100%;
    height: 100%;
}

.video-wrapper.is-playing #youtube-inline-player,
.video-wrapper.is-playing .video-embed {
    pointer-events: none;
}

/* Features & Cards */
.features {
    padding: 120px 0;
    background: transparent;
}

.features .container {
    max-width: 1240px;
}

/* Section title font: thin, editorial */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    align-items: stretch;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-image-wrapper {
    position: relative;
    aspect-ratio: 350 / 400;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    line-height: 0;
    background:
      radial-gradient(circle at top left, rgba(16, 185, 129, 0.14), transparent 34%),
      radial-gradient(circle at top right, rgba(65, 105, 225, 0.18), transparent 36%),
      #10203a;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform-origin: center top;
    transition: transform 0.45s ease;
}

.feature-card:nth-child(2) .feature-image {
    transform: scale(1.04);
}

.feature-card:nth-child(3) .feature-image {
    transform: scale(1.05);
}

.feature-image-wrapper .image-overlay {
    display: none;
}

.feature-card h3 { padding: 30px 30px 10px; font-size: 1.8rem; font-weight: 800; }
.feature-card p {
    padding: 0 30px 30px;
    color: var(--text-muted);
    font-size: 1.1rem;
    flex: 1 0 auto;
}

/* FAQ */
.faq { padding: 120px 0; background: transparent; }
.faq-container { max-width: 800px; margin: 0 auto 60px; }
.faq-item { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; margin-bottom: 15px; overflow: hidden; }
.faq-question { padding: 25px 30px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-item.active .faq-answer { padding: 0 30px 25px; max-height: 420px; }
.faq-answer { padding: 0 30px; max-height: 0; overflow: hidden; transition: all 0.3s ease; color: var(--text-muted); line-height: 1.7; }
.faq-closing {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}
.faq-closing p {
    margin: 0;
    font-size: 1.1rem; /* Tamanho menor solicitado */
    font-weight: 700;
    line-height: 1.6;
    background: linear-gradient(180deg, #e6f1ff 0%, #8892b0 100%); /* Cromado que combina com o FAQ */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none; /* Removendo glow verde */
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

.modal-content {
    background: var(--dark-lighter);
    padding: 50px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid var(--glass-border);
    animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

#waitlist-form input {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 17, 31, 0.8);
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#waitlist-form input::placeholder {
    color: var(--text-muted);
    font-weight: 500;
}

#waitlist-form input:focus {
    border-color: rgba(16, 185, 129, 0.7);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.16);
}

#waitlist-form .btn {
    width: 100%;
    margin-top: 8px;
}

.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 32px; cursor: pointer; }

/* Footers & Notifications */
.footer { padding: 80px 0; text-align: center; border-top: 1px solid var(--glass-border); color: var(--text-muted); }
.notification-container { position: fixed; bottom: 30px; left: 30px; z-index: 3000; pointer-events: none; }
.notification-toast { background: var(--dark-lighter); border-left: 5px solid var(--primary); padding: 15px 25px; border-radius: 8px; display: flex; align-items: center; gap: 15px; animation: slideIn 0.5s ease-out forwards; border: 1px solid var(--glass-border); min-width: 300px; }

@keyframes slideIn { from { transform: translateX(-150%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(-150%); opacity: 0; } }

.notification-toast.slide-out {
    animation: slideOut 0.5s ease-in forwards;
}

@media (max-width: 768px) {
    .urgency-bar { font-size: 11px; }
    .hero { padding: 160px 0 60px; }
    h1 { font-size: 2.2rem; }
    .timeline-section {
        padding: 88px 0;
    }
    .timeline-header {
        margin-bottom: 52px;
    }
    .timeline-header .section-title {
        margin-bottom: 0;
    }
    .timeline-header .section-title h2 {
        font-size: clamp(2rem, 8vw, 2.6rem);
        line-height: 1.15;
        max-width: none;
    }
    .timeline-nav-wrapper {
        padding: 26px 6px 58px;
        overflow: visible;
    }
    .timeline-dots {
        gap: 18px;
    }
    .dot span {
        font-size: 12px;
    }
    .timeline-carousel-container {
        position: relative;
        display: block;
        margin-top: 22px;
        padding: 0 52px;
    }
    .timeline-carousel-viewport {
        width: 100%;
        padding: 12px 0 6px;
    }
    .timeline-carousel-track {
        gap: 16px;
    }
    .timeline-card {
        min-width: 100%;
        width: 100%;
        padding: 28px 24px 30px;
        box-sizing: border-box;
    }
    .card-meta {
        align-items: flex-start;
        gap: 12px;
    }
    .stat {
        font-size: 12px;
        line-height: 1.3;
        text-align: right;
    }
    .timeline-card h3 {
        font-size: 2rem;
        line-height: 1.2;
    }
    .timeline-card p {
        font-size: 1rem;
    }
    .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        z-index: 3;
    }
    .carousel-nav.prev {
        left: 0;
    }
    .carousel-nav.next {
        right: 0;
    }
    .modal-content {
        padding: 42px 22px 28px;
    }
    #waitlist-form input {
        min-height: 54px;
        font-size: 0.98rem;
    }
    .lifestyle-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .lifestyle-split-text,
    .lifestyle-split-image {
        height: auto;
    }
    .lifestyle-split-image {
        height: 720px;
        min-height: 720px;
    }
    .lifestyle-split-image img {
        width: auto;
        max-width: 100%;
        height: calc(100% + 24px);
        transform: translateY(-12px);
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= 
   MIX MODE OVERRIDES (Híbrido Dark/Light/Petroleum)
   ========================================= */

/* 1. SEÇÃO SEO: MODO LIGHT EDITORIAL */
.seo-content {
    background-color: #f1f5f9 !important; /* Cinza Gelo Premium */
    color: #0f172a !important;
    padding: 100px 0 !important;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}
.seo-content .seo-h2 { 
    background: linear-gradient(180deg, #4b5563 0%, #000000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800 !important; 
    filter: none !important; /* Removendo qualquer sombra */
}
.seo-content p, .seo-content .subtitle { color: #475569 !important; }
.seo-content strong { color: #0f172a !important; }
.seo-content .highlight-item {
    background: #ffffff !important; /* Cards brancos para destacar no fundo cinza */
    border: 1px solid #ffffff !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    padding: 30px;
    border-radius: 20px;
}
.seo-content .highlight-item h4 { color: #1e293b !important; font-weight: 800; }

/* 2. SEÇÃO TIMELINE: DEEP DARK (Original) */
.timeline-section {
    background: #0a192f !important;
    position: relative;
    z-index: 10;
}

/* 3. SEÇÃO FAQ: AZUL PETRÓLEO PROFUNDO */
.faq {
    background: #0b1e3b !important;
}
.faq .faq-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.faq-question { color: #e6f1ff !important; }
.faq-answer { color: #8892b0 !important; }

/* 4. BOTÕES: TEXTO SEMPRE BRANCO */
.btn, .btn-primary, .btn-nav-cta, .btn-hero-cta, .btn-lifestyle, .footer-cta {
    color: white !important;
}
.btn .main-text, .btn .sub-text { color: white !important; }

/* 5. LOGO: FILTRO PARA VISIBILIDADE NO DARK */
.logo img { filter: none !important; } 

/* ========================================= 
   ESTILO DO MODAL PREMIUM 
   ========================================= */
.modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px);
    display: none; align-items: center; justify-content: center; z-index: 9999;
    padding: 20px;
}

.modal.active { display: flex; animation: fadeIn 0.3s ease; }

.modal-content {
    max-width: 450px; width: 100%; position: relative;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px; border-radius: 24px; text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute; top: 20px; right: 20px; background: none; border: none;
    color: var(--text-muted); font-size: 32px; cursor: pointer; transition: 0.3s;
}
.modal-close:hover { color: white; transform: rotate(90deg); }

.form-group { margin-bottom: 15px; }

#lead-form input {
    width: 100%; padding: 16px 20px; border-radius: 12px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    color: white; font-size: 16px; outline: none; transition: 0.3s;
}

#lead-form input:focus {
    border-color: var(--primary); background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

@keyframes fadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
