:root {
    /* Colors */
    --bg-dark: #050814;
    --text-main: #eaf0ff;
    --text-muted: #94a3b8;
    
    /* Brand Gradients (Gemini-inspired) */
    --brand-blue: #3b82f6;
    --brand-purple: #8b5cf6;
    --brand-cyan: #06b6d4;
    --gradient-main: linear-gradient(135deg, #22d3ee, #3b82f6, #a78bfa);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), transparent 70%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shine: rgba(255, 255, 255, 0.12);
    --backdrop-blur: blur(16px);
    
    /* Layout */
    --radius: 24px;
    --radius-sm: 12px;
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 50px rgba(59, 130, 246, 0.15);
}

/* --- Base --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4 { margin-top: 0; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin-bottom: 24px; }
h3 { font-size: 24px; font-weight: 600; }
p { color: var(--text-muted); font-size: 18px; margin-bottom: 24px; }

/* The Gradient Text Effect */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gradient-text-small {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* --- Aurora Background Animation --- */
.aurora-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background: 
        radial-gradient(circle at 15% 50%, rgba(34, 211, 238, 0.08), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08), transparent 40%);
    animation: aurora-move 10s ease-in-out infinite alternate;
}

@keyframes aurora-move {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* --- Layout Utilities --- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 700px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.mt-large { margin-top: 60px; }
.mt-small { margin-top: 16px; }
.mb-large { margin-bottom: 60px; }
.grid { display: grid; gap: 24px; }
.two-col { grid-template-columns: 1fr 1fr; }
.m3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.full-width { width: 100%; text-align: center; display: block; }

/* --- Header --- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(5, 8, 20, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; font-weight: 700; font-size: 18px; }

/* Navigation & Menu Toggle */
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: #fff; }
.nav .cta {
    background: var(--gradient-main);
    color: #050814;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}
.menu-icon {
    display: block; width: 24px; height: 2px; background: #fff; position: relative;
    transition: background 0.2s;
}
.menu-icon::before, .menu-icon::after {
    content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: #fff;
    transition: transform 0.2s, top 0.2s;
}
.menu-icon::before { top: -8px; }
.menu-icon::after { top: 8px; }

/* Active Menu Icon State */
.site-header.nav-active .menu-icon { background: transparent; }
.site-header.nav-active .menu-icon::before { top: 0; transform: rotate(45deg); }
.site-header.nav-active .menu-icon::after { top: 0; transform: rotate(-45deg); }

/* --- Buttons & Shimmer --- */
.btn {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 16px 32px; border-radius: 50px;
    font-weight: 600; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 16px;
}
.btn.primary {
    background: var(--gradient-main);
    color: #050814;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}
.btn.ghost {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
}
.btn:hover { transform: translateY(-2px); }

/* Button Shimmer Effect */
.btn-shimmer {
    position: relative; overflow: hidden;
}
.btn-shimmer::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* --- Glass Cards --- */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: var(--backdrop-blur);
    position: relative; overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}
.glass-card:hover {
    border-color: var(--glass-shine);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}
/* Subtle internal glow on hover */
.card-glow {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.05), transparent 50%);
    opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.glass-card:hover .card-glow { opacity: 1; }

/* --- Hero Section --- */
.hero { padding: 120px 0 80px; position: relative; }

.hero-grid {
    display: grid;
    grid-template-columns: 55% 45%; 
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 600px;
    min-width: 0;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding-right: 20px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trust-badges { display: flex; gap: 12px; margin: 32px 0; flex-wrap: wrap; }

.badge {
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    padding: 6px 12px; border-radius: 8px; color: var(--text-muted);
}
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Phone/Video Frame */
.hero-visual::before {
    content: ''; position: absolute; width: 80%; height: 80%;
    background: var(--gradient-main);
    filter: blur(80px); opacity: 0.3; z-index: -1;
}
.phone-frame {
    width: 300px; height: 533px; 
    background: #000;
    border-radius: 40px;
    border: 8px solid #1e293b;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}
.phone-frame:hover { transform: scale(1.02); }
.video-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #0f172a, #334155);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: #fff; text-align: center;
}
.play-button-circle {
    width: 64px; height: 64px; background: rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px); margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* --- Parallax Section --- */
.parallax-section {
    position: relative;
    height: 400px;
    background-image: var(--parallax-img);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex; align-items: center; justify-content: center;
}
.parallax-overlay {
    position: absolute; inset: 0;
    background: rgba(5, 8, 20, 0.7); 
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
}
.reveal-on-scroll { position: relative; z-index: 2; }

/* --- Specific Components --- */
.icon { font-size: 40px; margin-bottom: 16px; }
.highlight-box {
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.1), transparent);
    border: 1px solid rgba(34, 211, 238, 0.2);
    padding: 32px; border-radius: var(--radius);
    color: #fff;
}

