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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --light: #f1f1f1;
    --text: #333;
    --text-light: #666;
    --border: #ddd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-brand a {
    color: inherit;
    text-decoration: none;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.hero-story {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(233, 69, 96, 0.6));
    z-index: 1;
}

.hero-content-narrow {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 30px;
    text-align: center;
}

.hero-content-narrow h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
}

.story-intro {
    padding: 120px 20px;
    background: #fafafa;
}

.story-intro .content-narrow {
    max-width: 720px;
}

.story-intro p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
}

.drop-cap::first-letter {
    float: left;
    font-size: 72px;
    line-height: 60px;
    padding: 8px 12px 0 0;
    font-weight: 700;
    color: var(--accent);
}

.problem-amplify {
    padding: 100px 20px;
    background: #fff;
}

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

.split-image {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}

.stat-box {
    margin-top: 40px;
    padding: 30px;
    background: var(--accent);
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--primary);
    color: #fff;
}

.insight-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-reveal .content-narrow p {
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.insight-cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.insight-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.scenario-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.scenario-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 700;
}

.scenario-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.timeline-marker {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.timeline-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
}

.trust-builder {
    padding: 100px 20px;
    background: #fff;
}

.trust-builder h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 700;
}

.trust-builder .content-narrow p {
    font-size: 19px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
}

.credentials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 60px auto 0;
}

.credential-item {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background: var(--light);
    border-radius: 8px;
    text-align: center;
}

.credential-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    font-weight: 600;
}

.testimonial-inline {
    padding: 80px 20px;
    background: var(--secondary);
}

.testimonial-inline blockquote {
    border-left: none;
    padding: 0;
    margin: 0;
}

.testimonial-inline p {
    font-size: 26px;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    text-align: right;
}

.benefits-reveal {
    padding: 100px 20px;
    background: #fff;
}

.benefits-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 700;
}

.benefits-asymmetric {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-major {
    flex: 2;
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
}

.benefit-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.benefit-major h3,
.benefit-major p {
    padding: 0 30px;
}

.benefit-major h3 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: var(--primary);
}

.benefit-major p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text);
}

.benefit-minor {
    flex: 1;
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-minor h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.benefit-minor p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #fafafa;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-mid {
    padding: 100px 20px;
    background: var(--accent);
    text-align: center;
}

.cta-mid h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-mid p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.btn-primary-large {
    display: inline-block;
    background: #fff;
    color: var(--accent);
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.curriculum-deep {
    padding: 100px 20px;
    background: #fafafa;
}

.curriculum-deep h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 700;
}

.phase-cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.phase-card {
    flex: 1;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.phase-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
}

.phase-card h3 {
    font-size: 24px;
    margin: 10px 0 10px;
    color: var(--primary);
}

.phase-duration {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.phase-card ul {
    list-style: none;
}

.phase-card ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}

.phase-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.social-proof {
    padding: 100px 20px;
    background: #fff;
}

.social-proof h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 700;
}

.alumni-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.alumni-story {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--light);
    border-radius: 8px;
    text-align: center;
}

.alumni-story img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.alumni-story p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
    margin-bottom: 15px;
}

.alumni-story span {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.pricing-reveal {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.pricing-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.pricing-reveal .content-narrow p {
    font-size: 19px;
    line-height: 1.7;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.pricing-options {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.pricing-card {
    flex: 1;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary);
}

.price {
    margin-bottom: 20px;
}

.price-amount {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.price-period {
    display: block;
    font-size: 15px;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.btn-select-course {
    width: 100%;
    padding: 16px 20px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-select-course:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.pricing-extras {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.extra-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
}

.extra-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}

.extra-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
}

.extra-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
}

.urgency-section {
    padding: 80px 20px;
    background: #fff9e6;
    border-top: 4px solid var(--accent);
    border-bottom: 4px solid var(--accent);
}

.urgency-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
}

.urgency-section p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--accent);
    font-weight: 700;
}

.urgency-reasons {
    max-width: 700px;
    margin: 30px auto 0;
}

.urgency-reasons p {
    font-size: 16px;
    text-align: left;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: normal;
}

