/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #121212;
    overflow-x: hidden;
}

/* Brand Colors */
:root {
    --primary-blue: #1E5EFF;
    --success-green: #00D37F;
    --action-orange: #FF7A00;
    --dark-bg: #121212;
    --white: #FFFFFF;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
}

/* Typography - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Container - Mobile First */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header - Mobile First */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #121212;
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Centered CTA Button */
.center-cta {
    display: flex;
    justify-content: center;
}

.cta-button-center {
    background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 94, 255, 0.3);
    white-space: nowrap;
}

.cta-button-center:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 94, 255, 0.4);
}

/* Right Navigation */
.right-nav {
    display: flex;
    justify-content: flex-end;
}

/* Desktop Navigation - Hidden on Mobile */
.desktop-nav {
    display: none;
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

.mobile-nav {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--success-green);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Hero Section - Mobile First */
.value-demo {
    padding-top: 80px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #16213e 100%);
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Feature Sections - Mobile First (Image on Top) */
.feature-section {
    margin-bottom: 80px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.feature-image {
    order: 1;
    width: 100%;
}

.feature-text {
    order: 2;
    width: 100%;
}

/* Mobile Voice Demo Button Positioning */
.voice-integration-btn {
    margin: 1.5rem auto 0;
    display: block;
}

/* Mobile: Move voice button above image */
@media (max-width: 767px) {
    .feature-section .feature-content {
        display: flex;
        flex-direction: column;
    }
    
    /* Draft Room Section - Mobile Order: Voice Button → Image → Title → Features */
    .feature-section:first-of-type .draft-voice-demo.mobile-only {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .feature-section:first-of-type .feature-image {
        order: 2;
        margin-bottom: 1.5rem;
    }
    
    .feature-section:first-of-type .feature-text {
        order: 3;
        text-align: center;
    }
    
    /* Voice Interaction Section - Mobile Order: Voice Button → Image → Title → Features */
    .feature-section:nth-of-type(2) .voice-integration-btn {
        order: 1;
        margin: 0 auto 1rem;
        display: block;
        align-self: center;
    }
    
    .feature-section:nth-of-type(2) .feature-image {
        order: 2;
        margin-bottom: 1.5rem;
    }
    
    .feature-section:nth-of-type(2) .feature-text {
        order: 3;
        text-align: center;
    }
    
    /* General mobile voice button styling */
    .voice-integration-btn {
        margin: 0 auto 1rem;
        display: block;
        align-self: center;
    }
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.feature-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 122, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 122, 0, 0.6);
}

.feature-placeholder {
    background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
}

.feature-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* AI Coaches Section */
.ai-coaches {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #121212 100%);
}

/* Dopamine Colors for Coaches Title */
.coaches-title {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.coaches-title-part1 {
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.coaches-title-part2 {
    color: var(--action-orange);
    text-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
    margin-right: 1rem;
}

.coaches-title-part3 {
    color: var(--success-green);
    text-shadow: 0 0 20px rgba(0, 211, 127, 0.5);
    margin-right: 1rem;
}

.coaches-title-part4 {
    color: var(--secondary-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.ai-personas {
    text-align: center;
    margin-bottom: 3rem;
}

.personas-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 122, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.personas-img:hover {
    transform: scale(1.01);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 122, 0, 0.6);
}

.personas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.persona-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.persona-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--success-green);
    box-shadow: 0 15px 30px rgba(0, 211, 127, 0.2);
}

.persona-name {
    font-size: 1.3rem;
    color: var(--success-green);
    margin-bottom: 1rem;
}

.persona-description {
    color: var(--gray-light);
    line-height: 1.5;
    font-size: 0.95rem;
}
/* Pricing Logo */
.pricing-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-logo-img {
    height: 120px;
    width: auto;
}

/* Mobile/Desktop visibility classes */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
    
    .pricing-logo-img {
        height: 160px;
    }
}

/* Pricing Section */ Mobile First */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #0f0f23 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    background: rgba(30, 94, 255, 0.1);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--action-orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.plan-name {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success-green);
}

.price-period {
    font-size: 1rem;
    color: var(--gray-light);
}

.price-alternative {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.plan-button {
    background: linear-gradient(135deg, var(--success-green), var(--primary-blue));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 0.9rem;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 211, 127, 0.3);
    filter: brightness(1.1);
}

.plan-guarantee {
    font-size: 0.8rem;
    color: var(--success-green);
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}

.plan-early-access {
    font-size: 0.85rem;
    color: var(--action-orange);
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 600;
}

.plan-discount {
    background: var(--action-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.final-cta {
    text-align: center;
    margin-top: 3rem;
}

.trust-builder {
    color: var(--success-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-proof {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 1rem 0;
    line-height: 1.4;
}

.urgency {
    font-size: 1rem;
    color: var(--action-orange);
    font-weight: 600;
}

/* Footer - Mobile First */
.footer {
    background: #0a0a0a;
    padding: 2rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 90px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--success-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-medium);
    font-size: 0.8rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 2.2rem;
        text-align: left;
    }
    
    .logo-img {
        height: 45px;
    }
    
    /* Show desktop navigation on tablet and up */
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .cta-button-center {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 30px;
    }
    
    .nav-link {
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover {
        color: var(--success-green);
    }
    
    /* Hide hamburger on tablet and up */
    .hamburger-menu {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .feature-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .feature-image {
        order: unset;
    }
    
    .feature-text {
        order: unset;
    }
    
    .feature-section.reverse .feature-text {
        order: 2;
    }
    
    .feature-section.reverse .feature-image {
        order: 1;
    }
    
    .feature-section {
        margin-bottom: 120px;
    }
    
    .personas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .feature-title {
        font-size: 2.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .desktop-nav {
        gap: 2rem;
    }
    
    .feature-content {
        gap: 4rem;
    }
    
    .feature-section {
        margin-bottom: 150px;
    }
    
    .personas-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.08) translateY(-10px);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-section,
.persona-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.cta-button-center:focus,
.plan-button:focus,
.nav-link:focus {
    outline: 2px solid var(--success-green);
    outline-offset: 2px;
}

/* Image Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Mobile landscape orientation for lightbox */
@media (max-width: 768px) and (orientation: landscape) {
    .lightbox-image {
        width: 100%;
        height: auto;
    }
}

/* Clickable image cursor */
.feature-img {
    cursor: pointer;
}

/* Voice Integration Button Glow Effects */
.voice-integration-btn {
    position: relative;
    background: linear-gradient(135deg, #1E5EFF, #00D37F);
    border: none;
    border-radius: 30px;
    padding: 2rem 3rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(30, 94, 255, 0.3);
    animation: microphoneGlow 2s ease-in-out infinite alternate;
    min-width: 200px;
    min-height: 60px;
}

.voice-integration-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(255, 122, 0, 0.6);
    animation: microphoneGlowHover 1s ease-in-out infinite alternate;
}

.voice-integration-btn:active {
    transform: translateY(0);
    animation: microphonePulse 0.3s ease-out;
}

.voice-integration-btn.playing {
    animation: microphonePlaying 0.5s ease-in-out infinite alternate;
    box-shadow: 0 16px 50px rgba(0, 211, 127, 0.8);
}

/* Microphone Glow Animations */
@keyframes microphoneGlow {
    0% {
        box-shadow: 0 8px 30px rgba(30, 94, 255, 0.3), 0 0 40px rgba(255, 122, 0, 0.4);
    }
    100% {
        box-shadow: 0 8px 30px rgba(30, 94, 255, 0.5), 0 0 60px rgba(255, 122, 0, 0.7);
    }
}

@keyframes microphoneGlowHover {
    0% {
        box-shadow: 0 16px 50px rgba(255, 122, 0, 0.6), 0 0 70px rgba(0, 211, 127, 0.5);
    }
    100% {
        box-shadow: 0 16px 50px rgba(255, 122, 0, 0.8), 0 0 90px rgba(0, 211, 127, 0.8);
    }
}

@keyframes microphonePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes microphonePlaying {
    0% {
        box-shadow: 0 8px 25px rgba(0, 211, 127, 0.8), 0 0 40px rgba(0, 211, 127, 0.6);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 211, 127, 1), 0 0 50px rgba(0, 211, 127, 0.9);
        transform: scale(1.02);
    }
}

/* Audio Loading State */
.voice-integration-btn.loading {
    opacity: 0.7;
    cursor: wait;
}

.voice-integration-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Founding Member Counter Styles */
.founding-member-counter {
    margin: 2rem 0;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(0, 211, 127, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(255, 122, 0, 0.3);
}

.counter-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-display {
    display: inline-block;
    background: linear-gradient(135deg, #ff7a00, #00d37f);
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

.counter-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .founding-member-counter {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .counter-title {
        font-size: 1rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-display {
        padding: 0.8rem 1.5rem;
    }
}


/* Pricing Toggle Styles */
.pricing-toggle-container {
    text-align: center;
    margin: 2rem 0;
}

.pricing-toggle-subtitle {
    font-size: 1rem;
    color: var(--action-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

.toggle-option {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.toggle-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.toggle-option.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(30, 94, 255, 0.4);
}

/* Dynamic Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    transition: all 0.3s ease;
}

/* Monthly view - center only 2 cards */
.pricing-grid.monthly-view {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    justify-content: center;
    max-width: 700px;
    margin: 3rem auto;
}

/* Hide Champion plan in monthly view */
.pricing-grid.monthly-view .pricing-card[data-period="season"] {
    display: none;
}

/* Pricing card transitions */
.pricing-card {
    transition: all 0.3s ease;
}

/* Plan extra info styling */
.plan-extra {
    font-size: 0.9rem;
    color: var(--success-green);
    margin: 0.5rem 0;
    font-weight: 600;
}

/* Mobile responsive for toggle */
@media (max-width: 768px) {
    .pricing-toggle-subtitle {
        font-size: 0.9rem;
    }
    
    .toggle-option {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .pricing-grid.monthly-view {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}


/* Strike-through Pricing Styles */
.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
    font-size: 0.9em;
}

.discounted-price {
    color: var(--success-green);
    font-weight: 800;
}

/* Release Dates Styling */
.release-dates {
    margin: 1rem 0;
    text-align: center;
}

.release-title {
    color: var(--action-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: underline;
    text-align: center;
}

.release-item {
    color: var(--action-orange);
    font-size: 0.85rem;
    margin: 0.25rem 0;
    font-weight: 500;
    text-align: center;
}

/* Social Proof Text - White Color */
.trust-builder {
    color: #ffffff !important;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Mobile responsive for pricing */
@media (max-width: 768px) {
    .original-price {
        font-size: 0.8em;
        margin-right: 0.3rem;
    }
    
    .release-title {
        font-size: 0.8rem;
    }
    
    .release-item {
        font-size: 0.75rem;
    }
    
    .trust-builder {
        font-size: 1rem;
    }
}


/* Trust Badges Styles */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 94, 255, 0.1), rgba(0, 211, 127, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Money Back Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--success-green), #00b86b);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 211, 127, 0.3);
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 211, 127, 0.4);
}

.badge-icon {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.badge-content {
    color: #ffffff;
}

.badge-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
    opacity: 0.9;
    font-weight: 500;
}

/* Secure Payment Badge */
.security-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), #1a4ed8);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 94, 255, 0.3);
    transition: all 0.3s ease;
}

.security-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 94, 255, 0.4);
}

.security-icons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}

.stripe-badge {
    color: #ffffff;
    opacity: 0.9;
}

.security-content {
    color: #ffffff;
}

.security-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.security-subtitle {
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
    opacity: 0.9;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
    
    .guarantee-badge,
    .security-badge {
        padding: 1.25rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }
    
    .badge-title,
    .security-title {
        font-size: 1rem;
    }
    
    .badge-subtitle,
    .security-subtitle {
        font-size: 0.85rem;
    }
    
    .badge-icon {
        width: 40px;
        height: 40px;
    }
    
    .security-icons {
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .guarantee-badge,
    .security-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .security-icons {
        flex-direction: row;
        gap: 1rem;
    }
}


/* Counter Update Time Styling */
.counter-update-time {
    color: #999;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .counter-update-time {
        font-size: 0.75rem;
    }
}


/* Limited Time Offer Styles */

/* Top Banner Offer */
.offer-banner {
    background: linear-gradient(90deg, #ff4444, #ff6b35, #ff4444);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
    color: white;
    text-align: center;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 68, 68, 0.3);
}

.offer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.offer-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Section Offer */
.hero-offer {
    margin-top: 1.5rem;
    text-align: center;
}

.hero-offer-text {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444, #ff6b35);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

/* Pricing Section Offer */
.pricing-offer {
    margin: 1.5rem 0;
    text-align: center;
}

.pricing-offer-text {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444, #ff6b35);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes glow {
    0% { box-shadow: 0 6px 20px rgba(255, 68, 68, 0.3); }
    100% { box-shadow: 0 8px 30px rgba(255, 68, 68, 0.5); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .offer-text {
        font-size: 0.9rem;
    }
    
    .hero-offer-text {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .pricing-offer-text {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .offer-text {
        font-size: 0.8rem;
    }
    
    .hero-offer-text {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .pricing-offer-text {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}


/* Mobile responsive adjustments for larger voice demo buttons */
@media (max-width: 768px) {
    .voice-integration-btn {
        padding: 1.5rem 2.5rem;
        font-size: 1.1rem;
        min-width: 180px;
        min-height: 50px;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .voice-integration-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: 160px;
        min-height: 45px;
        border-radius: 20px;
    }
}


/* Hero Sub-Headline Styling */
.hero-sub-headline {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--success-green);
    text-align: center;
    margin: 1rem 0 0 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-sub-headline {
        font-size: 1.1rem;
        margin: 0.75rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .hero-sub-headline {
        font-size: 1rem;
        margin: 0.5rem 0 0 0;
    }
}



/* Button Date Styles - Inside Button */
.button-date {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 0.25rem;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
}

/* Mobile responsive for button date */
@media (max-width: 768px) {
    .button-date {
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }
}

@media (max-width: 480px) {
    .button-date {
        font-size: 0.7rem;
        margin-top: 0.15rem;
    }
}

