/* ============================================
   TALECLIP LANDING PAGE STYLES
   Inspired by Frame.io — cinematic dark premium
   ============================================ */

/* Reset and Base */
.landing-page {
    margin: 0;
    padding: 0;
    background: #06080f;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.landing-page * {
    box-sizing: border-box;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */

.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: all 0.4s ease;
}

.landing-header.scrolled {
    background: rgba(6, 8, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
}

.header-logo .logo-icon {
    color: var(--primary);
    font-size: 1.75rem;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-header-login {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-header-login:hover {
    color: #fff;
}

.btn-header-signup {
    background: var(--primary);
    border: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-header-signup:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--primary) 30%, transparent);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */

.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, color-mix(in srgb, var(--primary) 25%, transparent), transparent),
        radial-gradient(ellipse 50% 50% at 80% 60%, color-mix(in srgb, var(--accent, #eab308) 10%, transparent), transparent),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(59, 130, 246, 0.06), transparent);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 28px;
    color: #fff;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 40px;
    line-height: 1.8;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #000;
    border: none;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.01em;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--accent, #eab308) 35%, transparent);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.btn-cta-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.badge-icon {
    color: var(--secondary);
    font-weight: bold;
}

/* Hero Video */
.hero-visual {
    position: relative;
}

.hero-video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 25px 80px -20px color-mix(in srgb, var(--primary) 30%, transparent),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    border: none;
    animation: heroFloat 6s ease-in-out infinite;
}

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

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    background: #0c1020;
    min-height: 300px;
}

/* Hero Preview Grid (replacement for video) */
.hero-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-preview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.hero-preview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.preview-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.preview-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Video Wrapper (duplicate cleanup) */
.hero-video-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */

.landing-showcase {
    padding: 120px 0;
    background: #06080f;
    position: relative;
}

.landing-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.showcase-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.showcase-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.showcase-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-label {
    padding: 20px;
}

.showcase-label h4 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.showcase-label p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SECTION COMMON
   ============================================ */

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

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.landing-features {
    padding: 140px 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, color-mix(in srgb, var(--primary) 6%, transparent), transparent),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(59, 130, 246, 0.04), transparent),
        #06080f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--primary) 30%, transparent);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 20%, transparent), color-mix(in srgb, var(--accent, #eab308) 10%, transparent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon {
    font-size: 1.75rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 20px;
    font-size: 0.93rem;
    line-height: 1.7;
}

.feature-media {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    aspect-ratio: 16/9;
}

.feature-media video,
.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Audio Wave Animation */
.audio-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 100%;
}

.wave-bar {
    width: 8px;
    background: var(--primary);
    border-radius: 4px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 40%; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 60%; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 40%; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 20%; animation-delay: 0.6s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.landing-steps {
    padding: 140px 0;
    position: relative;
    background: #06080f;
}

.landing-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--primary) 25%, transparent);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}

.step-content p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

.step-icon {
    font-size: 2.5rem;
    margin-top: 20px;
    opacity: 0.4;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 56px;
    color: rgba(255, 255, 255, 0.15);
}

.connector-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.connector-arrow {
    font-size: 1.25rem;
    margin-left: -4px;
}

/* ============================================
   USE CASES SECTION
   ============================================ */

.landing-usecases {
    padding: 140px 0;
    position: relative;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, color-mix(in srgb, var(--primary) 5%, transparent), transparent),
        #06080f;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .usecases-grid {
        grid-template-columns: 1fr;
    }
}

.usecase-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.4s ease;
}

.usecase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.usecase-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.usecase-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}

.usecase-card p {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 20px;
    line-height: 1.7;
}

.usecase-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usecase-benefits li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.usecase-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.landing-testimonials {
    padding: 140px 0;
    position: relative;
    background: #06080f;
}

.landing-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: #fff;
    font-size: 0.95rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.landing-pricing {
    padding: 140px 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, color-mix(in srgb, var(--primary) 5%, transparent), transparent),
        #06080f;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 44px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border-color: color-mix(in srgb, var(--primary) 40%, transparent);
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 8%, transparent) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 16px 0 24px;
    color: #fff;
}

.pricing-amount {
    margin-bottom: 16px;
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.pricing-amount .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.pricing-desc {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.93rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--primary) 50%, transparent);
    color: var(--primary);
}

.btn-pricing:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--primary) 25%, transparent);
}

.btn-pricing.featured {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-pricing.featured:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--primary) 30%, transparent);
}

.pricing-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
    margin-top: 40px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.landing-faq {
    padding: 140px 0;
    position: relative;
    background: #06080f;
}

.landing-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #fff;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */

.landing-stats {
    padding: 100px 0;
    position: relative;
    background: #06080f;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */

.landing-cta {
    padding: 160px 0;
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, color-mix(in srgb, var(--primary) 15%, transparent), transparent),
        radial-gradient(ellipse 40% 40% at 20% 50%, rgba(59, 130, 246, 0.04), transparent),
        #06080f;
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 20px;
    color: #fff;
    letter-spacing: -0.02em;
}

.cta-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 40px;
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: #000;
    border: none;
    padding: 20px 52px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px color-mix(in srgb, var(--accent, #eab308) 40%, transparent);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */

.landing-footer {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand .logo-icon {
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}

/* ============================================
   AUTH MODAL (Landing Page Version)
   ============================================ */

.landing-page .auth-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.landing-page .auth-modal-content {
    position: relative;
    background: rgba(15, 18, 30, 0.95);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    margin: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.75rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
}

.auth-modal-close:hover {
    color: #fff;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    /* Reduce section padding on tablet */
    .landing-features,
    .landing-steps,
    .landing-usecases,
    .landing-testimonials,
    .landing-pricing,
    .landing-faq {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 0;
        margin: -10px 0;
    }

    .stats-grid {
        gap: 32px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .landing-page .auth-modal-content {
        padding: 32px 24px;
        margin: 16px;
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }

    /* Reduce section padding on mobile */
    .landing-features,
    .landing-steps,
    .landing-usecases,
    .landing-testimonials,
    .landing-pricing,
    .landing-faq {
        padding: 80px 0;
    }

    .landing-cta {
        padding: 100px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 12px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .btn-cta-large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

/* Desktop: wrapper is invisible to flex layout */
.mobile-nav-overlay {
    display: contents;
}

/* Mobile Navigation Overlay */
@media (max-width: 768px) {
    /* Hidden by default on mobile */
    .mobile-nav-overlay {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(6, 8, 15, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        z-index: 999;
        animation: slideDown 0.3s ease;
    }

    .mobile-nav-overlay.active {
        display: flex;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Nav links inside overlay */
    .mobile-nav-overlay .header-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile-nav-overlay .header-nav a {
        padding: 14px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Login/signup buttons inside overlay */
    .mobile-nav-overlay .header-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 20px;
    }

    .mobile-nav-overlay .header-actions .btn-header-login,
    .mobile-nav-overlay .header-actions .btn-header-signup {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    /* iOS safe area */
    .landing-header {
        padding-top: env(safe-area-inset-top, 0px);
    }

    /* Input zoom prevention */
    input, select, textarea { font-size: 16px; }
}

/* Extra-small phones */
@media (max-width: 380px) {
    .hero-title { font-size: 1.85rem; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.5rem; }
    .step-number { width: 40px; height: 40px; font-size: 1rem; }
    .feature-card, .usecase-card { padding: 20px; }
}