.form-section {
    padding: 100px 20px;
    background: #fafafa;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary);
}

.selected-course-box {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
}

.selected-course-box p {
    font-size: 16px;
    margin-bottom: 8px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.form-disclaimer {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

.final-cta {
    padding: 100px 20px;
    background: var(--primary);
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.final-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-final {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(233, 69, 96, 0.4);
}

.site-footer {
    background: var(--secondary);
    padding: 60px 20px 30px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta-content span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    background: #fff;
    color: var(--accent);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-accept {
    background: var(--accent);
    color: #fff;
}

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

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-2px);
}

.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero .lead {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.about-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text);
}

.story-section {
    padding: 100px 20px;
    background: #fff;
}

.philosophy-section {
    padding: 100px 20px;
    background: var(--light);
}

.philosophy-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

.philosophy-section p {
    font-size: 19px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 20px;
    background: #fff;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
}

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary);
}

.team-member .title {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.values-section {
    padding: 100px 20px;
    background: var(--light);
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
}

.values-list {
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary);
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
}

.numbers-section {
    padding: 100px 20px;
    background: var(--primary);
}

.numbers-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.stats-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-big {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cta-section {
    padding: 80px 20px;
    background: var(--accent);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.services-overview {
    padding: 80px 20px;
    background: #fff;
}

.service-card-large {
    max-width: 900px;
    margin: 0 auto 50px;
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border);
}

.service-card-large.featured {
    border-color: var(--accent);
    position: relative;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-header h2 {
    font-size: 32px;
    color: var(--primary);
}

.service-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
}

.service-duration {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text);
}

.service-details h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary);
}

.service-details ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-details ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-details ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.services-additional {
    padding: 80px 20px;
    background: var(--light);
}

.services-additional h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.workshop-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.workshop-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.workshop-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.workshop-duration {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.workshop-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text);
}

.workshop-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.workshop-card ul li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

.workshop-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.btn-secondary {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.3s;
}

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

.comparison-section {
    padding: 80px 20px;
    background: #fff;
}

.comparison-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.comparison-table td {
    font-size: 15px;
    color: var(--text);
}

.faq-section {
    padding: 80px 20px;
    background: var(--light);
}

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

.contact-info {
    padding: 80px 20px;
    background: #fff;
}

.contact-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-box {
    flex: 1;
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
}

.contact-box h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-address {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text);
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 8px;
}

.map-section {
    padding: 80px 20px;
    background: var(--light);
}

.map-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder p {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text);
}

.map-directions {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.faq-preview {
    padding: 80px 20px;
    background: #fff;
}

.faq-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.thanks-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: #11998e;
}

.thanks-hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-hero .lead {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
}

.thanks-content {
    padding: 80px 20px;
    background: #fff;
}

.thanks-box {
    margin-bottom: 60px;
}

.thanks-box h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary);
}

.timeline-steps {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

.thanks-info {
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary);
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 12px 0 12px 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.info-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.thanks-prep {
    margin-bottom: 60px;
}

.thanks-prep h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.thanks-prep p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.prep-list {
    list-style: none;
}

.prep-list li {
    padding: 12px 0 12px 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.prep-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.thanks-community {
    margin-bottom: 60px;
}

.thanks-community h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.thanks-community p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-2px);
}

.legal-page {
    padding: 150px 20px 80px;
    background: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary);
}

.updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary);
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text);
}

.legal-page h4 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: var(--text);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

.legal-page ul {
    margin: 20px 0 20px 25px;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.cookie-table td {
    font-size: 14px;
    color: var(--text);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

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

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

    .container-split,
    .about-split {
        flex-direction: column;
    }

    .split-image,
    .about-image {
        min-height: 300px;
    }

    .insight-cards,
    .phase-cards,
    .pricing-options,
    .pricing-extras,
    .footer-grid,
    .alumni-grid,
    .team-grid,
    .workshop-grid,
    .contact-grid {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-marker {
        width: 80px;
        height: 80px;
        font-size: 16px;
    }

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

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

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

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
}
