/* AI Productivity Unlocked Landing Page Styles */

/* CSS Variables */
:root {
    --bg-primary: #0b0f14;
    --bg-secondary: #0f141b;
    --text-primary: #e9edf3;
    --text-muted: #9fb0c7;
    --gold-primary: #f5c542;
    --gold-secondary: #ffd66b;
    --white: #ffffff;
    --border-color: rgba(233, 237, 243, 0.1);
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
    --gradient-gold: linear-gradient(135deg, #f5c542, #ffd66b);
    --gradient-dark: linear-gradient(135deg, #0f141b, #1a1f26);
    --gradient-glow: linear-gradient(135deg, #f5c542, #ffd66b, #f5c542);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(245, 197, 66, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 214, 107, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Header */
.main-header {
    background: rgba(15, 20, 27, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--gold-primary);
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--gradient-gold);
    color: var(--bg-primary) !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 197, 66, 0.3);
}

@media (max-width: 768px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }
    
    .nav-cta {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 980px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 32px;
}

.countdown-badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.countdown-label {
    font-size: 14px;
    color: var(--gold-primary);
    margin-bottom: 16px;
    font-weight: 600;
    display: block;
}

.countdown-timer {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.countdown-item {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    min-width: 60px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.countdown-number {
    font-size: 20px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.countdown-unit {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 600;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 10px 12px;
    }
    
    .countdown-number {
        font-size: 16px;
    }
}

/* Course Stats */
.course-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .course-stats {
        justify-content: center;
    }
}

.stat-badge {
    background: rgba(245, 197, 66, 0.1);
    color: var(--gold-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(245, 197, 66, 0.2);
}

/* Hero Text */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Pain Points */
.pain-points {
    margin-bottom: 40px;
}

.pain-item {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 500;
}

/* CTA Buttons */
.cta-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

@media (max-width: 980px) {
    .cta-container {
        align-items: center;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Primary CTA */
.primary-cta {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 1.1rem;
    padding: 18px 36px;
    box-shadow: var(--shadow-soft);
}

.primary-cta:hover {
    box-shadow: var(--shadow-hover);
    color: var(--bg-primary);
}

/* Secondary CTA */
.secondary-cta {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 14px 28px;
}

.secondary-cta:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.2);
}

/* Mega CTA */
.mega-cta {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 1.2rem;
    padding: 20px 40px;
    animation: mega-pulse 3s ease-in-out infinite;
}

.mega-cta:hover {
    color: var(--bg-primary);
}

/* Ultimate CTA */
.ultimate-cta {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 1.3rem;
    padding: 22px 44px;
    animation: ultimate-glow 2s ease-in-out infinite alternate;
}

.ultimate-cta:hover {
    color: var(--bg-primary);
}

/* CTA Animations */
.glow-effect {
    animation: glow 2s ease-in-out infinite alternate;
}

.pulse-cta {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(245, 197, 66, 0.3);
    }
    to {
        box-shadow: 0 0 40px rgba(245, 197, 66, 0.6);
    }
}

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

@keyframes mega-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-soft);
    }
    50% {
        transform: scale(1.03);
        box-shadow: var(--shadow-hover);
    }
}

@keyframes ultimate-glow {
    from {
        box-shadow: 0 15px 40px rgba(245, 197, 66, 0.3);
    }
    to {
        box-shadow: 0 20px 60px rgba(245, 197, 66, 0.5);
    }
}

/* CTA Subtext */
.cta-subtext {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    text-align: center;
}

@media (max-width: 980px) {
    .cta-container .cta-subtext {
        text-align: center;
    }
}

/* Hero Image */
.hero-image {
    position: relative;
    text-align: center;
}

.course-cover {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s ease;
}

.course-cover:hover {
    transform: scale(1.02) rotateY(2deg);
}

.secondary-image {
    position: absolute;
    top: 20%;
    right: -20%;
    width: 40%;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.secondary-image:hover {
    transform: rotate(8deg) scale(1.05);
}

@media (max-width: 980px) {
    .secondary-image {
        position: static;
        width: 60%;
        margin-top: 20px;
        transform: rotate(0deg);
    }
}

/* Solution Section */
.solution-section {
    background: var(--bg-secondary);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .solution-section {
        padding: 60px 0;
    }
}

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

.solution-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .solution-title {
        font-size: 2rem;
    }
}

