:root {
    /* Modern Light Theme Colors - New Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0a1629;
    --text-secondary: #4a5568;
    --text-tertiary: #718096;
    --accent-primary: #2563eb;
    --accent-secondary: #10b981;
    --accent-hover: #1d4ed8;
    --accent-light: #dbeafe;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(10, 22, 41, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(10, 22, 41, 0.1), 0 2px 4px -2px rgba(10, 22, 41, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(10, 22, 41, 0.1), 0 4px 6px -4px rgba(10, 22, 41, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(10, 22, 41, 0.1), 0 8px 10px -6px rgba(10, 22, 41, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(10, 22, 41, 0.25);
    
    /* Modern Gradients - Blue to Emerald */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #10b981 50%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    --gradient-hero: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #10b981 100%);
    --gradient-card: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    --gradient-offer: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #f97316 100%);
}

[data-theme="dark"] {
    /* Modern Dark Theme Colors - New Palette */
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f2e;
    --bg-tertiary: #252b3a;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --accent-primary: #3b82f6;
    --accent-secondary: #34d399;
    --accent-hover: #60a5fa;
    --accent-light: #1e3a5f;
    --success: #34d399;
    --warning: #fbbf24;
    --error: #f87171;
    --border-color: #252b3a;
    --border-light: #1a1f2e;
    
    /* Dark Theme Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Limited Offer Banner */
.offer-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-offer);
    color: white;
    padding: 14px 0;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.5s ease-out;
    transition: transform 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    height: auto;
    min-height: 48px;
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
}

.offer-icon {
    font-size: 1.75rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.offer-text {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.offer-text .highlight {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.offer-counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.counter-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.counter-number {
    font-size: 1.375rem;
    font-weight: 900;
    background: white;
    color: #ef4444;
    padding: 4px 14px;
    border-radius: 12px;
    min-width: 60px;
    display: inline-block;
    text-align: center;
    animation: pulse 1.5s ease-in-out infinite;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease, top 0.3s ease;
}

/* Adjust navbar position when banner is hidden */
.navbar.no-banner {
    top: 0;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .navbar {
    background: var(--bg-primary);
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.125rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 45px;
}

.logo-image {
    height: 42px;
    width: auto;
    max-width: 200px;
    min-width: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.625rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    display: inline-block;
}

.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding-top: calc(48px + 80px + 100px); /* Banner + Navbar + Extra spacing */
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    margin-top: 0;
    transition: padding-top 0.3s ease;
}

/* Adjust hero padding when banner is hidden */
body.no-banner .hero {
    padding-top: calc(80px + 100px); /* Navbar + Extra spacing */
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-accent);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: var(--gradient-hero);
    opacity: 0.06;
    border-radius: 50%;
    filter: blur(70px);
    animation: float 18s ease-in-out infinite reverse;
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.coming-soon-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lifetime-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 24px;
    background: var(--gradient-offer);
    color: white;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}


.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.badge-text strong {
    font-weight: 900;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-tertiary);
    margin-bottom: 3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    padding: 18px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--gradient-offer);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-button:active {
    transform: translateY(-2px);
}

.cta-button span:first-child {
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.cta-subtext {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-card {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background: var(--gradient-accent);
    opacity: 0.08;
    filter: blur(60px);
}

.card-1 {
    top: 10%;
    right: 10%;
    animation: float 18s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    left: 15%;
    animation: float 22s ease-in-out infinite reverse;
}

.card-3 {
    top: 50%;
    right: 20%;
    animation: float 25s ease-in-out infinite;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -1px;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-tertiary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out backwards;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }
.feature-card:nth-child(9) { animation-delay: 0.9s; }
.feature-card:nth-child(10) { animation-delay: 1s; }
.feature-card:nth-child(11) { animation-delay: 1.1s; }
.feature-card:nth-child(12) { animation-delay: 1.2s; }

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-primary);
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out backwards;
    padding: 2rem;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.step:hover {
    background: var(--bg-secondary);
    transform: translateY(-8px);
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }

.step-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step-number::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s ease-out infinite;
}

.step h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.step p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-primary);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-primary);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(-5deg);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 1.0625rem;
}

/* Limited Offer Section */
.limited-offer {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.limited-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-accent);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.offer-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--accent-primary);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    backdrop-filter: blur(10px);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.4;
    animation: rotate 20s linear infinite;
}

