/**
 * SC Attendance - Landing Page Styles
 * Light Mode (default) + Dark/Glass Mode toggle
 */

:root {
    --primary: #0983e2;
    --primary-dark: #0769b8;
    --secondary: #6c5ce6;
    --accent: #6c5ce6;
    --success: #10b981;
    --info: #06b6d4;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1a1a3e;
    --light: #f8fafc;

    /* Theme-aware colors (light defaults) */
    --bg-body: #f8fafc;
    --bg-section-1: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    --bg-section-2: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.06);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 25px 60px rgba(0, 0, 0, 0.1);
    --section-badge-bg: linear-gradient(135deg, rgba(9, 131, 226, 0.1), rgba(30, 122, 158, 0.1));
    --section-badge-color: var(--primary);
    --divider: rgba(0, 0, 0, 0.06);
}

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

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

/* Container z-index for all sections */
.landing-before-after > .container,
.landing-five-things > .container,
.landing-steps > .container,
.landing-faq > .container,
.landing-decision > .container,
.landing-why-now > .container,
.landing-cta > .container {
    position: relative;
    z-index: 1;
}

/* ===== Theme Toggle Button ===== */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.04);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.15rem;
    padding: 0;
}

.theme-toggle:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(1.1);
}

.theme-toggle .fa-moon { display: inline-block; }
.theme-toggle .fa-sun { display: none; }

/* ===== Glassmorphism Navbar ===== */
.navbar-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-glass.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.navbar-glass.nav-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.navbar-brand img {
    height: 45px;
    transition: all 0.3s ease;
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.15);
}

.nav-link-modern {
    color: var(--dark) !important;
    font-weight: 600;
    padding: 12px 20px !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-modern:hover::after {
    width: 60%;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(9, 131, 226, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(9, 131, 226, 0.4);
}

/* ===== Hero Section ===== */
.landing-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1a3e 0%, #0c2d5e 30%, #0769b8 60%, #0983e2 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.landing-hero > .container {
    position: relative;
    z-index: 2;
}

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatShape 20s infinite;
}

.shape-1 {
    width: 500px; height: 500px;
    background: linear-gradient(135deg, rgba(9, 131, 226, 0.4), rgba(108, 92, 230, 0.3));
    top: -10%; right: -10%;
}

.shape-2 {
    width: 400px; height: 400px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(59, 130, 246, 0.3));
    bottom: -5%; left: -5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px; height: 300px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(236, 72, 153, 0.2));
    top: 50%; left: 30%;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(10px, -10px) rotate(270deg); }
}

.particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px; height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: rise 10s infinite;
}

@keyframes rise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.hero-content { position: relative; z-index: 10; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
    color: white;
    font-size: 0.95rem;
}

.hero-badge i { margin-left: 8px; color: #fbbf24; }

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 50%, #f0abfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.9;
    max-width: 540px;
}

.hero-features { list-style: none; padding: 0; margin: 0 0 20px; }

.hero-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hero-features li i { color: #34d399; margin-top: 5px; flex-shrink: 0; }

.hero-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* ===== Unified Button System ===== */
.btn-landing-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, #0769b8 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(9, 131, 226, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-landing-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0769b8 0%, #0e5a7e 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-landing-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(9, 131, 226, 0.4);
    color: white !important;
}

.btn-landing-primary:hover::before {
    opacity: 1;
}

.btn-landing-primary span,
.btn-landing-primary i {
    position: relative;
    z-index: 1;
}

.btn-landing-primary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-landing-primary:hover i {
    transform: translateX(-4px);
}

/* Secondary variant (outline) */
.btn-landing-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-landing-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: white !important;
}

.btn-landing-secondary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-landing-secondary:hover i {
    transform: translateY(3px);
}

/* Light variant (for hero on dark bg) */
.btn-landing-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: white;
    color: var(--primary) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-landing-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark) !important;
}

.btn-landing-light i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-landing-light:hover i {
    transform: translateX(-4px);
}

/* CTA variant (for colored backgrounds) */
.btn-landing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 44px;
    font-size: 1.15rem;
    font-weight: 800;
    font-family: 'Tajawal', sans-serif;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: white;
    color: var(--primary) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-landing-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark) !important;
}

.btn-landing-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-landing-cta:hover i {
    transform: translateX(-4px);
}

/* Decision CTA (green accent for the "with us" path) */
.btn-decision-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white !important;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-decision-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    animation: shimmer 4s ease-in-out infinite;
}

.btn-decision-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
    color: white !important;
}

