/*
================================================
Reelify AI - Website Style
================================================
- Root & Base Styles
- Aurora Background Effect
- Header & Navigation
- Hero Section & Social Proof
- Problem/Solution Cards
- Features Grid
- Pricing Section
- FAQ Accordion
- Final CTA & Footer
- Scroll Animations
- Responsive Media Queries
================================================
*/

/* --- Root & Base Styles --- */
:root {
    --bg-dark: #000000;
    /* Pure black for seamless image blending */
    --bg-light: #0a0a0a;
    /* Very subtle dark surface */
    --text-primary: #F5F5F7;
    --text-secondary: #888888;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --border-color: rgba(255, 255, 255, 0.06);
    --success-green: #22C55E;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 15px;
}

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

.gradient-text {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Aurora Background Effect (Hidden for clean black look) --- */
.aurora-bg {
    display: none;
}

.aurora-dot {
    display: none;
}

.aurora-dot-1,
.aurora-dot-2,
.aurora-dot-3 {
    display: none;
}

@keyframes float {
    from {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    to {
        transform: translateY(50px) translateX(-50px) rotate(30deg);
    }
}

/* --- Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.main-header.scrolled::before {
    opacity: 1;
}

.main-header.scrolled {
    padding: 12px 32px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.main-header nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.main-header nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.main-header nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.cta-button-small {
    background: #FFFFFF;
    color: #0A0A10;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button-small:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    background: #FFFFFF;
    color: #0A0A10;
}

/* Small dropdown container styles */
.download-dropdown.small {
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.download-dropdown.small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

/* When inside small dropdown, override individual button styles */
.download-dropdown.small .cta-button-small {
    border-radius: 50px 0 0 50px;
    box-shadow: none;
    transition: none;
    flex: 1;
}

.download-dropdown.small .cta-button-small::before {
    display: none;
}

/* Standalone small button hover (not in dropdown) */
.cta-button-small:not(.download-dropdown .cta-button-small):hover {
    transform: translateY(-2px);
}

/* --- General Section Styling --- */
section {
    padding: 100px 0;
}

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

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* --- Hero Section & Social Proof --- */
.hero {
    text-align: center;
    padding: 140px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

/* Hero Headline with Inline Images */
.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
}

.headline-row {
    display: block;
    white-space: nowrap;
}

.inline-media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    margin: 0 10px;
}

.inline-img {
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inline-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.inline-img-landscape {
    width: 100px;
    height: 60px;
}

.inline-img-portrait {
    width: 45px;
    height: 75px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }
    
    .headline-row {
        white-space: normal;
    }
    
    .inline-img-landscape {
        width: 70px;
        height: 42px;
    }
    
    .inline-img-portrait {
        width: 32px;
        height: 54px;
    }
    
    .inline-media {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.9rem;
    }
    
    .inline-img-landscape {
        width: 55px;
        height: 33px;
    }
    
    .inline-img-portrait {
        width: 26px;
        height: 44px;
    }
}

.hero .subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

/* Download Dropdown Styles */
.download-dropdown {
    position: relative;
    display: inline-flex;
    align-items: stretch;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px var(--accent-blue);
    transition: all 0.3s ease;
}

.download-dropdown:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-purple);
}