.offer-header {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.offer-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.offer-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0;
    letter-spacing: -0.3px;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-main {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.offer-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.25rem;
}

.value-text {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-offer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.value-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.offer-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 550px;
    margin: 0 auto;
}

.progress-section {
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.progress-count {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar-container {
    background: var(--bg-tertiary);
    border-radius: 50px;
    height: 28px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 100%;
    height: 100%;
    background: var(--bg-tertiary);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-offer);
    border-radius: 50px;
    transition: width 1s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.progress-footer {
    text-align: center;
}

.remaining-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.875rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.offer-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.offer-feature:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

/* Early Access Form Section */
.early-access {
    background: var(--bg-primary);
    position: relative;
    padding: 50px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(60px);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-header .section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.form-header .section-subtitle {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    max-width: 600px;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 18px;
    background: var(--gradient-offer);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 0.75rem;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 0.2px;
}

.urgency-icon {
    font-size: 1.25rem;
    animation: rotate 2s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.interest-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
    letter-spacing: 0.2px;
}

.form-group input {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: var(--shadow-sm);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-light), var(--shadow-md);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: var(--text-tertiary);
}

.submit-button {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 700;
    background: var(--gradient-offer);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
    position: relative;
    letter-spacing: 0.2px;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 2.5rem 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.success-message h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.success-message p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2.5rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.launching-soon {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-section a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.0625rem;
}

.footer-section a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-tertiary);
    font-size: 0.9375rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.powered-by {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
}

.powered-by a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.powered-by a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-30px) translateX(15px);
    }
    66% {
        transform: translateY(15px) translateX(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.5), var(--shadow-xl);
    }
    50% {
        box-shadow: 0 0 40px rgba(245, 158, 11, 0.8), var(--shadow-2xl);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Logo Responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 38px;
    }
    
    .logo-text {
        font-size: 1.375rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .offer-banner {
        padding: 12px 0;
    }

    .offer-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .offer-text {
        font-size: 0.875rem;
    }

    .counter-number {
        font-size: 1.25rem;
        padding: 4px 12px;
    }

    .navbar {
        top: 0 !important;
    }

    .hero {
        padding-top: calc(48px + 60px + 80px);
        padding-bottom: 80px;
        min-height: auto;
        margin-top: 0;
    }
    
    body.no-banner .hero {
        padding-top: calc(60px + 80px);
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }

    .hero-tagline {
        font-size: 1.375rem;
        letter-spacing: -0.3px;
    }

    .hero-description {
        font-size: 1.0625rem;
    }

    .lifetime-access-badge {
        font-size: 0.875rem;
        padding: 12px 22px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 1.0625rem;
    }
    
    .cta-button span:first-child {
        font-size: 1.125rem;
    }
    
    .coming-soon-badge {
        padding: 10px 22px;
        font-size: 0.8125rem;
    }

    .cta-button span:first-child {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 1.75rem 1.5rem;
        max-width: 650px;
    }

    .value-text {
        font-size: 2.5rem;
    }
    
    .offer-title {
        font-size: 1.5rem;
    }
    
    .offer-emoji {
        font-size: 2rem;
    }
    
    .limited-offer {
        padding: 40px 0;
    }
    
    .offer-header {
        margin-bottom: 1.25rem;
    }
    
    .offer-main {
        margin-bottom: 1.25rem;
    }
    
    .progress-section {
        margin: 1.25rem 0;
    }

    .offer-features {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1.75rem 1.5rem;
        max-width: 550px;
    }
    
    .form-header {
        margin-bottom: 1.25rem;
    }
    
    .form-header .section-title {
        font-size: 1.75rem;
    }
    
    .form-header .section-subtitle {
        font-size: 1rem;
    }
    
    .early-access {
        padding: 40px 0;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .offer-banner {
        padding: 10px 0;
    }

    .offer-text {
        font-size: 0.8125rem;
    }

    .counter-number {
        font-size: 1.125rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-tagline {
        font-size: 1.125rem;
        letter-spacing: -0.2px;
    }

    .lifetime-access-badge {
        font-size: 0.8125rem;
        padding: 10px 20px;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .cta-button span:first-child {
        font-size: 1.0625rem;
    }
    
    .coming-soon-badge {
        padding: 8px 18px;
        font-size: 0.75rem;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 1.125rem;
    }

    .cta-button span:first-child {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .value-text {
        font-size: 3.5rem;
    }

    .offer-card {
        padding: 1.5rem 1.25rem;
        max-width: 100%;
    }
    
    .value-text {
        font-size: 2.25rem;
    }
    
    .offer-title {
        font-size: 1.375rem;
    }
    
    .offer-emoji {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .offer-header {
        margin-bottom: 1rem;
    }
    
    .offer-main {
        margin-bottom: 1rem;
    }
    
    .value-label {
        font-size: 1rem;
    }
    
    .offer-description {
        font-size: 0.9375rem;
    }
    
    .limited-offer {
        padding: 35px 0;
    }
    
    .progress-section {
        margin: 1rem 0;
    }
    
    .offer-features {
        margin-top: 1.25rem;
        gap: 0.75rem;
    }

    .form-container {
        padding: 1.5rem 1.25rem;
        max-width: 100%;
    }
    
    .form-header .section-title {
        font-size: 1.5rem;
    }
    
    .form-header .section-subtitle {
        font-size: 0.9375rem;
    }
    
    .interest-form {
        gap: 1rem;
    }
    
    .form-group input {
        padding: 12px 16px;
        font-size: 0.9375rem;
    }
    
    .submit-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .early-access {
        padding: 35px 0;
    }
    
    .limited-offer {
        padding: 40px 0;
    }

    .feature-card,
    .benefit-card {
        padding: 2rem 1.5rem;
    }
}
