/* 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: 0.5rem;
}

.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: 20px 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: 20px 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: 600px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.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 through image-section-10) */
.image-section-1,
.image-section-2,
.image-section-3,
.image-section-4,
.image-section-5,
.image-section-6,
.image-section-7,
.image-section-8,
.image-section-9,
.image-section-10 {
    padding: 20px 0;
}

.image-section-1 {
    background: var(--card-background);
}

.image-section-2 {
    background: var(--background-dark);
}

.image-section-3 {
    background: var(--card-background);
}

.image-section-4 {
    background: var(--background-dark);
}

.image-section-5 {
    background: var(--card-background);
}

.image-section-6 {
    background: var(--background-dark);
}

.image-section-7 {
    background: var(--card-background);
}

.image-section-8 {
    background: var(--background-dark);
}

.image-section-9 {
    background: var(--card-background);
}

.image-section-10 {
    background: var(--background-dark);
}

.image-section-1 .section-header,
.image-section-2 .section-header,
.image-section-3 .section-header,
.image-section-4 .section-header,
.image-section-5 .section-header,
.image-section-6 .section-header,
.image-section-7 .section-header,
.image-section-8 .section-header,
.image-section-9 .section-header,
.image-section-10 .section-header {
    text-align: center;
    margin-bottom: 10px;
}

.image-section-1 .section-header h2,
.image-section-2 .section-header h2,
.image-section-3 .section-header h2,
.image-section-4 .section-header h2,
.image-section-5 .section-header h2,
.image-section-6 .section-header h2,
.image-section-7 .section-header h2,
.image-section-8 .section-header h2,
.image-section-9 .section-header h2,
.image-section-10 .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,
.image-section-3 .section-header p,
.image-section-4 .section-header p,
.image-section-5 .section-header p,
.image-section-6 .section-header p,
.image-section-7 .section-header p,
.image-section-8 .section-header p,
.image-section-9 .section-header p,
.image-section-10 .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,
.image-section-3 .image-content,
.image-section-4 .image-content,
.image-section-5 .image-content,
.image-section-6 .image-content,
.image-section-7 .image-content,
.image-section-8 .image-content,
.image-section-9 .image-content,
.image-section-10 .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,
.image-section-3 .story-image,
.image-section-4 .story-image,
.image-section-5 .story-image,
.image-section-6 .story-image,
.image-section-7 .story-image,
.image-section-8 .story-image,
.image-section-9 .story-image,
.image-section-10 .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,
.image-section-3 .image-text,
.image-section-4 .image-text,
.image-section-5 .image-text,
.image-section-6 .image-text,
.image-section-7 .image-text,
.image-section-8 .image-text,
.image-section-9 .image-text,
.image-section-10 .image-text {
    text-align: center;
    max-width: 700px;
}

.image-section-1 .image-text p,
.image-section-2 .image-text p,
.image-section-3 .image-text p,
.image-section-4 .image-text p,
.image-section-5 .image-text p,
.image-section-6 .image-text p,
.image-section-7 .image-text p,
.image-section-8 .image-text p,
.image-section-9 .image-text p,
.image-section-10 .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,
    .image-section-3,
    .image-section-4,
    .image-section-5,
    .image-section-6,
    .image-section-7,
    .image-section-8,
    .image-section-9,
    .image-section-10 {
        padding: 10px 0;
    }

    .image-section-1 .section-header h2,
    .image-section-2 .section-header h2,
    .image-section-3 .section-header h2,
    .image-section-4 .section-header h2,
    .image-section-5 .section-header h2,
    .image-section-6 .section-header h2,
    .image-section-7 .section-header h2,
    .image-section-8 .section-header h2,
    .image-section-9 .section-header h2,
    .image-section-10 .section-header h2 {
        font-size: 2rem;
    }

    .image-section-1 .section-header p,
    .image-section-2 .section-header p,
    .image-section-3 .section-header p,
    .image-section-4 .section-header p,
    .image-section-5 .section-header p,
    .image-section-6 .section-header p,
    .image-section-7 .section-header p,
    .image-section-8 .section-header p,
    .image-section-9 .section-header p,
    .image-section-10 .section-header p {
        font-size: 1rem;
    }

    .image-section-1 .image-content,
    .image-section-2 .image-content,
    .image-section-3 .image-content,
    .image-section-4 .image-content,
    .image-section-5 .image-content,
    .image-section-6 .image-content,
    .image-section-7 .image-content,
    .image-section-8 .image-content,
    .image-section-9 .image-content,
    .image-section-10 .image-content {
        gap: 20px;
        padding: 0 20px;
    }

    .image-section-1 .story-image,
    .image-section-2 .story-image,
    .image-section-3 .story-image,
    .image-section-4 .story-image,
    .image-section-5 .story-image,
    .image-section-6 .story-image,
    .image-section-7 .story-image,
    .image-section-8 .story-image,
    .image-section-9 .story-image,
    .image-section-10 .story-image {
        max-width: 100%;
    }

    .image-section-1 .image-text p,
    .image-section-2 .image-text p,
    .image-section-3 .image-text p,
    .image-section-4 .image-text p,
    .image-section-5 .image-text p {
        font-size: 1rem;
    }
}

