/* CSS Variables */
:root {
    --primary-color: #28A0FF;
    --secondary-color: #6C5CE7;
    --background-dark: #0A0A19;
    --card-background: #1A1A2E;
    --text-primary: #FFFFFF;
    --text-secondary: #B4B4C8;
    --success-color: #00D9A3;
    --error-color: #FF5C5C;
    --border-radius: 12px;
    --promo-bg: #FFD700;
    --promo-text: #000000;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Space for fixed promo banner on mobile */
}

/* Additional padding for larger screens */
@media (min-width: 768px) {
    body {
        padding-top: 90px; /* Space for fixed promo banner on desktop */
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Promo Banner */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--promo-bg);
    color: var(--promo-text);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Mobile responsive promo content */
@media (max-width: 767px) {
    .promo-content {
        gap: 1rem;
        padding: 0 10px;
    }
    
    .promo-text {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .promo-message {
        font-size: 0.9rem;
    }
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-badge {
    background: var(--promo-text);
    color: var(--promo-bg);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.promo-message {
    font-weight: 600;
    font-size: 1rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--promo-text);
    color: var(--promo-bg);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    min-width: 60px;
}

/* Mobile responsive countdown */
@media (max-width: 767px) {
    .countdown-timer {
        gap: 0.25rem;
    }
    
    .countdown-item {
        padding: 0.4rem 0.5rem;
        min-width: 50px;
    }
    
    .countdown-value {
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.countdown-divider {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0 0.25rem;
}

/* Navigation */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(40, 160, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 160, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(40, 160, 255, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 10px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: inherit;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1em;
}

.stat-value {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.stat-plus {
    font-size: 1.2em;
    font-weight: inherit;
    color: inherit;
    opacity: 0.9;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive font size for stat numbers */
@media (min-width: 1024px) {
    .stat-number {
        font-size: 4rem;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -250px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -200px;
    left: -100px;
}

/* Section Styles */
section {
    padding: 10px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    background: var(--background-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(40, 160, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, var(--background-dark) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(40, 160, 255, 0.2);
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-position {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Social Proof Section */
.social-proof-section {
    background: var(--card-background);
    padding: 80px 0;
}

.social-proof-section .section-header {
    text-align: center;
    margin-bottom: 10px;
}

.social-proof-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.social-proof-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Wide screen layout - 3 images per row */
@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-image:hover {
    transform: scale(1.05);
}

/* Mobile responsive for social proof */
@media (max-width: 767px) {
    .social-proof-section {
        padding: 10px 0;
    }

    .social-proof-section .section-header h2 {
        font-size: 2rem;
    }

    .social-proof-section .section-header p {
        font-size: 1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 10px;
    }
}

/* Video Section */
.video-section {
    background: var(--background-dark);
    padding: 80px 0;
}

.video-section .section-header {
    text-align: center;
    margin-bottom: 10px;
}

.video-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.video-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-container {
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom video controls styling */
.video-container video::-webkit-media-controls-panel {
    background: rgba(10, 10, 25, 0.9);
}

.video-container video::-webkit-media-controls-current-time-display,
.video-container video::-webkit-media-controls-time-remaining-display {
    color: var(--text-primary);
}

.video-info {
    text-align: center;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile responsive for video section */
@media (max-width: 767px) {
    .video-section {
        padding: 10px 0;
    }

    .video-section .section-header h2 {
        font-size: 2rem;
    }

    .video-section .section-header p {
        font-size: 1rem;
    }

    .video-container {
        max-width: 100%;
        margin: 0 20px;
    }

    .video-info p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* Image Sections (shared styles for image-section-1 and image-section-2) */
.image-section-1,
.image-section-2 {
    padding: 80px 0;
}

.image-section-1 {
    background: var(--card-background);
}

.image-section-2 {
    background: var(--background-dark);
}

.image-section-1 .section-header,
.image-section-2 .section-header {
    text-align: center;
    margin-bottom: 10px;
}

.image-section-1 .section-header h2,
.image-section-2 .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.image-section-1 .section-header p,
.image-section-2 .section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.image-section-1 .image-content,
.image-section-2 .image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.image-section-1 .story-image,
.image-section-2 .story-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.image-section-1 .image-text,
.image-section-2 .image-text {
    text-align: center;
    max-width: 700px;
}

.image-section-1 .image-text p,
.image-section-2 .image-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

/* Mobile responsive for image sections */
@media (max-width: 767px) {
    .image-section-1,
    .image-section-2 {
        padding: 10px 0;
    }

    .image-section-1 .section-header h2,
    .image-section-2 .section-header h2 {
        font-size: 2rem;
    }

    .image-section-1 .section-header p,
    .image-section-2 .section-header p {
        font-size: 1rem;
    }

    .image-section-1 .image-content,
    .image-section-2 .image-content {
        gap: 10px;
        padding: 0 10px;
    }

    .image-section-1 .story-image,
    .image-section-2 .story-image {
        max-width: 100%;
    }

    .image-section-1 .image-text p,
    .image-section-2 .image-text p {
        font-size: 1rem;
    }
}

/* Audio Sections (shared styles for audio-section-1 and audio-section-2) */
.audio-section-1,
.audio-section-2 {
    padding: 80px 0;
}

.audio-section-1 {
    background: var(--card-background);
}

.audio-section-2 {
    background: var(--background-dark);
}

.audio-section-1 .section-header,
.audio-section-2 .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.audio-section-1 .section-header h2,
.audio-section-2 .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.audio-section-1 .section-header p,
.audio-section-2 .section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.audio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.audio-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.audio-player {
    width: 100%;
    max-width: 600px;
    height: 54px;
    border-radius: var(--border-radius);
    background: var(--background-dark);
    border: 1px solid var(--border-color);
}

/* Mobile responsive for audio sections */
@media (max-width: 767px) {
    .audio-section-1,
    .audio-section-2 {
        padding: 10px 0;
    }

    .audio-section-1 .section-header h2,
    .audio-section-2 .section-header h2 {
        font-size: 2rem;
    }

    .audio-section-1 .section-header p,
    .audio-section-2 .section-header p {
        font-size: 1rem;
    }

    .audio-content {
        gap: 20px;
        padding: 0 20px;
    }

    .audio-image {
        max-width: 100%;
    }

    .audio-player {
        max-width: 100%;
    }
}

/* Pricing Section */
.pricing {
    background: var(--background-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-background);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(40, 160, 255, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(40, 160, 255, 0.1), rgba(108, 92, 231, 0.1));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    margin: 0 auto;
    display: block;
    min-width: 200px;
}

/* Footer */
.footer {
    background: var(--card-background);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 25, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 1.5rem;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .promo-content {
        gap: 1rem;
    }

    .promo-text {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .countdown-item {
        min-width: 50px;
        padding: 0.4rem 0.5rem;
    }

    .countdown-value {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--card-background);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
