* {
    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: #2c2c2c;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.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;
    margin: 0;
}

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

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

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-visual {
    margin-top: 70px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 900px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-hook {
    padding: 5rem 0;
    background: #f9f9f9;
}

.intro-text {
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: center;
    color: #3c3c3c;
    font-style: italic;
}

.story-section {
    padding: 6rem 0;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.story-visual {
    flex: 0 0 400px;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.problem-amplify {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #3c3c3c 100%);
    color: white;
}

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

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-left: 4px solid #d4521e;
    font-size: 1.25rem;
}

.cta-inline {
    padding: 4rem 0;
    background: #d4521e;
}

.cta-box {
    text-align: center;
}

.cta-text {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
}

.btn-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #d4521e;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.insight-reveal {
    padding: 6rem 0;
    background: #f4f4f4;
}

.insight-left {
    width: 55%;
    padding-right: 3rem;
}

.insight-right {
    width: 45%;
}

.insight-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.insight-left p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.insight-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.container-asymmetric .insight-left,
.container-asymmetric .insight-right {
    display: inline-block;
    vertical-align: middle;
}

.trust-building {
    padding: 6rem 0;
}

.trust-building h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.trust-intro {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    color: #4a4a4a;
}

.instructor-showcase {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.instructor-card {
    text-align: center;
    flex: 0 0 300px;
}

.instructor-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
}

.instructor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.instructor-card p {
    color: #666;
    font-size: 1rem;
}

.testimonials-flow {
    padding: 5rem 0;
    background: #fafafa;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-left: 5px solid #d4521e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
    color: #2c2c2c;
}

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

.benefits-reveal {
    padding: 6rem 0;
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.benefit-content p {
    color: #666;
    font-size: 1.125rem;
}

.cta-section-mid {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d4521e 0%, #ff6b35 100%);
}

.cta-gradient {
    text-align: center;
}

.cta-gradient h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: white;
    color: #d4521e;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.how-it-works {
    padding: 6rem 0;
    background: #f9f9f9;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #d4521e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-item p {
    color: #666;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: #d4521e;
    flex: 0 0 30px;
}

.social-proof {
    padding: 5rem 0;
    background: #1a1a1a;
    color: white;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #d4521e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #ccc;
}

.services-pricing {
    padding: 6rem 0;
    background: #ffffff;
}

.services-pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    color: #666;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #d4521e;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d4521e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 10;
}

.service-image {
    flex: 0 0 350px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

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

.service-content > p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2c2c2c;
}

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

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4521e;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 1rem 2rem;
    background: #d4521e;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background: #c14819;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.urgency-section {
    padding: 3rem 0;
    background: #fff3e0;
}

.urgency-box {
    background: white;
    padding: 2.5rem;
    border-left: 5px solid #ff9800;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.urgency-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #ff9800;
}

.urgency-box p {
    font-size: 1.125rem;
    color: #4a4a4a;
}

.form-section {
    padding: 6rem 0;
    background: #f4f4f4;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

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

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

.checkbox-group a {
    color: #d4521e;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #d4521e;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #c14819;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 82, 30, 0.4);
}

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #3c3c3c 100%);
    color: white;
}

.final-message {
    text-align: center;
}

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

.final-message p {
    font-size: 1.25rem;
}

.site-footer {
    background: #0d0d0d;
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section h4 {
    color: white;
    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: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: #d4521e;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(212, 82, 30, 0.5);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #c14819;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 82, 30, 0.6);
}

@media (max-width: 1024px) {
    .story-split {
        flex-direction: column;
    }

    .story-visual {
        flex: 1;
        width: 100%;
    }

    .insight-left,
    .insight-right {
        width: 100% !important;
        padding: 0 !important;
        display: block !important;
        margin-bottom: 2rem;
    }

    .instructor-showcase {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .container-narrow,
    .container-wide,
    .container-asymmetric {
        padding: 0 1.5rem;
    }

    .intro-text {
        font-size: 1.25rem;
    }

    .story-content h2,
    .insight-left h2,
    .trust-building h2,
    .benefits-reveal h2,
    .how-it-works h2,
    .services-pricing h2,
    .cta-gradient h2,
    .final-message h2,
    .problem-amplify h2,
    .form-section h2 {
        font-size: 1.75rem;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 0.75rem;
        font-size: 0.875rem;
    }
}