/* Audio Sections (shared styles for audio-section-1 through audio-section-5) */
.audio-section-1,
.audio-section-2,
.audio-section-3,
.audio-section-4,
.audio-section-5 {
    padding: 80px 0;
}

.audio-section-1 {
    background: var(--card-background);
}

.audio-section-2 {
    background: var(--background-dark);
}

.audio-section-3 {
    background: var(--card-background);
}

.audio-section-4 {
    background: var(--background-dark);
}

.audio-section-5 {
    background: var(--card-background);
}

.audio-section-1 .section-header,
.audio-section-2 .section-header,
.audio-section-3 .section-header,
.audio-section-4 .section-header,
.audio-section-5 .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.audio-section-1 .section-header h2,
.audio-section-2 .section-header h2,
.audio-section-3 .section-header h2,
.audio-section-4 .section-header h2,
.audio-section-5 .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,
    .audio-section-3,
    .audio-section-4,
    .audio-section-5 {
        padding: 40px 0;
    }

    .audio-section-1 .section-header h2,
    .audio-section-2 .section-header h2,
    .audio-section-3 .section-header h2,
    .audio-section-4 .section-header h2,
    .audio-section-5 .section-header h2 {
        font-size: 2rem;
    }

    .audio-section-1 .section-header p,
    .audio-section-2 .section-header p,
    .audio-section-3 .section-header p,
    .audio-section-4 .section-header p,
    .audio-section-5 .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);
}

/* One Offer Section */
.one-offer {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 160, 0, 0.1));
    padding: 20px 0;
}

.offer-card {
    background: var(--card-background);
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.offer-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #ffa000);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.offer-header {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.offer-header h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 2rem;
    color: var(--primary-color);
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.offer-note {
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: 600;
    margin-top: 0.5rem;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.offer-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-cta {
    margin-top: 2rem;
    text-align: center;
}

.contact-options h4 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-options > p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-facebook {
    background: #1877f2 !important;
    color: white !important;
    border: 2px solid #1877f2 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-facebook:hover {
    background: #166fe5 !important;
    border-color: #166fe5 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.btn-whatsapp {
    background: #25d366 !important;
    color: white !important;
    border: 2px solid #25d366 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1da851 !important;
    border-color: #1da851 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.social-icon {
    font-size: 1.2rem;
}

/* Requirements Section */
.requirements {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1), rgba(255, 105, 180, 0.1));
    padding: 10px 0;
}

.requirements-content {
    max-width: 800px;
    margin: 0 auto;
}

.requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Tablet and Desktop: 3 cards in one row */
@media (min-width: 768px) {
    .requirements-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.requirement-item {
    background: var(--card-background);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 182, 193, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.requirement-icon {
    font-size: 3rem;
    margin-bottom: 0.1rem;
}

.requirement-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #ffa000);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.requirement-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.requirement-text p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.requirements-cta {
    text-align: center;
}

.delivery-promise {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.1));
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
}

.delivery-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.delivery-promise h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.delivery-promise p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.delivery-promise strong {
    color: var(--primary-color);
    font-weight: 700;
}

.urgency-note {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 140, 0, 0.1));
    border: 2px solid rgba(255, 69, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

.urgency-note p {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

/* 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);
}

/* Mobile responsive for contact buttons */
@media (max-width: 767px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-facebook,
    .btn-whatsapp {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .contact-options h4 {
        font-size: 1.2rem;
    }
}