.btn-decision-cta i {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-decision-cta span {
    position: relative;
    z-index: 1;
}

.btn-decision-cta:hover i {
    transform: translateX(-4px);
}

@keyframes shimmer {
    0% { left: -75%; }
    100% { left: 125%; }
}

.hero-visual { position: relative; z-index: 10; }

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.mockup-header { display: flex; gap: 8px; margin-bottom: 15px; }
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.mockup-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 25px;
}

.mockup-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 20px; }

.mockup-stat {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    padding: 20px;
    color: white;
    text-align: center;
}

.mockup-stat-number { font-size: 1.8rem; font-weight: 800; }
.mockup-stat-label { font-size: 0.85rem; opacity: 0.9; }

.mockup-chart {
    height: 100px;
    background: linear-gradient(180deg, rgba(9, 131, 226, 0.1) 0%, transparent 100%);
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 6px 6px 0 0;
    animation: growBar 1.5s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 20;
}

.float-card-1 { top: 10%; right: -8%; }
.float-card-2 { bottom: 15%; left: -5%; animation-delay: -2s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.float-card-icon {
    width: 45px; height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-left: 12px;
}

/* ===== Section Header ===== */
.section-header { text-align: center; margin-bottom: 80px; }

.section-badge {
    display: inline-block;
    background: var(--section-badge-bg);
    color: var(--section-badge-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    transition: color 0.4s ease;
}

/* ===== Before & After Section ===== */
.landing-before-after {
    padding: 120px 0;
    background: var(--bg-section-1);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.evolution-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.evo-side {
    padding: 40px 35px;
    border-radius: 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.evo-side::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    transition: height 0.4s ease;
}

.evo-before::before {
    background: linear-gradient(90deg, #ef4444, #f97316, #ef4444);
}

.evo-after::before {
    background: linear-gradient(90deg, #10b981, #06b6d4, #10b981);
}

.evo-side:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.evo-side:hover::before {
    height: 5px;
}

.evo-before:hover {
    border-color: rgba(239, 68, 68, 0.15);
}

.evo-after:hover {
    border-color: rgba(16, 185, 129, 0.15);
}

/* Subtle background pattern */
.evo-before::after {
    content: '';
    position: absolute;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.04) 0%, transparent 70%);
    bottom: -80px; left: -80px;
    border-radius: 50%;
    pointer-events: none;
}

.evo-after::after {
    content: '';
    position: absolute;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    border-radius: 50%;
    pointer-events: none;
}

.evo-side-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 24px;
    padding: 8px 20px 8px 14px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.evo-before .evo-side-label {
    background: rgba(239, 68, 68, 0.06);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.12);
}

.evo-after .evo-side-label {
    background: rgba(16, 185, 129, 0.06);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.12);
}

.evo-label-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}

.evo-dot-red { background: #ef4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.5); }
.evo-dot-green { background: #10b981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.evo-visual {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
    position: relative;
    aspect-ratio: 16 / 10;
    z-index: 1;
    border: 1px solid var(--card-border);
}

.evo-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.evo-before .evo-visual img {
    filter: saturate(0.7);
}

.evo-side:hover .evo-visual img {
    transform: scale(1.06);
}

.evo-before:hover .evo-visual img {
    filter: saturate(0.5);
}

.evo-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(239, 68, 68, 0.08) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.evo-overlay-green {
    background: linear-gradient(180deg, transparent 50%, rgba(16, 185, 129, 0.08) 100%);
}

.evo-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.evo-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.015);
    border: 1px solid transparent;
    cursor: default;
}

.evo-list-item:hover {
    transform: translateX(-5px);
}

.evo-item-red:hover {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.1);
}

.evo-item-green:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.1);
}

.evo-list-item i {
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.evo-list-item:hover i {
    transform: scale(1.15);
}

.evo-item-red i { color: #ef4444; }
.evo-item-green i { color: #10b981; }

.evo-list-item strong {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 3px;
    transition: color 0.4s ease;
}

.evo-item-red strong { text-decoration: line-through; text-decoration-color: rgba(239, 68, 68, 0.3); }

.evo-list-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    transition: color 0.4s ease;
}

/* Center Divider */
.evo-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
}

.evo-divider-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, transparent, rgba(9, 131, 226, 0.2), transparent);
}

.evo-divider-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #ef4444, #6c5ce6, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 8px 30px rgba(108, 92, 230, 0.3);
    margin: 20px 0;
    animation: pulseGlow 3s ease-in-out infinite;
    position: relative;
}

