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

:root {
    /* Brand Colors */
    --brand-primary: #13658b;
    --brand-primary-dark: #0d4a66;
    --brand-primary-light: #1a7ba8;
    --brand-accent: #ffee06;
    --brand-accent-dark: #e6d605;
    
    /* Neutral Colors */
    --text-dark: #0a1828;
    --text-medium: #2d3748;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-off-white: #fefefe;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Semantic Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Shadows - More refined */
    --shadow-xs: 0 1px 2px 0 rgba(19, 101, 139, 0.05);
    --shadow-sm: 0 2px 4px 0 rgba(19, 101, 139, 0.08);
    --shadow-md: 0 4px 12px 0 rgba(19, 101, 139, 0.12);
    --shadow-lg: 0 8px 24px 0 rgba(19, 101, 139, 0.16);
    --shadow-xl: 0 16px 32px 0 rgba(19, 101, 139, 0.2);
    --shadow-brand: 0 4px 20px 0 rgba(255, 238, 6, 0.3);
    
    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-light);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand img.logo-img {
    height: 56px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.nav-brand:hover img.logo-img {
    transform: scale(1.05);
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-brand a {
    display: flex;
    align-items: center;
}

.nav-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Mobile Menu Active State */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 1.5rem;
        gap: 1rem;
        border-top: 1px solid var(--border-light);
    }

    .nav-links.active a {
        width: 100%;
        padding: 0.75rem 0;
        text-align: center;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links.active a:last-child {
        border-bottom: none;
    }
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-hero {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: visible;
}

.btn-primary {
    background: var(--brand-primary);
    color: white;
    font-weight: 700;
    letter-spacing: -0.01em;
    border: 2px solid var(--brand-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    position: relative;
    overflow: visible;
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand-accent);
    transition: width 0.3s ease;
    z-index: 1;
}

.btn-primary:hover::after {
    width: 100%;
}

.btn-primary:hover {
    background: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    position: relative;
    overflow: visible;
}

.btn-secondary:hover {
    background: var(--brand-primary);
    color: white !important;
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand-accent);
    transition: width 0.3s ease;
    z-index: 1;
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    letter-spacing: -0.01em;
    border: 2px solid var(--brand-primary);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    z-index: 1;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 238, 6, 0.2), transparent);
    transition: left 0.5s;
    z-index: 0;
}

.btn-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand-accent);
    transition: width 0.3s ease;
    z-index: 1;
}

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

.btn-hero:hover::after {
    width: 100%;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: white;
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 238, 6, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 238, 6, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 2.5rem;
    opacity: 1;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-cta {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero-guarantee {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 1;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 1;
    font-weight: 500;
}

/* Social Proof */
.social-proof {
    padding: 3rem 0;
    background: var(--bg-light);
}

.offers-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.offer-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.offer-card.highlight {
    border-color: var(--brand-primary);
    border-width: 3px;
    position: relative;
    background: linear-gradient(to bottom, rgba(19, 101, 139, 0.02), rgba(19, 101, 139, 0.05));
}

.offer-card.highlight::after {
    content: 'Most Popular';
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: var(--brand-accent);
    color: var(--text-dark);
    padding: 0.5rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.05em;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
    width: fit-content;
}

.offer-badge-entry {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0f5 100%);
    color: var(--brand-primary);
    border: 1px solid var(--border-color);
}

.offer-badge-popular {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

.offer-badge-premium {
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.offer-price-note {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-weight: 500;
}

.offer-desc {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.offer-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.offer-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.offer-note {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-style: italic;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-weight: 500;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--brand-accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.testimonial-stars {
    color: var(--brand-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 238, 6, 0.3));
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.875rem;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Course Modules */
.course-modules {
    padding: 5rem 0;
    background: var(--bg-white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-accent));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-card:hover::before {
    transform: scaleY(1);
}

.module-card:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    background: linear-gradient(to bottom, rgba(19, 101, 139, 0.02), white);
}

.module-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.module-description {
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 400;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-medium);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-large {
    margin-top: 3rem;
}

.testimonial-large {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.testimonial-author-large strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-author-large span {
    color: var(--text-medium);
    font-size: 0.875rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 238, 6, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 238, 6, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 1;
    font-weight: 400;
    line-height: 1.7;
}

.cta-bonus {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 1;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--brand-primary-dark) 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent), var(--brand-primary));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

/* Lead Magnet Page */
.lead-magnet {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 238, 6, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 238, 6, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.lead-magnet .container {
    position: relative;
    z-index: 1;
}

.lead-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.lead-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.lead-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.lead-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.lead-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.lead-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    margin: 2rem 0;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.lead-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent), var(--brand-primary));
}

.lead-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1rem;
}

