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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept, .btn-reject {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-accept {
    background: #7c9473;
    color: white;
}

.btn-accept:hover {
    background: #6a8062;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-reject:hover {
    border-color: rgba(255,255,255,0.6);
}

/* Header */
.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #7c9473;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
}

.main-nav a:hover {
    color: #7c9473;
}

.cta-header {
    background: #7c9473;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.cta-header:hover {
    background: #6a8062;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124,148,115,0.3);
}

/* Hero Section */
.hero-visual {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1578412388906-877d0958c474?w=1600');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 56px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    background: #7c9473;
    color: white;
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.btn-hero:hover {
    background: #6a8062;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124,148,115,0.4);
}

/* Story Intro */
.story-intro {
    padding: 100px 20px;
    background: #f9f7f4;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.intro-text:last-child {
    font-weight: 600;
    font-size: 22px;
    color: #7c9473;
    font-style: italic;
}

/* Revelation Section */
.revelation {
    padding: 120px 20px;
    background: white;
}

.revelation .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.revelation-content {
    flex: 1;
}

.revelation-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}

.revelation-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.revelation-visual {
    flex: 1;
}

.image-placeholder img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Problem Amplification */
.problem-amplification {
    padding: 100px 20px;
    background: #2c3e50;
    color: white;
}

.problem-amplification h2 {
    font-size: 38px;
    margin-bottom: 35px;
    text-align: center;
}

.problem-amplification p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Insight Moment */
.insight-moment {
    padding: 80px 20px;
    background: linear-gradient(135deg, #7c9473 0%, #5a7352 100%);
}

.insight-box {
    background: rgba(255,255,255,0.95);
    padding: 60px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.insight-box h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-box p {
    font-size: 19px;
    margin-bottom: 18px;
    color: #444;
    line-height: 1.7;
}

/* Approach Reveal */
.approach-reveal {
    padding: 120px 20px;
    background: #f9f7f4;
}

.approach-reveal h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-number {
    font-size: 48px;
    font-weight: 700;
    color: #7c9473;
    opacity: 0.3;
    margin-bottom: 15px;
}

.approach-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Testimonial Flow */
.testimonial-flow {
    padding: 100px 20px;
    background: #fff;
}

.testimonial-large {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    color: #2c3e50;
    border-left: 5px solid #7c9473;
    padding-left: 40px;
    margin: 0;
}

.testimonial-large footer {
    font-size: 18px;
    margin-top: 25px;
    font-style: normal;
    color: #7c9473;
    font-weight: 600;
}

/* Transformation Story */
.transformation-story {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #f9f7f4 0%, #fff 100%);
}

.transformation-story h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

.timeline-flow {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #7c9473;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 0 10px rgba(124,148,115,0.1);
}

.timeline-item:not(:last-child) .timeline-marker::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 30px;
    width: 2px;
    height: calc(100% + 30px);
    background: linear-gradient(to bottom, #7c9473, rgba(124,148,115,0.3));
}

.timeline-content h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* Social Proof */
.social-proof {
    padding: 100px 20px;
    background: #2c3e50;
    color: white;
}

.social-proof h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 260px;
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #7c9473;
    font-weight: 600;
}

/* Unique Benefits */
.unique-benefits {
    padding: 120px 20px;
    background: white;
}

.unique-benefits h2 {
    font-size: 44px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefit-visual {
    flex: 1;
}

.benefit-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.benefit-list {
    flex: 1;
}

.benefit-item {
    margin-bottom: 35px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Instructor Reveal */
.instructor-reveal {
    padding: 120px 20px;
    background: #f9f7f4;
}

.instructor-layout {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

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

.instructor-image img {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.instructor-story h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.instructor-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

/* Workshop Types */
.workshop-types {
    padding: 120px 20px;
    background: white;
}

.workshop-types h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.workshops-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.workshop-feature {
    display: flex;
    gap: 50px;
    align-items: center;
}

.workshop-feature.reverse {
    flex-direction: row-reverse;
}

.workshop-image {
    flex: 1;
}

.workshop-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.workshop-details {
    flex: 1;
}

.workshop-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.workshop-details > p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.workshop-includes {
    list-style: none;
    margin-bottom: 30px;
}

.workshop-includes li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #444;
}

.workshop-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7c9473;
    font-weight: 700;
    font-size: 18px;
}

.workshop-price {
    font-size: 36px;
    font-weight: 700;
    color: #7c9473;
    margin-bottom: 25px;
}

.btn-select-workshop {
    background: #7c9473;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    width: 100%;
    max-width: 300px;
}

.btn-select-workshop:hover {
    background: #6a8062;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124,148,115,0.3);
}

/* Urgency Element */
.urgency-element {
    padding: 80px 20px;
    background: linear-gradient(135deg, #d4a574 0%, #c89960 100%);
}

.urgency-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.urgency-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.urgency-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.urgency-box p:last-child {
    font-weight: 700;
    color: #c89960;
    font-size: 20px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 20px;
    background: #f9f7f4;
}

.final-cta-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.cta-intro {
    text-align: center;
    font-size: 19px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Enrollment Form */
.enroll-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.form-hint {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.form-checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    color: #555;
}

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

.btn-submit {
    width: 100%;
    background: #7c9473;
    color: white;
    padding: 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.btn-submit:hover {
    background: #6a8062;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124,148,115,0.3);
}

/* Trust Footer */
.trust-footer {
    padding: 80px 20px;
    background: white;
}

.trust-elements {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 15px;
    color: #777;
}

/* Main Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #7c9473;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-button {
    background: #7c9473;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(124,148,115,0.4);
}

.sticky-cta-button:hover {
    background: #6a8062;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(124,148,115,0.5);
}

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

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .benefits-split {
        flex-direction: column;
    }

    .instructor-layout {
        flex-direction: column;
    }

    .instructor-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .workshop-feature,
    .workshop-feature.reverse {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

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

    .timeline-item {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .revelation-content h2,
    .transformation-story h2,
    .workshop-types h2 {
        font-size: 32px;
    }

    .enroll-form {
        padding: 30px 20px;
    }

    .insight-box {
        padding: 40px 25px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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

    .sticky-cta-button {
        width: 100%;
        border-radius: 8px;
    }
}

/* Page-specific styles */
.simple-page {
    padding: 120px 20px 80px;
    min-height: 70vh;
}

.simple-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.simple-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.simple-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.simple-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.simple-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.contact-info {
    background: #f9f7f4;
    padding: 40px;
    border-radius: 10px;
    margin: 30px 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.service-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item .price {
    font-size: 32px;
    font-weight: 700;
    color: #7c9473;
    margin: 15px 0;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.thanks-page {
    text-align: center;
    padding: 150px 20px 100px;
    min-height: 70vh;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #7c9473;
}

.thanks-page p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-page .btn {
    display: inline-block;
    background: #7c9473;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    margin-top: 30px;
}

.thanks-page .btn:hover {
    background: #6a8062;
    transform: translateY(-2px);
}