.evo-divider-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(108, 92, 230, 0.2);
    animation: spin 12s linear infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(108, 92, 230, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 12px 45px rgba(108, 92, 230, 0.5); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== Why Now Section (Split Layout) ===== */
.landing-why-now {
    padding: 120px 0;
    background: var(--bg-section-2);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.why-now-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Visual Side */
.why-now-visual-side {
    position: relative;
}

.why-now-img-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: visible;
}

.why-now-img-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, rgba(9, 131, 226, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.why-now-main-img {
    width: 100%;
    border-radius: 28px;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-now-img-wrapper:hover .why-now-main-img {
    transform: scale(1.02);
}

/* Floating Badges */
.why-now-float-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.why-now-float-badge:hover {
    transform: translateY(-3px);
}

.why-now-float-badge i {
    font-size: 1rem;
}

.why-now-badge-1 {
    top: 10%;
    right: -15px;
    animation: floatBadge1 4s ease-in-out infinite;
}

.why-now-badge-1 i { color: #10b981; }

.why-now-badge-2 {
    bottom: 25%;
    right: -25px;
    animation: floatBadge2 5s ease-in-out infinite;
}

.why-now-badge-2 i { color: #25d366; }

.why-now-badge-3 {
    bottom: 5%;
    left: -10px;
    animation: floatBadge3 4.5s ease-in-out infinite;
}

.why-now-badge-3 i { color: var(--primary); }

@keyframes floatBadge1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatBadge2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatBadge3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Cards Side */
.why-now-cards-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-now-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-now-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.why-now-card:hover {
    transform: translateX(-6px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.why-now-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, var(--primary), #6c5ce6);
}

.why-now-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-now-card:hover .why-now-card-icon {
    transform: scale(1.1);
}

.wn-icon-blue {
    background: linear-gradient(135deg, var(--primary), #38bdf8);
    box-shadow: 0 6px 20px rgba(9, 131, 226, 0.25);
}

.wn-icon-green {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.wn-icon-purple {
    background: linear-gradient(135deg, #6c5ce6, #a78bfa);
    box-shadow: 0 6px 20px rgba(108, 92, 230, 0.25);
}

.wn-icon-amber {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}

.why-now-card:hover .wn-icon-blue { box-shadow: 0 10px 30px rgba(9, 131, 226, 0.35); }
.why-now-card:hover .wn-icon-green { box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35); }
.why-now-card:hover .wn-icon-purple { box-shadow: 0 10px 30px rgba(108, 92, 230, 0.35); }
.why-now-card:hover .wn-icon-amber { box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35); }

.why-now-card-body h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    transition: color 0.4s ease;
}

.why-now-card-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    transition: color 0.4s ease;
}

/* ===== FAQ Section ===== */
.landing-faq {
    padding: 120px 0;
    background: var(--bg-section-1);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.landing-accordion .accordion-item {
    border: none;
    background: var(--card-bg);
    border-radius: 16px !important;
    margin-bottom: 15px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.landing-accordion .accordion-item:hover {
    box-shadow: var(--card-shadow-hover);
}

.landing-accordion .accordion-button {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    padding: 22px 30px;
    background: var(--card-bg);
    border-radius: 16px !important;
    box-shadow: none;
    transition: all 0.3s ease;
}

.landing-accordion .accordion-button:not(.collapsed) {
    background: rgba(9, 131, 226, 0.06);
    color: var(--primary);
}

.landing-accordion .accordion-button::after {
    margin-right: auto;
    margin-left: 0;
}

.landing-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.landing-accordion .accordion-button i { color: var(--primary); }

.landing-accordion .accordion-body {
    padding: 0 30px 22px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ===== Decision Section (Two-Path) ===== */
.landing-decision {
    padding: 120px 0;
    background: var(--bg-section-2);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.decision-paths {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 30px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.decision-path {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.decision-path:hover {
    transform: translateY(-8px);
}

/* Without card - muted feel */
.path-without {
    opacity: 0.92;
}

.path-without:hover {
    opacity: 1;
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.12);
}

/* With card - elevated, highlighted */
.path-with {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 50px rgba(16, 185, 129, 0.08);
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.path-with::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(9, 131, 226, 0.3), rgba(16, 185, 129, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.path-with:hover {
    box-shadow: 0 30px 70px rgba(16, 185, 129, 0.12);
}

/* Bottom accent line */
.path-bottom-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.decision-path:hover .path-bottom-line {
    height: 5px;
}

.path-bottom-red { background: linear-gradient(90deg, #ef4444, #f97316, #ef4444); }
.path-bottom-green { background: linear-gradient(90deg, #10b981, #06b6d4, #10b981); }

/* Popular badge */
.path-popular-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1e293b;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.path-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.path-emoji {
    width: 80px; height: 80px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.decision-path:hover .path-emoji {
    transform: scale(1.08) rotate(-3deg);
}

.path-emoji img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.path-label {
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.path-label-red {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.path-label-green {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.path-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.5;
    transition: color 0.4s ease;
}

.path-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.path-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.path-item:hover {
    transform: translateX(-5px);
}

.path-item i {
    font-size: 0.85rem;
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.path-item:hover i {
    transform: scale(1.15);
}

.path-item-red {
    background: rgba(239, 68, 68, 0.025);
}

.path-item-red:hover {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.08);
}

.path-item-red i {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.path-item-red span {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.4s ease;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.25);
}

.path-item-green {
    background: rgba(16, 185, 129, 0.025);
}

.path-item-green:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.08);
}

.path-item-green i {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.path-item-green span {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.4s ease;
}

/* Perks */
.path-perks {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.path-perks span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(9, 131, 226, 0.06));
    border: 1px solid rgba(16, 185, 129, 0.12);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #059669;
    transition: all 0.3s ease;
}

.path-perks span:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(9, 131, 226, 0.1));
    transform: translateY(-2px);
}

.path-perks span i {
    width: auto; height: auto;
    background: none;
    border-radius: 0;
    display: inline;
    font-size: 0.85rem;
}

/* btn-decision-cta styles moved to unified button system above */

/* ===== 5 Things Section ===== */
.landing-five-things {
    padding: 120px 0;
    background: var(--bg-section-1);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.thing-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.thing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.thing-number {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.08;
    line-height: 1;
}

.thing-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(9, 131, 226, 0.25);
}

.thing-card h4 {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.thing-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    transition: color 0.4s ease;
}

/* ===== Steps Section ===== */
.landing-steps {
    padding: 120px 0;
    background: var(--bg-section-2);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.steps-timeline {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
}

.steps-line {
    position: absolute;
    top: 52px;
    right: 12%;
    width: 76%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    opacity: 0.2;
    border-radius: 3px;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number-modern {
    width: 64px; height: 64px;
    background: var(--bg-body, #f8fafc);
    color: var(--primary);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item:hover .step-number-modern {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
    transform: scale(1.15);
    box-shadow: 0 10px 35px rgba(9, 131, 226, 0.35);
}

.step-card-modern {
    text-align: center;
    padding: 28px 20px;
    border-radius: 20px;
    background: var(--bg-card, white);
    border: 1px solid rgba(9, 131, 226, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.step-item:hover .step-card-modern {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(9, 131, 226, 0.12);
    border-color: rgba(9, 131, 226, 0.15);
}

.step-icon-landing {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(9, 131, 226, 0.08), rgba(108, 92, 230, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.step-item:hover .step-icon-landing {
    background: linear-gradient(135deg, rgba(9, 131, 226, 0.15), rgba(108, 92, 230, 0.15));
    transform: scale(1.1);
}

.step-card-modern h5 {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    transition: color 0.4s ease;
}

.step-card-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.92rem;
    margin: 0;
    transition: color 0.4s ease;
}

/* ===== CTA Section ===== */
.landing-cta {
    padding: 120px 0;
    background: var(--bg-section-1);
    transition: background 0.4s ease;
}

.cta-box-modern {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-orb-1 {
    width: 300px; height: 300px;
    background: rgba(255, 255, 255, 0.15);
    top: -100px; right: -100px;
}

.cta-orb-2 {
    width: 250px; height: 250px;
    background: rgba(255, 255, 255, 0.1);
    bottom: -80px; left: -80px;
}

.cta-box-modern h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.cta-box-modern p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
}

/* btn-cta-modern removed — now uses btn-landing-cta */

/* ===== Footer ===== */
.footer-modern {
    background: #0f0a1f;
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-modern > .container { position: relative; z-index: 1; }
.footer-brand img { height: 50px; margin-bottom: 25px; }

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    max-width: 300px;
}

.footer-heading {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links-modern { list-style: none; padding: 0; }
.footer-links-modern li { margin-bottom: 15px; }

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-modern a:hover { color: white; transform: translateX(-5px); }

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    margin-top: 60px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-body, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid rgba(9, 131, 226, 0.15);
    border-top-color: var(--primary);
    animation: preloaderSpin 0.8s linear infinite;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(9, 131, 226, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(9, 131, 226, 0.4);
}

/* ===== Sticky WhatsApp ===== */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    color: white;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ===== Custom Cursor ===== */
.cursor-dot {
    position: fixed;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    will-change: transform;
    transition: width 0.2s, height 0.2s, background 0.2s, top 0.2s, left 0.2s;
}

.cursor-ring {
    position: fixed;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(9, 131, 226, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    transition: width 0.3s, height 0.3s, border-color 0.3s, top 0.3s, left 0.3s;
}

.cursor-dot.cursor-hover {
    width: 12px;
    height: 12px;
    top: -6px;
    left: -6px;
    background: var(--secondary);
}

.cursor-ring.cursor-hover {
    width: 56px;
    height: 56px;
    top: -28px;
    left: -28px;
    border-color: rgba(108, 92, 230, 0.4);
}


/* ================================================================
   DARK MODE (Glassmorphism)
   ================================================================ */

body[data-theme="dark"] {
    --bg-body: #0a0a1a;
    --bg-section-1: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --bg-section-2: linear-gradient(180deg, #0f172a 0%, #1a1a2e 100%);
    --text-primary: #e2e8f0;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --card-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.3);
    --section-badge-bg: rgba(255, 255, 255, 0.06);
    --section-badge-color: rgba(255, 255, 255, 0.85);
    --divider: rgba(255, 255, 255, 0.06);
    background: #0a0a1a;
    color: #e2e8f0;
}

/* -- Dark: Preloader & Extras -- */
body[data-theme="dark"] .preloader { background: #0a0a1a; }
body[data-theme="dark"] .preloader-spinner { border-color: rgba(108, 92, 230, 0.15); border-top-color: #6c5ce6; }
body[data-theme="dark"] .back-to-top {
    background: linear-gradient(135deg, #6c5ce6, #0983e2);
    box-shadow: 0 6px 25px rgba(108, 92, 230, 0.3);
}
body[data-theme="dark"] .cursor-dot { background: #6c5ce6; }
body[data-theme="dark"] .cursor-ring { border-color: rgba(108, 92, 230, 0.35); }

/* -- Dark: Navbar -- */
body[data-theme="dark"] .navbar-glass {
    background: rgba(10, 10, 26, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .navbar-glass.scrolled {
    background: rgba(10, 10, 26, 0.92);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .nav-link-modern { color: rgba(255, 255, 255, 0.8) !important; }
body[data-theme="dark"] .nav-link-modern:hover { color: white !important; }

body[data-theme="dark"] .nav-link-modern::after {
    background: linear-gradient(90deg, var(--primary), #6c5ce6);
}

body[data-theme="dark"] .navbar-toggler { border-color: rgba(255, 255, 255, 0.15); }
body[data-theme="dark"] .navbar-toggler-icon { filter: invert(1); }

body[data-theme="dark"] .btn-gradient {
    background: linear-gradient(135deg, var(--primary), #6c5ce6);
    box-shadow: 0 4px 20px rgba(108, 92, 230, 0.3);
}

/* -- Dark: Theme Toggle -- */
body[data-theme="dark"] .theme-toggle {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: white;
}

body[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
}

body[data-theme="dark"] .theme-toggle .fa-moon { display: none; }
body[data-theme="dark"] .theme-toggle .fa-sun { display: inline-block; }

/* -- Dark: Hero -- */
body[data-theme="dark"] .landing-hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #0f172a 30%, #1a1a2e 60%, #16213e 100%);
}

body[data-theme="dark"] .hero-title {
    background: linear-gradient(135deg, #fff 0%, #7dd3fc 40%, #c4b5fd 70%, #f0abfc 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* -- Dark: Buttons -- */
body[data-theme="dark"] .btn-landing-light {
    background: linear-gradient(135deg, var(--primary), #6c5ce6);
    color: white !important;
    box-shadow: 0 10px 40px rgba(108, 92, 230, 0.3);
}

body[data-theme="dark"] .btn-landing-light:hover {
    box-shadow: 0 20px 50px rgba(108, 92, 230, 0.5);
    color: white !important;
}

body[data-theme="dark"] .btn-landing-primary {
    background: linear-gradient(135deg, var(--primary), #6c5ce6);
    box-shadow: 0 4px 15px rgba(108, 92, 230, 0.3);
}

body[data-theme="dark"] .btn-landing-primary:hover {
    box-shadow: 0 12px 35px rgba(108, 92, 230, 0.5);
}

body[data-theme="dark"] .btn-landing-primary::before {
    background: linear-gradient(135deg, #6c5ce6, #a78bfa);
}

body[data-theme="dark"] .dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .mockup-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body[data-theme="dark"] .mockup-stat {
    background: linear-gradient(135deg, rgba(9, 131, 226, 0.25), rgba(108, 92, 230, 0.2));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .mockup-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

body[data-theme="dark"] .chart-bar {
    background: linear-gradient(180deg, var(--primary), rgba(108, 92, 230, 0.5));
}

body[data-theme="dark"] .float-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: white;
}

body[data-theme="dark"] .float-card .text-muted { color: rgba(255, 255, 255, 0.5) !important; }
body[data-theme="dark"] .float-card .fw-bold { color: white; }

/* -- Dark: Section Badges -- */
body[data-theme="dark"] .section-badge {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* -- Dark: Before & After -- */
body[data-theme="dark"] .landing-before-after::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    top: -100px; left: -100px;
    border-radius: 50%;
    filter: blur(60px);
}

body[data-theme="dark"] .landing-before-after::after {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    border-radius: 50%;
    filter: blur(60px);
}

body[data-theme="dark"] .evo-side {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .evo-side:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .evo-side::before { opacity: 0.8; }
body[data-theme="dark"] .evo-side::after { opacity: 0.5; }

body[data-theme="dark"] .evo-before .evo-side-label {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.2);
}

body[data-theme="dark"] .evo-after .evo-side-label {
    background: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.2);
}

body[data-theme="dark"] .evo-visual { border-color: rgba(255, 255, 255, 0.06); }

body[data-theme="dark"] .evo-list-item {
    background: rgba(255, 255, 255, 0.02);
}

body[data-theme="dark"] .evo-item-red:hover {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.12);
}

body[data-theme="dark"] .evo-item-green:hover {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.12);
}

body[data-theme="dark"] .evo-item-red i { color: #fca5a5; }
body[data-theme="dark"] .evo-item-green i { color: #6ee7b7; }
body[data-theme="dark"] .evo-item-red strong { text-decoration-color: rgba(252, 165, 165, 0.3); }

body[data-theme="dark"] .evo-list-item strong { color: rgba(255, 255, 255, 0.9); }
body[data-theme="dark"] .evo-list-item span { color: rgba(255, 255, 255, 0.45); }

body[data-theme="dark"] .evo-divider-line {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

body[data-theme="dark"] .evo-divider-icon {
    background: linear-gradient(135deg, #ef4444, #6c5ce6, #10b981);
    box-shadow: 0 8px 35px rgba(108, 92, 230, 0.4);
}

body[data-theme="dark"] .evo-divider-icon::after {
    border-color: rgba(108, 92, 230, 0.15);
}

/* -- Dark: Why Now (Split Layout) -- */
body[data-theme="dark"] .landing-why-now::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(9, 131, 226, 0.08) 0%, transparent 70%);
    bottom: -150px; right: -150px;
    border-radius: 50%;
    filter: blur(80px);
}

body[data-theme="dark"] .why-now-img-glow {
    background: radial-gradient(circle, rgba(9, 131, 226, 0.15) 0%, transparent 70%);
}

body[data-theme="dark"] .why-now-main-img {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .why-now-float-badge {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .why-now-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .why-now-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

body[data-theme="dark"] .why-now-card-body h4 { color: rgba(255, 255, 255, 0.95); }
body[data-theme="dark"] .why-now-card-body p { color: rgba(255, 255, 255, 0.55); }

body[data-theme="dark"] .wn-icon-blue {
    background: linear-gradient(135deg, #38bdf8, #7dd3fc);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.2);
}
body[data-theme="dark"] .wn-icon-green {
    background: linear-gradient(135deg, #34d399, #6ee7b7);
    box-shadow: 0 6px 20px rgba(52, 211, 153, 0.2);
}
body[data-theme="dark"] .wn-icon-purple {
    background: linear-gradient(135deg, #a78bfa, #c4b5fd);
    box-shadow: 0 6px 20px rgba(167, 139, 250, 0.2);
}
body[data-theme="dark"] .wn-icon-amber {
    background: linear-gradient(135deg, #fbbf24, #fde68a);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.2);
}

/* -- Dark: FAQ -- */
body[data-theme="dark"] .landing-faq::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(108, 92, 230, 0.1) 0%, transparent 70%);
    top: -100px; left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(80px);
}

body[data-theme="dark"] .landing-accordion .accordion-item {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .landing-accordion .accordion-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

body[data-theme="dark"] .landing-accordion .accordion-button {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .landing-accordion .accordion-button:not(.collapsed) {
    background: rgba(9, 131, 226, 0.08);
    color: #7dd3fc;
}

body[data-theme="dark"] .landing-accordion .accordion-button::after { filter: invert(1) brightness(0.7); }
body[data-theme="dark"] .landing-accordion .accordion-button:not(.collapsed)::after { filter: invert(1); }
body[data-theme="dark"] .landing-accordion .accordion-button i { color: #7dd3fc; }
body[data-theme="dark"] .landing-accordion .accordion-body { color: rgba(255, 255, 255, 0.55); }

/* -- Dark: Decision (Two-Path) -- */
body[data-theme="dark"] .landing-decision::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
    top: -100px; left: -100px;
    border-radius: 50%;
    filter: blur(60px);
}

body[data-theme="dark"] .decision-path {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .decision-path:hover {
    background: rgba(255, 255, 255, 0.05);
}

body[data-theme="dark"] .path-without { opacity: 0.88; }
body[data-theme="dark"] .path-without:hover {
    opacity: 1;
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.06);
}

body[data-theme="dark"] .path-with {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(16, 185, 129, 0.04));
    border-color: rgba(16, 185, 129, 0.1);
    box-shadow: 0 10px 50px rgba(16, 185, 129, 0.06);
}

body[data-theme="dark"] .path-with::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(9, 131, 226, 0.2), rgba(108, 92, 230, 0.15));
}

body[data-theme="dark"] .path-with:hover {
    box-shadow: 0 30px 70px rgba(16, 185, 129, 0.1);
}

body[data-theme="dark"] .path-label-red {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.2);
}

body[data-theme="dark"] .path-label-green {
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.2);
}

body[data-theme="dark"] .path-title { color: rgba(255, 255, 255, 0.9); }

body[data-theme="dark"] .path-item-red { background: rgba(239, 68, 68, 0.03); }
body[data-theme="dark"] .path-item-red:hover { background: rgba(239, 68, 68, 0.06); border-color: rgba(239, 68, 68, 0.1); }
body[data-theme="dark"] .path-item-red i { background: rgba(239, 68, 68, 0.12); color: #fca5a5; }
body[data-theme="dark"] .path-item-red span { color: rgba(255, 255, 255, 0.6); text-decoration-color: rgba(252, 165, 165, 0.3); }

body[data-theme="dark"] .path-item-green { background: rgba(16, 185, 129, 0.03); }
body[data-theme="dark"] .path-item-green:hover { background: rgba(16, 185, 129, 0.06); border-color: rgba(16, 185, 129, 0.1); }
body[data-theme="dark"] .path-item-green i { background: rgba(16, 185, 129, 0.12); color: #6ee7b7; }
body[data-theme="dark"] .path-item-green span { color: rgba(255, 255, 255, 0.7); }

body[data-theme="dark"] .path-perks span {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
}

body[data-theme="dark"] .path-popular-badge {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1e293b;
}

body[data-theme="dark"] .btn-decision-cta {
    background: linear-gradient(135deg, #34d399, #10b981);
    box-shadow: 0 10px 35px rgba(52, 211, 153, 0.3);
}

body[data-theme="dark"] .btn-decision-cta:hover {
    box-shadow: 0 18px 50px rgba(52, 211, 153, 0.45);
}

body[data-theme="dark"] .path-emoji img {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

/* -- Dark: 5 Things -- */
body[data-theme="dark"] .landing-five-things::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(9, 131, 226, 0.12) 0%, transparent 70%);
    top: -150px; right: -150px;
    border-radius: 50%;
    filter: blur(80px);
}

body[data-theme="dark"] .landing-five-things::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(108, 92, 230, 0.1) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    border-radius: 50%;
    filter: blur(80px);
}

body[data-theme="dark"] .thing-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .thing-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

body[data-theme="dark"] .thing-icon {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

body[data-theme="dark"] .thing-icon i {
    background: linear-gradient(135deg, #7dd3fc, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

body[data-theme="dark"] .thing-card:hover .thing-icon {
    background: rgba(9, 131, 226, 0.12);
    border-color: rgba(9, 131, 226, 0.2);
    box-shadow: 0 8px 30px rgba(9, 131, 226, 0.12);
}

/* -- Dark: Steps -- */
body[data-theme="dark"] .landing-steps::before {
    content: '';
    position: absolute;
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(9, 131, 226, 0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
}

body[data-theme="dark"] .steps-line {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    opacity: 0.15;
}

body[data-theme="dark"] .step-card-modern {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .step-item:hover .step-card-modern {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .step-number-modern {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(9, 131, 226, 0.4);
}

body[data-theme="dark"] .step-item:hover .step-number-modern {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    box-shadow: 0 10px 35px rgba(9, 131, 226, 0.3);
}

body[data-theme="dark"] .step-icon-landing {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .step-icon-landing i {
    background: linear-gradient(135deg, #7dd3fc, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* -- Dark: CTA -- */
body[data-theme="dark"] .cta-box-modern {
    background: rgba(9, 131, 226, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .cta-box-modern p { color: rgba(255, 255, 255, 0.6); }

body[data-theme="dark"] .btn-landing-cta {
    background: linear-gradient(135deg, var(--primary), #6c5ce6);
    color: white !important;
    box-shadow: 0 15px 40px rgba(108, 92, 230, 0.3);
}

body[data-theme="dark"] .btn-landing-cta:hover {
    box-shadow: 0 25px 60px rgba(108, 92, 230, 0.5);
    color: white !important;
}

body[data-theme="dark"] .cta-orb-1 { background: rgba(108, 92, 230, 0.12); }
body[data-theme="dark"] .cta-orb-2 { background: rgba(9, 131, 226, 0.12); }

/* -- Dark: Footer -- */
body[data-theme="dark"] .footer-modern {
    background: linear-gradient(180deg, #0a0a1a, #050510);
}

body[data-theme="dark"] .footer-modern::before {
    content: '';
    position: absolute;
    width: 400px; height: 200px;
    background: radial-gradient(ellipse, rgba(9, 131, 226, 0.04) 0%, transparent 70%);
    top: 0; left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
}

body[data-theme="dark"] .footer-links-modern a:hover { color: #7dd3fc; }


/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.15rem; }
    .float-card { display: none; }
    .steps-timeline { flex-direction: column; gap: 16px; max-width: 500px; margin: 0 auto; }
    .steps-line { display: none; }
    .step-item { flex-direction: row; gap: 16px; }
    .step-item .step-number-modern { min-width: 52px; width: 52px; height: 52px; font-size: 1.3rem; margin-bottom: 0; }
    .step-item .step-card-modern { text-align: right; padding: 20px; }
    .section-title-modern { font-size: 2.3rem; }

    /* Before & After */
    .evolution-comparison { grid-template-columns: 1fr; gap: 30px; }
    .evo-divider { flex-direction: row; padding: 10px 0; }
    .evo-divider-line { width: auto; height: 2px; flex: 1; }
    .evo-divider-icon { margin: 0 15px; }

    /* Why Now Split */
    .why-now-split { grid-template-columns: 1fr; gap: 40px; }
    .why-now-float-badge { display: none; }

    /* Decision */
    .decision-paths { grid-template-columns: 1fr; gap: 30px; }
    .landing-decision h2 { font-size: 1.8rem; }
}

@media (max-width: 767px) {
    .cursor-dot, .cursor-ring { display: none !important; }
    .back-to-top { bottom: 20px; left: 20px; width: 42px; height: 42px; }
    .sticky-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn,
    .hero-buttons .btn-landing-primary { width: 100%; }
    .cta-box-modern { padding: 50px 25px; }
    .cta-box-modern h2 { font-size: 2rem; }
    .dashboard-mockup { margin-top: 50px; }
    .section-title-modern { font-size: 1.8rem; }
    .section-desc { font-size: 1.05rem; }

    .landing-before-after,
    .landing-why-now,
    .landing-faq,
    .landing-decision,
    .landing-five-things,
    .landing-steps,
    .landing-cta { padding: 80px 0; }

    .section-header { margin-bottom: 50px; }

    /* Before & After */
    .evo-side { padding: 30px 22px; }

    /* Why Now Split */
    .why-now-split { gap: 30px; }
    .why-now-card { padding: 20px; }
    .why-now-card-icon { width: 44px; height: 44px; min-width: 44px; font-size: 1.1rem; }

    /* Decision */
    .decision-path { padding: 30px 22px; }
    .path-title { font-size: 1.1rem; }
    .path-perks { gap: 8px; }
    .landing-decision h2 { font-size: 1.6rem; }

    .thing-card { padding: 30px 20px; }
    .thing-icon { width: 65px; height: 65px; font-size: 1.6rem; }

    /* Reduce blur on mobile for performance */
    body[data-theme="dark"] .evo-side,
    body[data-theme="dark"] .why-now-card,
    body[data-theme="dark"] .why-now-float-badge,
    body[data-theme="dark"] .decision-path,
    body[data-theme="dark"] .thing-card,
    body[data-theme="dark"] .step-card-modern,
    body[data-theme="dark"] .landing-accordion .accordion-item,
    body[data-theme="dark"] .cta-box-modern {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

@media (max-width: 575px) {
    .hero-features li { font-size: 0.95rem; }
    .path-perks { flex-direction: column; }
    .path-perks span { justify-content: center; }
    .path-item span { font-size: 0.9rem; }
    .why-now-card { padding: 18px; gap: 14px; }
    .why-now-card-body h4 { font-size: 1rem; }
    .landing-accordion .accordion-button { padding: 18px 20px; font-size: 1rem; }
}