.lead-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.form-privacy {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-medium);
    text-align: center;
    font-weight: 500;
}

.lead-benefits {
    margin-top: 3rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.5rem;
}

.lead-benefits h3 {
    margin-bottom: 1rem;
}

.checklist-preview {
    list-style: none;
}

.checklist-preview li {
    padding: 0.5rem 0;
    font-size: 1.125rem;
}

.social-proof-mini {
    padding: 2rem 0;
    text-align: center;
    background: var(--bg-light);
}

.proof-text {
    font-size: 1.125rem;
    color: var(--text-dark);
}

/* Sales Page */
.sales-hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sales-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 238, 6, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 238, 6, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.sales-hero .container {
    position: relative;
    z-index: 1;
}

.sales-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.sales-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.sales-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.sales-proof {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.proof-stat {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.sales-content {
    padding: 4rem 0;
}

.sales-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sales-sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.module-detail {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.module-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    opacity: 0.3;
}

.module-detail h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.bonuses-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.bonuses-list {
    list-style: none;
    margin-top: 1rem;
}

.bonuses-list li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.testimonials-sales {
    margin: 3rem 0;
}

.testimonial-sales-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.testimonial-sales-card p:first-child {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.guarantee-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    color: white;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 238, 6, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.guarantee-section h2 {
    margin-bottom: 1rem;
}

.pricing-box {
    background: linear-gradient(to bottom, rgba(19, 101, 139, 0.02), white);
    border: 3px solid var(--brand-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent), var(--brand-primary));
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 600;
}

.price-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-icon {
    color: var(--brand-primary);
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-secure {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
}

.urgency-box {
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
    color: var(--text-dark);
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid var(--brand-primary);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.urgency-text {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.urgency-subtext {
    font-size: 0.875rem;
    opacity: 0.9;
}

.final-cta {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Coaching Page */
.coaching-hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coaching-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 238, 6, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 238, 6, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.coaching-hero .container {
    position: relative;
    z-index: 1;
}

.coaching-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.coaching-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.coaching-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.coaching-price {
    margin: 2rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.price-unit {
    font-size: 1.25rem;
    opacity: 0.9;
    display: block;
    margin-top: 0.5rem;
}

.coaching-content {
    padding: 4rem 0;
}

.coaching-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.coaching-main h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.coaching-benefit {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.coaching-benefit:last-child {
    border-bottom: none;
}

.coaching-benefit h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.coaching-benefit p {
    color: var(--text-medium);
    line-height: 1.7;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.topic-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.topic-card:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.topic-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.topic-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

.coaching-cta-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.coaching-cta-box h2 {
    margin-bottom: 1.5rem;
}

.perfect-for-list {
    list-style: none;
}

.perfect-for-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border-color);
}

.perfect-for-list li:last-child {
    border-bottom: none;
}

.coaching-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-box {
    background: white;
    border: 3px solid var(--brand-primary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.booking-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent), var(--brand-primary));
}

.booking-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.booking-price {
    text-align: center;
    margin-bottom: 1rem;
}

.booking-amount {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.booking-unit {
    font-size: 1rem;
    color: var(--text-medium);
    display: block;
    margin-top: 0.5rem;
}

.booking-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.booking-features {
    margin-top: 1.5rem;
}

.booking-features p {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.coaching-alternative {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.coaching-alternative h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.coaching-alternative p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coaching-testimonials {
    padding: 4rem 0;
    background: var(--bg-light);
}

.coaching-testimonials h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Ebook Page */
.ebook-hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ebook-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 238, 6, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 238, 6, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.ebook-hero .container {
    position: relative;
    z-index: 1;
}

.ebook-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.ebook-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ebook-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ebook-price {
    margin: 2rem 0;
}

.ebook-content {
    padding: 4rem 0;
}

.ebook-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.ebook-main h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.ebook-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ebook-features {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.ebook-features h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.ebook-categories {
    margin: 3rem 0;
}

.ebook-categories h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.category-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.category-item:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.category-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.category-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

.ebook-perfect-for {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.ebook-perfect-for h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.ebook-upgrade {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(19, 101, 139, 0.05) 0%, rgba(19, 101, 139, 0.1) 100%);
    border-radius: var(--radius-md);
    border: 2px solid var(--brand-primary);
    text-align: center;
}

.ebook-upgrade h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.ebook-upgrade p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ebook-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ebook-bundle {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid var(--brand-accent);
}

.ebook-bundle h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.ebook-bundle p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.bundle-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.bundle-original {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.bundle-new {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ebook-cta {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.ebook-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.ebook-cta p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* Checkout Page */
.checkout-section {
    padding: 3rem 0;
    min-height: 80vh;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form-container h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.checkout-form input,
.checkout-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.checkout-form input:focus,
.checkout-form select:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    flex: 1;
    transition: all 0.2s;
}

.payment-option:hover {
    border-color: var(--brand-primary);
}

.payment-option input[type="radio"] {
    width: auto;
}

.card-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.form-checkbox {
    margin: 2rem 0;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkout-secure {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
}

.checkout-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-box {
    background: white;
    border: 3px solid var(--brand-primary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.summary-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent), var(--brand-primary));
}

.summary-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-top: 2px solid var(--border-color);
}

.summary-guarantee {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.summary-guarantee p {
    margin: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.summary-features {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.summary-features h4 {
    margin-bottom: 1rem;
}

.summary-features ul {
    list-style: none;
}

.summary-features li {
    padding: 0.5rem 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg), 0 0 0 8px rgba(19, 101, 139, 0.1);
    border: 4px solid var(--brand-accent);
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thank-you-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.next-steps {
    text-align: left;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.next-steps h3 {
    margin-bottom: 1rem;
}

.steps-list {
    margin-left: 1.5rem;
}

.steps-list li {
    margin: 0.75rem 0;
    color: var(--text-dark);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.upsell-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.upsell-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.upsell-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.upsell-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.upsell-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.upsell-feature {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.upsell-pricing {
    margin: 2rem 0;
}

.upsell-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.upsell-original {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.upsell-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.popup.active {
    display: flex;
}

.popup-content {
    background: white;
    padding: 3rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.popup-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.popup-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.popup-privacy {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-medium);
    text-align: center;
    font-weight: 500;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
    min-height: 80vh;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    min-height: 80vh;
}

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

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.contact-form-container h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.contact-form textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.info-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
}

.faq-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.faq-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.faq-category {
    margin-bottom: 2.5rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--brand-primary);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--brand-primary);
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
}

/* Accessibility - Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--brand-accent);
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .funnel-steps {
        flex-direction: column;
    }

    .funnel-arrow {
        transform: rotate(90deg);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }

    .sales-grid {
        grid-template-columns: 1fr;
    }

    .pricing-box {
        position: static;
    }

    .coaching-grid {
        grid-template-columns: 1fr;
    }

    .coaching-sidebar {
        position: static;
    }

    .ebook-grid {
        grid-template-columns: 1fr;
    }

    .ebook-sidebar {
        position: static;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .upsell-features {
        flex-direction: column;
        gap: 1rem;
    }
}

