/* Callout Landing Page Styles - Dark Mode Premium */
:root {
    /* High-Vis Orange Brand Theme */
    --primary: #FF6B00;
    --primary-hover: #FF8533;
    --primary-glow: rgba(255, 107, 0, 0.3);

    --accent: #FFD93D;

    /* Dark Theme Palette */
    --bg-dark: #0F0F16;
    /* Deepest background */
    --bg-card: #1A1A26;
    /* Card background */
    --bg-card-hover: #222230;

    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 107, 0, 0.3);

    --success: #00C853;

    --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FF9100 100%);
    --gradient-dark: linear-gradient(180deg, #0F0F16 0%, #171721 100%);
    --gradient-card: linear-gradient(145deg, #1A1A26, #15151E);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(255, 107, 0, 0.15);

    --radius: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
    color: var(--text-muted);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    color: var(--primary-hover);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(255, 107, 0, 0.39);
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.23);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-main);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 22, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: all 0.3s;
}

.nav.scrolled {
    background: rgba(15, 15, 22, 0.95);
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img {
    height: 56px;
    /* Increased from 48px */
    width: auto;
    /* Remove contrast filter if it clashes */
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.2));
    border-radius: 8px;
    /* Slight radius to soften edges of the image box if visible */
}

.nav-logo span {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    position: relative;
    top: 1px;
    /* Optical alignment */
}

/* Light Mode Overrides */
.light-mode .nav-logo span {
    color: #1a1a1a;
    text-shadow: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    gap: 1rem;
}

.btn-nav-login {
    background: transparent;
    color: var(--text-main);
    padding: 0.5rem 1rem;
}

.btn-nav-login:hover {
    color: var(--primary);
}

/* Mobile Nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hamburger animation when active */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Mobile slide-in menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(15, 15, 22, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border);
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav-links a.nav-demo {
        margin-top: 1rem;
        background: rgba(255, 107, 0, 0.1);
        border: 1px solid var(--primary);
        border-radius: var(--radius);
        justify-content: center;
        color: var(--primary);
    }

    .nav-cta {
        position: fixed;
        bottom: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        background: rgba(15, 15, 22, 0.98);
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 0.75rem;
        border-top: 1px solid var(--border);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-cta.active {
        right: 0;
    }

    .nav-cta .btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }

    /* Mobile overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Hero mobile adjustments */
    .hero {
        padding-top: 5rem;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 2rem;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
        min-height: 48px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin: 0 -1rem;
    }

    .hero-image img {
        border-radius: var(--radius);
    }

    /* Ensure touch targets are minimum 44px */
    .btn,
    .nav-links a,
    .faq-question,
    .quick-reply {
        min-height: 44px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
    border: none;
    box-shadow: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.1);
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: opacity 0.5s ease-in-out;
    /* Smooth fade */
}

@media (max-width: 968px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

/* Problem Section */
.problem {
    padding: 4rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Subtle grid background */
.problem::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.problem-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problem-stat {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 2rem 0;
    filter: drop-shadow(0 0 40px rgba(255, 107, 0, 0.2));
}

/* Video Demo Section */
.video-demo {
    padding: 4rem 0;
    background: #0F0F16;
    text-align: center;
}

.video-wrapper {
    max-width: 900px;
    margin: 3rem auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #222230, #171721);
}

.play-button {
    width: 80px;
    height: 80px;
    background: #FF6B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 1rem;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
    transition: transform 0.2s;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-cta {
    margin-top: 3rem;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    margin-top: 1rem;
    font-size: 1.125rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.step:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

/* Features */
.features {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #171721 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

/* Use Cases */
.use-case {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: var(--shadow);
}

.use-case img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s;
    opacity: 0.8;
}

.use-case:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Testimonials */
.testimonials {
    background: #08080c;
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-dim);
    margin: 0;
}

/* Pricing */
.pricing {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

.pricing-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
}

.pricing-card.popular {
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.08), var(--bg-card));
    border: 1px solid rgba(255, 107, 0, 0.5);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 500;
}

.pricing-original {
    font-size: 1.25rem;
    color: var(--text-dim);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.promo-badge {
    background: rgba(255, 107, 0, 0.15);
    color: var(--accent);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.pricing-promo-text {
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: -0.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pricing-description {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin: 0 0 2.5rem 0;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Light Mode Pricing Overrides */
html.light-mode .pricing-card {
    background: #ffffff;
    border-color: #e5e7eb;
}

html.light-mode .pricing-name,
html.light-mode .pricing-description,
html.light-mode .pricing-features li {
    color: #4b5563;
    /* Darker grey for readable contrast */
}

html.light-mode .pricing-features li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

html.light-mode .pricing-price {
    color: #111827;
    /* Near black for price contrast */
}

html.light-mode .pricing-original {
    color: #4b5563;
    /* Darker grey for legibility */
    text-decoration: none;
    /* Removed the strikethrough as requested */
    font-weight: 700;
}

/* Standardize Free Trial Buttons in Pricing */
.pricing-card .btn {
    width: 100%;
}

.pricing-card.popular .btn {
    background: var(--primary);
    /* Force the bright orange */
    color: white;
}

.pricing-card:not(.popular) .btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text-main);
}

html.light-mode .pricing-card:not(.popular) .btn {
    color: #111827;
}

html.light-mode .pricing-card:not(.popular) .btn:hover {
    background: var(--primary);
    color: white;
}

/* FAQ */
.faq {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
    border-color: var(--primary);
    background: linear-gradient(to bottom, var(--bg-card), rgba(255, 107, 0, 0.03));
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer-inner p {
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.footer-brand p {
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-column h4 {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-dim);
}

@media (max-width: 968px) {
    .pricing-card.popular {
        transform: scale(1);
        z-index: 1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-brand h3 {
        justify-content: center;
    }

    /* How It Works — stack to single column */
    .steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .step {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {

    /* Nav — hide text links, keep hamburger */
    .nav-links {
        display: none;
    }

    .nav-actions .nav-link {
        display: none;
    }

    /* Prevent any horizontal bleed */
    body {
        overflow-x: hidden;
    }

    /* How It Works step numbers scale down */
    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    /* Section headers tighter on very small screens */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}

/* Layout Overrides & New Features */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .split-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Light Mode Overrides */
.light-mode {
    --bg-dark: #FAFAFA;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F3F4F6;
    --text-main: #111827;
    --text-muted: #4B5563;
    --text-dim: #6B7280;
    --border: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(255, 107, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.05);
}

.light-mode .problem {
    background: #FAFAFA;
}

.light-mode .problem::before {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

.light-mode .video-demo {
    background: #FAFAFA;
}

.light-mode .nav {
    background: rgba(250, 250, 250, 0.85);
}

.light-mode .nav.scrolled {
    background: rgba(250, 250, 250, 0.95);
}

.light-mode .features {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #FAFAFA 100%);
}

.light-mode .testimonials {
    background: #FAFAFA;
}

.light-mode .step-number {
    background: rgba(255, 107, 0, 0.1);
}

.logo-light {
    display: none;
}

.light-mode .logo-dark {
    display: none;
}

.light-mode .logo-light {
    display: block;
}

.nav-logo img {
    height: 56px;
    width: auto;
}

.light-mode .nav-logo span {
    color: var(--text-main);
}