:root {
    --primary: #0A84FF;
    --primary-dark: #0066CC;
    --secondary: #1E1E1E;
    --accent: #FF375F;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #8A8A8A;
    --border: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(10, 132, 255, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 132, 255, 0.12), 0 2px 4px rgba(10, 132, 255, 0.06);
    --shadow-lg: 0 12px 32px rgba(10, 132, 255, 0.16), 0 4px 8px rgba(10, 132, 255, 0.08);
    --shadow-hover: 0 16px 48px rgba(10, 132, 255, 0.2), 0 6px 12px rgba(10, 132, 255, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

.container-narrow {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 40px;
    transition: var(--transition);
}

.nav-logo:hover img {
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-medium);
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--primary);
    color: var(--bg-white);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.hero {
    padding: clamp(120px, 15vh, 160px) 0 clamp(80px, 10vh, 120px);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: clamp(18px, 2vw, 20px);
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.modules {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-medium);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.module-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.module-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    border: none;
}

.module-card-featured .module-title,
.module-card-featured .module-description {
    color: var(--bg-white);
}

.module-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.module-card-featured .module-icon {
    background: rgba(255, 255, 255, 0.2);
}

.module-icon i {
    font-size: 28px;
    color: var(--primary);
}

.module-card-featured .module-icon i {
    color: var(--bg-white);
}

.module-card:hover .module-icon {
    transform: scale(1.1) rotate(5deg);
}

.module-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.module-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.module-topics {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.module-topics li {
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: var(--bg-white);
}

.module-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.approach {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-light);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.approach-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 20px;
}

.approach-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-point h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.approach-point p {
    color: var(--text-medium);
    line-height: 1.6;
}

.approach-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.approach-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.reality-check {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--secondary);
    color: var(--bg-white);
}

.reality-box {
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(40px, 6vw, 60px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reality-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    color: var(--bg-white);
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.reality-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.reality-item i {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.reality-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.who-benefits {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-white);
}

.section-title-center {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.benefit-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.benefit-card:hover .benefit-image {
    transform: scale(1.05);
}

.benefit-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
}

.benefit-card p {
    color: var(--text-medium);
    padding: 0 24px 24px;
    line-height: 1.6;
}

.how-it-works-preview {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-light);
}

.how-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.how-preview-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 24px;
}

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

.how-preview-text .btn {
    margin-top: 16px;
}

.how-preview-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.how-preview-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.instructors {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-white);
}

.section-subtitle-center {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: -40px auto 60px;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.instructor-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.instructor-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.instructor-card:hover .instructor-image {
    transform: scale(1.05);
}

.instructor-card h3 {
    font-size: 22px;
    margin: 24px 24px 8px;
}

.instructor-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    padding: 0 24px;
    margin-bottom: 12px;
}

.instructor-bio {
    color: var(--text-medium);
    padding: 0 24px 24px;
    line-height: 1.6;
}

.cta-section {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-light);
}

.cta-box {
    background: var(--bg-white);
    padding: clamp(40px, 6vw, 60px);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.cta-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer {
    background: var(--secondary);
    color: var(--bg-white);
    padding: clamp(60px, 8vh, 80px) 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(32px, 5vw, 60px);
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.page-hero {
    padding: clamp(120px, 15vh, 160px) 0 clamp(60px, 8vh, 80px);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-different {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-white);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.why-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 24px;
}

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

.why-highlight {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin-top: 32px;
    display: flex;
    gap: 16px;
}

.why-highlight i {
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.why-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.why-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.no-promises {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    max-width: 800px;
    margin: -40px auto 60px;
    line-height: 1.7;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.promise-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.promise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.promise-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.promise-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.real-experience {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-white);
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.experience-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.experience-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.experience-icon i {
    font-size: 24px;
    color: var(--primary);
}

.experience-card:hover .experience-icon {
    background: var(--primary);
}

.experience-card:hover .experience-icon i {
    color: var(--bg-white);
}

.experience-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.experience-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.who-teaches {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-light);
}

.teaches-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.teaches-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 24px;
}

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

.teaches-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.teaches-list li {
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.teaches-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.teaches-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.teaches-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.approach-philosophy {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.philosophy-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.philosophy-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.philosophy-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.philosophy-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.comparison {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-light);
}

.comparison-table {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
}

.comparison-header {
    background: var(--secondary);
}

.comparison-header .comparison-cell {
    color: var(--bg-white);
    font-weight: 700;
}

.comparison-cell {
    background: var(--bg-white);
    padding: 20px;
    font-size: 15px;
}

.comparison-highlight {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary);
}

.how-format {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-white);
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.format-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.format-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.format-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.format-icon i {
    font-size: 32px;
    color: var(--primary);
}

.format-card:hover .format-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.format-card:hover .format-icon i {
    color: var(--bg-white);
}

.format-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.format-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.module-detail {
    padding: clamp(60px, 8vh, 80px) 0;
    background: var(--bg-white);
}

.module-detail:nth-child(even) {
    background: var(--bg-light);
}

.module-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.module-detail-reverse .module-detail-content {
    direction: rtl;
}

.module-detail-reverse .module-detail-text {
    direction: ltr;
}

.module-detail-reverse .module-detail-visual {
    direction: ltr;
}

.module-detail-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
}

.module-detail-intro {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.module-detail-text h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.module-detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.module-detail-list li {
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.module-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.module-detail-bonus {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.module-detail-bonus h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.module-detail-bonus p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 15px;
}

.module-detail-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.module-detail-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.learning-path {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-light);
}

.path-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.path-step {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    transition: var(--transition);
}

.path-step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.path-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.path-step h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.path-step p {
    color: var(--text-medium);
    line-height: 1.6;
}

.what-not-included {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-white);
}

.not-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.not-included-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.not-included-item i {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.not-included-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.resources-intro {
    padding: clamp(40px, 6vh, 60px) 0;
    background: var(--bg-light);
}

.resources-intro-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

.resources-grid-section {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.resource-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.resource-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.resource-icon i {
    font-size: 24px;
    color: var(--primary);
}

.resource-card:hover .resource-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.resource-card:hover .resource-icon i {
    color: var(--bg-white);
}

.resource-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.resource-description {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

.resource-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resource-points li {
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
}

.resource-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.newsletter-section {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-light);
}

.newsletter-box {
    background: var(--bg-white);
    padding: clamp(40px, 6vw, 60px);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.newsletter-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
}

.newsletter-text {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.1);
}

.newsletter-note {
    font-size: 14px;
    color: var(--text-light);
}

.contact-section {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(40px, 6vw, 80px);
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary);
}

.contact-text h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.contact-text p,
.contact-text a {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-text a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.map-section {
    padding: clamp(60px, 8vh, 80px) 0;
    background: var(--bg-light);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-preview {
    padding: clamp(80px, 10vh, 120px) 0;
    background: var(--bg-white);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.thanks-section {
    padding: clamp(120px, 20vh, 200px) 0;
    background: var(--bg-light);
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon i {
    font-size: 40px;
    color: var(--bg-white);
}

.thanks-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-subtext {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.legal-page {
    padding: clamp(120px, 15vh, 160px) 0 clamp(80px, 10vh, 120px);
    background: var(--bg-white);
}

.legal-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
}

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

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    color: var(--text-medium);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content,
    .approach-content,
    .how-preview-content,
    .why-content,
    .teaches-content,
    .module-detail-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .module-card-featured {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell:first-child {
        font-weight: 700;
        background: var(--bg-light);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-actions,
    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .modules-grid,
    .benefits-grid,
    .instructors-grid,
    .format-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}