:root {
    --primary-color: #2C1810;
    --secondary-color: #8B4513;
    --accent-color: #D4A574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --background: #FAF8F5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    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: var(--text-dark);
    background-color: var(--background);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    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: var(--accent-color);
    color: var(--primary-color);
}

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

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

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

.main-nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-section {
    min-height: 600px;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.9), rgba(139, 69, 19, 0.8)), url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1600&h=900&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.story-intro {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

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

.content-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.content-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.content-narrow em {
    font-style: italic;
    color: var(--text-dark);
}

.inline-cta-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--background);
    border-left: 4px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.inline-cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.cta-inline {
    padding: 0.9rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--primary-color);
}

.problem-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--background);
}

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.problem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
}

.problem-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.insight-reveal {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wide h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lead-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.insight-card {
    flex: 1;
    padding: 2rem;
    background: var(--background);
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

.insight-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.method-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.method-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.method-section > .content-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: var(--white);
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.method-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.step-marker {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    opacity: 0.85;
    color: var(--white);
}

.testimonial-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--background);
}

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

.testimonial-container h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.trust-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

.trust-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.trust-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.curriculum-preview {
    padding: var(--spacing-xl) 2rem;
    background: var(--background);
}

.curriculum-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.curriculum-timeline {
    display: flex;
    gap: 2rem;
}

.week-block {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.week-number {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.week-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.week-block ul {
    list-style: none;
}

.week-block li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.week-block li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.benefits-reveal {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

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

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

.benefit-check {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.benefit-item strong {
    color: var(--primary-color);
}

.comparison-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--background);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.comparison-table {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

.comparison-row > div {
    flex: 1;
    padding: 1.2rem;
}

.comp-feature {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-row.header .comp-feature {
    color: var(--white);
}

.comp-traditional {
    text-align: center;
    color: var(--text-light);
}

.comp-ours {
    text-align: center;
    color: var(--text-dark);
}

.comp-ours.highlight {
    color: var(--success-color);
    font-weight: 600;
}

.pricing-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    flex: 1;
    padding: 2.5rem;
    background: var(--background);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.price-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-right: 0.3rem;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.price-card.featured .price-header h3,
.price-card.featured .price-subtitle,
.price-card.featured .currency,
.price-card.featured .amount {
    color: var(--white);
}

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

.price-features li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.price-card.featured .price-features li {
    color: var(--white);
}

.btn-price {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-price:hover {
    background: var(--primary-color);
}

.price-card.featured .btn-price {
    background: var(--accent-color);
    color: var(--primary-color);
}

.price-card.featured .btn-price:hover {
    background: #c79563;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.urgency-section {
    padding: var(--spacing-lg) 2rem;
    background: var(--background);
}

.urgency-box {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border-radius: 12px;
}

.urgency-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.urgency-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.urgency-counter {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.spots-left {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.8rem;
}

.urgency-deadline {
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.guarantee-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.guarantee-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.guarantee-box {
    padding: 2.5rem;
    background: var(--background);
    border-left: 5px solid var(--success-color);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.guarantee-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.guarantee-subtext {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.faq-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--background);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--background);
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

.final-cta-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

.final-cta-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.final-cta-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.enrollment-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--background);
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.checkbox-group label {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-weight: 400;
}

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

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.3rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem 2rem;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.sticky-cta-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #c79563;
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: var(--white);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.8;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 2rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .insight-grid,
    .testimonial-grid,
    .curriculum-timeline,
    .pricing-grid {
        flex-direction: column;
    }

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

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

@media (max-width: 640px) {
    .cookie-content {
        font-size: 0.9rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

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

    .content-narrow h2,
    .content-wide h2 {
        font-size: 1.8rem;
    }

    .enrollment-form {
        padding: 2rem 1.5rem;
    }
}