.dropdown-toggle {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border: none;
    padding: 16px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 0 12px 12px 0;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.dropdown-toggle svg {
    width: 16px;
    height: 16px;
    color: var(--text-primary);
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.dropdown-toggle:hover svg {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    min-width: 200px;
    padding: 8px;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 4px;
}

.dropdown-item:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
}

.dropdown-item svg {
    opacity: 0.7;
}



.dropdown-toggle-small {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 0 50px 50px 0;
}

.dropdown-toggle-small::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.dropdown-toggle-small svg {
    width: 12px;
    height: 12px;
    color: var(--text-primary);
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.dropdown-toggle-small:hover svg {
    transform: rotate(180deg);
    opacity: 1;
}

@media (min-width: 768px) {
    .cta-group {
        flex-direction: row;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 16px 30px;
    }

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

    .hero .subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 24px;
    }


    .cta-group {
        width: 100%;
    }

    .cta-button-large {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 12px;
        padding: 0;
    }

    .hero-stat {
        text-align: center;
        padding: 18px;
    }

    .hero-stat-value {
        font-size: 1.1rem;
    }

    .hero-stat-label {
        text-align: center;
        line-height: 1.4;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 24px 28px;
    text-align: left;
}

.hero-stat-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    color: #0A0A10;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 50px;
    border: none;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

/* When inside dropdown, override individual button styles */
.download-dropdown .cta-button-large {
    border-radius: 50px 0 0 50px;
    box-shadow: none;
    transition: none;
    flex: 1;
}

/* Standalone button hover (not in dropdown) */
.cta-button-large:not(.download-dropdown .cta-button-large):hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    background: #FFFFFF;
}

.cta-button-large svg {
    width: 20px;
    height: 20px;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 12px;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.hero-visual {
    margin-top: 60px;
    max-width: 900px;
    width: 100%;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: #000;
    overflow: hidden;
}

.hero-visual img,
.hero-visual video {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
}

.social-proof {
    margin-top: 80px;
    text-align: center;
}

.social-proof p {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
    opacity: 0.5;
}

/* --- Hero Visual Showcase --- */
.hero-visual-showcase {
    margin: 50px 0 30px;
    width: 100%;
    max-width: 650px;
    position: relative;
}

.hero-visual-showcase img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
}

/* --- Feature Showcase (with images) --- */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-showcase.reverse .feature-showcase-content {
    order: 2;
}

.feature-showcase.reverse .feature-showcase-image {
    order: 1;
}

.feature-showcase-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-showcase-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-showcase-image {
    position: relative;
}

.feature-showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    display: block;
}

/* Feature Card Standalone (for single feature without image) */
.feature-card-standalone {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.feature-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-primary);
}

.feature-card-standalone h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card-standalone p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- How It Works Visual --- */
.how-it-works-visual {
    margin-bottom: 40px;
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-visual img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
}

/* --- See It In Action Section --- */
.see-it-in-action {
    background: var(--bg-dark);
    padding: 60px 0;
}

.action-showcase {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.action-showcase img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
}

/* --- Section Visual (consistent style for all distributed images) --- */
.section-visual {
    margin-top: 40px;
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-visual img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
}

/* --- Responsive Styles for Image Sections --- */
@media (max-width: 900px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

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

    .feature-showcase.reverse .feature-showcase-content,
    .feature-showcase.reverse .feature-showcase-image {
        order: unset;
    }

    .feature-showcase-content {
        text-align: center;
    }

    .feature-showcase-content h3 {
        font-size: 1.5rem;
    }

    .hero-visual-showcase {
        margin-top: 40px;
        padding: 0 10px;
    }
}

@media (max-width: 600px) {
    .feature-showcase {
        padding: 20px;
        margin-bottom: 40px;
    }

    .feature-showcase-content h3 {
        font-size: 1.3rem;
    }

    .feature-showcase-content p {
        font-size: 1rem;
    }

    .feature-card-standalone {
        padding: 30px 20px;
    }

    .how-it-works-visual,
    .action-showcase {
        padding: 0 10px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .final-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 30px auto;
    }
}

/* --- Testimonials Section --- */
.testimonials {
    background: var(--bg-light);
}

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