.solution-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .solution-description {
        font-size: 1.1rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.feature-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: 0 8px 25px rgba(245, 197, 66, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* What's Inside Section */
.whats-inside-section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .whats-inside-section {
        padding: 60px 0;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    position: relative;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

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

@media (max-width: 768px) {
    .chapters-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.chapter-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.chapter-item:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 12px 30px rgba(245, 197, 66, 0.15);
}

.chapter-number {
    position: absolute;
    top: -15px;
    left: 32px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.chapter-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    margin-top: 8px;
}

.chapter-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.mega-cta-container {
    text-align: center;
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-secondary);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }
}

.benefits-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 980px) {
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 2rem;
        text-align: center;
    }
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
}

.benefit-check {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text {
    font-weight: 500;
}

/* Benefits Stats */
.benefits-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 980px) {
    .benefits-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.stat-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 25px rgba(245, 197, 66, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.stat-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    font-style: italic;
}

/* Bonuses Section */
.bonuses-section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .bonuses-section {
        padding: 60px 0;
    }
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

@media (max-width: 768px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.bonus-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 12px 30px rgba(245, 197, 66, 0.15);
}

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

.bonus-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.bonus-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    background: var(--bg-secondary);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }
}

.testimonial-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 980px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.5;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1.1rem;
    }
}

.testimonial-author {
    font-weight: 600;
    color: var(--gold-primary);
    font-size: 1rem;
}

.testimonial-image {
    text-align: center;
}

.preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.preview-image:hover {
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(245, 197, 66, 0.05) 0%, transparent 70%),
        var(--bg-primary);
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
}

.pricing-card {
    background: var(--bg-secondary);
    border: 2px solid var(--gold-primary);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 32px;
        margin: 0 16px;
    }
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 24px;
    z-index: -1;
    animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pricing-badge {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 32px;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.current-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1;
}

@media (max-width: 768px) {
    .current-price {
        font-size: 3rem;
    }
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-features li {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.pricing-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--gold-primary);
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 24px 32px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
}

@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 20px 24px;
    }
}

.accordion-button:hover {
    color: var(--gold-primary);
}

.accordion-button:not(.collapsed) {
    color: var(--gold-primary);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--gold-primary);
}

.accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(45deg);
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-collapse.show {
    max-height: 200px;
}

.accordion-body {
    padding: 0 32px 24px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .accordion-body {
        padding: 0 24px 20px;
    }
}

/* Final CTA Section */
.final-cta {
    background: 
        radial-gradient(circle at 30% 70%, rgba(245, 197, 66, 0.1) 0%, transparent 50%),
        var(--bg-primary);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 60px 0;
    }
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: 2rem;
    }
}

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

@media (max-width: 768px) {
    .final-cta-subtitle {
        font-size: 1.1rem;
    }
}

.final-cta-btn {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 24px 48px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(245, 197, 66, 0.3);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .final-cta-btn {
        padding: 20px 32px;
        font-size: 1.1rem;
        width: 90%;
        justify-content: center;
    }
}

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

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

.final-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 60px rgba(245, 197, 66, 0.4);
    color: var(--bg-primary);
    text-decoration: none;
}

.final-guarantee {
    margin-top: 24px;
}

.guarantee-text {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 14px;
}

/* Footer */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
}

.back-to-top {
    color: var(--gold-primary);
    text-decoration: none;
    margin-left: 16px;
    font-weight: 500;
}

.back-to-top:hover {
    text-decoration: underline;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.cta-button.loading {
    pointer-events: none;
    opacity: 0.8;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(11, 15, 20, 0.3);
    border-radius: 50%;
    border-top-color: var(--bg-primary);
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles */
.cta-button:focus,
.accordion-button:focus,
.nav-links a:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content {
        gap: 32px;
    }
    
    .pain-points {
        text-align: left;
    }
    
    .cta-container {
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .secondary-cta {
        width: auto;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
}