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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #4a9eff;
    color: #fff;
}

.btn-cookie:hover {
    background: #3a8eef;
}

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

.btn-cookie-reject:hover {
    border-color: #888;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.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;
    letter-spacing: -0.5px;
}

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

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

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

.btn-nav-cta {
    background: #e74c3c;
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
}

.btn-nav-cta:hover {
    background: #c0392b;
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(231, 76, 60, 0.4));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-centered {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
    z-index: 3;
}

.hero-content-centered h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.btn-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.story-opener {
    padding: 6rem 2rem;
    background: #fafafa;
}

.story-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.story-lead {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 500;
}

.story-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-narrow strong {
    color: #e74c3c;
    font-weight: 600;
}

.problem-amplify {
    padding: 5rem 2rem;
    background: #fff;
}

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

.split-section {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

.problem-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.highlight-box {
    background: #fff5f3;
    border-left: 4px solid #e74c3c;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.insight-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #fff;
}

.centered-heading {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.insight-reveal .story-narrow p {
    color: rgba(255, 255, 255, 0.9);
}

.insight-statement {
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 8px;
    font-weight: 600;
}

.trust-builder {
    padding: 5rem 2rem;
    background: #fff;
}

.container-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.trust-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trust-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.testimonial-block {
    background: #fff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-style: normal;
    color: #888;
    font-size: 0.95rem;
    font-weight: 600;
}

.method-breakdown {
    padding: 6rem 2rem;
    background: #fff;
}

.method-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 2.5rem;
    border-radius: 12px;
    color: #fff;
    position: relative;
}

.method-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.method-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-checkpoint {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-box-centered h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-box-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-cta-large:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: #fafafa;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefit-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.benefit-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.pricing-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
    color: #666;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.pricing-featured {
    border: 3px solid #e74c3c;
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.pricing-header {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    color: #fff;
    padding: 2.5rem 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

.pricing-details {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #e8e8e8;
}

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

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    text-align: center;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-select-service.featured {
    background: #e74c3c;
}

.btn-select-service.featured:hover {
    background: #c0392b;
}

.urgency-block {
    padding: 3rem 2rem;
    background: #fff5f3;
    border-top: 3px solid #e74c3c;
    border-bottom: 3px solid #e74c3c;
}

.urgency-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-container h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.urgency-container p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.course-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
    width: auto;
}

.form-checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-checkbox a {
    color: #e74c3c;
    text-decoration: underline;
}

.btn-submit {
    padding: 1.2rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #e74c3c;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

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

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hero-content-centered h1 {
        font-size: 2.5rem;
    }

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

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

    .method-cards {
        flex-direction: column;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .centered-heading {
        font-size: 2rem;
    }

    .story-lead {
        font-size: 1.3rem;
    }

    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-content-centered h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