.testimonial-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Use Case Tags - Clean minimal style */
.use-case-tag {
    display: inline-block;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Creator Avatar for Use Cases */
.creator-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: none;
    box-shadow: none;
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Use Case Result Metrics - Clean minimal */
.use-case-result {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.result-metric {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.star-rating {
    color: #FFD700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.author-detail {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-style: normal;
}

/* --- How It Works Section --- */
.how-it-works {
    background: var(--bg-dark);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 40px 24px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Features Grid --- */
.badge-alt {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features {
    background: var(--bg-light);
}

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

.feature-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px;
    border-radius: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Pricing Section --- */
.pricing {
    background: var(--bg-light);
}

/* Platform tabs */
.platform-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background: var(--bg-dark);
    border-radius: 50px;
    padding: 6px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-color);
}

.platform-tab {
    flex: 1;
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.platform-tab.active {
    background: #FFFFFF;
    color: #0A0A10;
    box-shadow: 0 10px 25px rgba(5, 5, 8, 0.3);
}

.platform-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-plan {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 36px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-plan h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-plan .plan-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    min-height: 40px;
    /* Aligns heights */
}

.pricing-plan .price {
    font-size: 3rem;
    font-weight: 800;
    margin: 25px 0;
}

.pricing-plan .price-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-right: 10px;
    opacity: 0.7;
}

.early-access-note {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-plan {
    display: block;
    width: 100%;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    
    /* Glass effect for secondary */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta-button-plan:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.cta-button-plan.primary {
    background: #FFFFFF;
    color: #000000;
    border: none;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.cta-button-plan.primary:hover {
    background: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

.features-list {
    list-style: none;
    text-align: left;
    margin-top: 30px;
}

.features-list li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list .check {
    color: var(--success-green);
    font-weight: bold;
}

.pricing-plan.popular {
    transform: scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding-top: 48px;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    color: #0A0A10;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 10;
}

/* --- FAQ Accordion --- */
.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-accordion details {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
    border-radius: 24px;
}

.faq-accordion details:first-of-type {
    border-top: 1px solid var(--border-color);
}

.faq-accordion summary {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: var(--text-primary);
}

.faq-accordion details[open] summary::after {
    transform: rotate(45deg);
}

.faq-accordion details p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
}

/* --- Distribution Section --- */
.distribution-section {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.distribution-section .section-visual {
    max-width: 800px;
    margin-top: 50px;
}

.distribution-section .section-visual img {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
/* --- Final CTA & Footer --- */
.final-cta {
    text-align: center;
}

.final-cta h2 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* --- Footer Card Style --- */
.footer-wrapper {
    padding: 40px 20px 120px;
}

footer {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(30, 30, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 50px 40px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 40px 24px 30px;
        border-radius: 20px;
        margin: 0 16px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

/* --- Responsive Media Queries --- */
@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
    }

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

    .platform-tabs {
        max-width: none;
        width: 100%;
        margin-bottom: 30px;
    }

    .platform-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .pricing-plan {
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-plan.popular {
        transform: scale(1);
        /* Reset scale for better layout */
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .main-header {
        padding: 12px 16px;
    }

    .main-header nav {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
    }

    .cta-button-small {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Simplify header for mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 540px) {
    .platform-tabs {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
    }

    .platform-tab {
        width: 100%;
    }
}

/* 
--- Social Proof Section --- */
.social-proof-section {
    background: var(--bg-light);
    padding: 60px 0;
}

/* --- Before vs After Section --- */
.before-after {
    background: var(--bg-dark);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-side {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 32px;
    transition: all 0.3s ease;
}

.comparison-side:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.comparison-side h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
}

.comparison-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.genius .point {
    color: rgba(245, 245, 247, 0.9);
}

.comparison-side.genius {
    text-align: center;
}

.comparison-side.genius .comparison-points {
    text-align: left;
}

.point em {
    font-style: italic;
    color: var(--text-primary);
}

/* Genius CTA Button */
.genius-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 245, 0.85) 100%);
    color: #0A0A10;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 4px 24px rgba(255, 255, 255, 0.08),
        0 1px 3px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.genius-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.genius-cta:hover::before {
    left: 100%;
}

.genius-cta:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(255, 255, 255, 0.15),
        0 4px 12px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 250, 0.9) 100%);
}

.genius-cta svg {
    transition: transform 0.3s ease;
}

.genius-cta:hover svg {
    transform: translateX(4px);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* --- Responsive Updates --- */
@media (max-width: 900px) {
    .proof-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .proof-stats {
        grid-template-columns: 1fr;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 32px 18px;
    }

    .step-number {
        right: 16px;
    }
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 50%, var(--bg-dark) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-blue);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
    opacity: 0.3;
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }
}

/* ---
 Testimonials Section --- */
.testimonials {
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-carousel {
    margin-top: 50px;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-style: italic;
}

.author {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 20px;
    }

    .testimonials-track {
        gap: 20px;
    }
}

/* --- Platform Selection Modal --- */
.platform-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.platform-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.platform-modal-content {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 50px 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.platform-modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    color: var(--text-primary);
}

.platform-modal-content>p {
    text-align: center;
    color: #888888;
    font-size: 0.95rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.platform-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #888888;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.platform-modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(90deg);
}

.platform-buttons {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.platform-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.platform-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.platform-option:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.platform-option:hover::before {
    opacity: 1;
}

.platform-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: none;
}

.platform-option[data-platform="ios"] .platform-icon {
    background: linear-gradient(135deg, #e8e8ed, #f5f5f8);
    color: #555555;
}

.platform-option[data-platform="ios"]:hover .platform-icon {
    background: linear-gradient(135deg, #f0f0f5, #ffffff);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.platform-option[data-platform="android"] .platform-icon {
    background: linear-gradient(135deg, #e8e8ed, #f5f5f8);
    color: #555555;
}

.platform-option[data-platform="android"]:hover .platform-icon {
    background: linear-gradient(135deg, #f0f0f5, #ffffff);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.platform-info {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.platform-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.platform-info p {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin: 0;
    font-weight: 500;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .platform-modal-content {
        padding: 40px 25px;
        width: 95%;
        max-width: 95%;
        margin: 20px;
    }

    .platform-modal-content h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .platform-modal-content>p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .platform-modal-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }

    .platform-buttons {
        gap: 15px;
    }

    .platform-option {
        padding: 20px;
        gap: 15px;
    }

    .platform-option:active {
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.12);
    }

    .platform-icon {
        width: 50px;
        height: 50px;
    }

    .platform-icon svg {
        width: 30px;
        height: 30px;
    }

    .platform-info h3 {
        font-size: 1.2rem;
    }

    .platform-info p {
        font-size: 0.85rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .platform-modal-content {
        padding: 30px 20px;
        width: 92%;
        margin: 10px;
        border-radius: 20px;
    }

    .platform-modal-content h2 {
        font-size: 1.4rem;
    }

    .platform-modal-content>p {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }

    .platform-buttons {
        gap: 12px;
    }

    .platform-option {
        padding: 18px 16px;
        gap: 12px;
        border-radius: 14px;
    }

    .platform-icon {
        width: 45px;
        height: 45px;
    }

    .platform-icon svg {
        width: 26px;
        height: 26px;
    }

    .platform-info h3 {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }

    .platform-info p {
        font-size: 0.8rem;
    }
}

/* Update CTA button to work as button element */
.cta-button-large,
.cta-button-small {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

button.cta-button-large,
button.cta-button-small {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

button.cta-button-plan {
    width: 100%;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
}

/* Mobile touch improvements */
@media (hover: none) and (pointer: coarse) {
    .platform-option:hover {
        transform: none;
    }

    .platform-option:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.12);
    }

    .platform-modal-close:hover {
        transform: none;
    }

    .platform-modal-close:active {
        transform: scale(0.9);
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* --- Floating CTA Bar --- */
.floating-cta-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 90;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.floating-cta-bar.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-cta-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 20px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    
    /* Glassmorphism */
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-cta-pill:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.floating-cta-icon {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.floating-cta-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.floating-cta-button {
    background: #FFFFFF;
    color: #000000;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.floating-cta-pill:hover .floating-cta-button {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Mobile Floating CTA */
@media (max-width: 600px) {
    .floating-cta-bar {
        bottom: 16px;
        width: calc(100% - 32px);
        left: 16px;
        transform: translateX(0) translateY(100px);
    }
    
    .floating-cta-bar.visible {
        transform: translateX(0) translateY(0);
    }
    
    .floating-cta-pill {
        width: 100%;
        justify-content: space-between;
        padding: 6px 6px 6px 16px;
        gap: 8px;
    }
    
    .floating-cta-text {
        font-size: 0.85rem;
    }
    
    .floating-cta-button {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}