* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #1d4ed8;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar {
    background: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.nav-cta {
    background: #2563eb;
    color: #ffffff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
}

.nav-cta:hover {
    background: #1d4ed8;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.active {
    display: block;
}

.sticky-btn {
    background: #dc2626;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.hero-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hook-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

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

.opening-text {
    font-size: 1.375rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #374151;
}

.emphasis {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
}

.problem-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.split-text p {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.insight-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 6rem 2rem;
}

.full-width-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.insight-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #60a5fa;
}

.insight-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #d1d5db;
}

.story-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.story-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.story-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #374151;
}

.inline-cta {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    font-size: 1.25rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

.testimonial-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #4b5563;
}

.mechanism-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
}

.centered-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.mechanism-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.flow-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.flow-step p {
    color: #4b5563;
    line-height: 1.6;
}

.benefits-reveal {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.benefits-reveal h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 3rem;
}

.benefits-list li {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    color: #1a1a1a;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.5rem;
}

.benefit-cta {
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #374151;
    transform: translateY(-2px);
}

.programs-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.program-card {
    flex: 1;
    min-width: 350px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.program-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.program-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.program-card.premium {
    border-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.program-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.program-card.premium .program-badge {
    background: #dc2626;
}

.program-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.program-level {
    color: #6b7280;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.program-description {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.program-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.program-price {
    margin: 2rem 0;
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
}

.btn-program {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-program:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.program-card.premium .btn-program {
    background: #dc2626;
}

.program-card.premium .btn-program:hover {
    background: #b91c1c;
}

.trust-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.trust-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.trust-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #374151;
}

.social-proof {
    padding: 6rem 2rem;
    background: #ffffff;
}

.results-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.result-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.result-stat {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.result-desc {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.result-name {
    font-weight: 600;
    color: #1a1a1a;
}

.urgency-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.urgency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.urgency-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #d1d5db;
}

.enrollment-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
}

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

.enrollment-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.enrollment-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #dbeafe;
}

.enrollment-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group input[readonly] {
    background: #f9fafb;
    font-weight: 600;
    color: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #dc2626;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.final-cta {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.centered {
    text-align: center;
}

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

.final-cta p {
    font-size: 1.5rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1.5rem 4rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.375rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 3rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .insight-grid {
        flex-direction: column;
    }

    .mechanism-flow {
        flex-direction: column;
    }

    .programs-grid {
        flex-direction: column;
    }

    .program-card {
        min-width: 100%;
    }

    .results-grid {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .enrollment-form {
        padding: 1.5rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}