.feature-list { list-style: none; padding: 0; }
.feature-list li {
    display: flex; gap: 16px; margin-bottom: 24px;
    font-size: 18px; color: #fff;
}
.check {
    color: var(--brand-cyan); font-weight: 800;
    background: rgba(34, 211, 238, 0.1);
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.success-border { border-top: 4px solid var(--brand-cyan); }
.warning-border { border-top: 4px solid #f87171; }
.simple-list { padding-left: 20px; color: var(--text-muted); }
.simple-list li { margin-bottom: 10px; }

/* Accordion */
.accordion { margin-top: 24px; }
details {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px; margin-bottom: 12px;
    transition: all 0.3s;
}
details[open] { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
summary {
    padding: 20px; font-weight: 600; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    color: #fff;
}
summary::after { content: '+'; font-size: 20px; color: var(--text-muted); }
details[open] summary::after { content: '-'; }
.details-content { padding: 0 20px 20px; color: var(--text-muted); font-size: 16px; }

/* Pricing */
.pricing-card { display: flex; flex-direction: column; height: 100%; }
.pricing-card.featured {
    border: 1px solid rgba(139, 92, 246, 0.5);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1), rgba(5, 8, 20, 0.8));
    transform: scale(1.05); z-index: 2;
}
.price-header { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }

/* Added in pricing update */
.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 16px 0;
}
.per {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

.price-features { list-style: none; padding: 0; margin: 24px 0 auto; color: var(--text-muted); text-align: left; }
.price-features li { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 12px 0; }
.popular-tag {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    background: var(--brand-purple); color: white;
    font-size: 12px; font-weight: 700; padding: 4px 12px;
    border-radius: 0 0 8px 8px;
}

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.step-card { position: relative; padding: 20px; }
.step-card::before {
    content: ''; position: absolute; top: 30px; left: 50%; width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--glass-border), transparent);
    z-index: -1;
}
.step-card:last-child::before { display: none; }
.step-num {
    width: 60px; height: 60px; background: var(--bg-dark);
    border: 1px solid var(--glass-border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 20px; color: var(--brand-blue);
    margin: 0 auto 20px; position: relative; z-index: 1;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

/* About Image */
.portrait-wrapper { position: relative; width: 100%; max-width: 500px; margin: 0 auto; }
.portrait-wrapper img {
    width: 100%; height: auto; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-soft);
}
.portrait-wrapper::after {
    content: ''; position: absolute; inset: -20px; border-radius: 50%;
    background: var(--gradient-main);
    z-index: -1; opacity: 0.2; filter: blur(30px);
}

/* Form */
.form-container { max-width: 600px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-group { margin-bottom: 20px; text-align: left; }
label { font-size: 14px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; display: block; }
input, textarea, select {
    width: 100%; padding: 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px; color: #fff; font-family: inherit; font-size: 16px;
    transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
    outline: none; border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.select-wrapper { position: relative; }
.select-wrapper::after {
    content: '▼'; position: absolute; right: 14px; top: 18px;
    color: var(--text-muted); font-size: 10px; pointer-events: none;
}
select { appearance: none; cursor: pointer; }

/* FAQ Grid */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }

/* Footer */
.footer-links { margin: 24px 0; display: flex; justify-content: center; gap: 32px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: #fff; }

/* --- Mobile Responsiveness (Hamburgers & Grids) --- */
@media (max-width: 900px) {
    /* 1. Header & Menu */
    .menu-toggle { display: block; }
    
    .nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(5,8,20,0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 40px;
        gap: 30px;
        border-bottom: 1px solid var(--glass-border);
        
        /* Hidden State */
        opacity: 0; visibility: hidden; transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    /* Shown State (Toggled via JS) */
    .site-header.nav-active .nav {
        opacity: 1; visibility: visible; transform: translateY(0);
    }
    
    /* 2. Hero Layout */
    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 60px;
    }
    .hero-visual { 
        justify-content: center; 
        padding-right: 0; 
    }
    .cta-row, .trust-badges { 
        justify-content: center; 
    }

    /* 3. General Layouts */
    .split-layout, .form-grid { grid-template-columns: 1fr; }
    .hero { text-align: center; }
    .portrait-wrapper { max-width: 300px; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card::before { display: none; } 
    .pricing-card.featured { transform: scale(1); }
    h1 { font-size: 42px; }
    .reverse-mobile { display: flex; flex-direction: column-reverse; }
}

/* --- Pro Footer --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    text-align: left; /* Overrides previous center align */
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-nav {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-head {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
    opacity: 0.8;
}

.footer-nav a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--brand-cyan);
}

.location-tag {
    margin-top: 16px;
    color: var(--text-muted);
    opacity: 0.7;
    font-size: 13px;
}

.footer-divider {
    height: 1px;
    background: var(--glass-border);
    margin-bottom: 30px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    opacity: 0.6;
}

/* Mobile Footer Tweaks */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center; /* Center align for mobile usually looks better */
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-nav {
        justify-content: center;
        gap: 30px;
        text-align: center;
    }
    .footer-nav .col {
        min-width: 140px; /* Ensures columns don't squish */
    }
}
