:root {
    --color-coral: #FF6B6B;
    --color-teal: #4ECDC4;
    --color-purple: #9B59B6;
    --color-amber: #F39C12;
    --color-indigo: #5B6DCD;
    --color-emerald: #2ECC71;
    
    --color-text: #2C3E50;
    --color-text-light: #5A6C7D;
    --color-white: #FFFFFF;
    --color-off-white: #F8F9FA;
    --color-gray-light: #E8ECEF;
    --color-gray: #BDC3C7;
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 24px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.12);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-scroll {
    max-width: 100%;
    padding: 0;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

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

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

.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text);
}

.logo-img {
    width: 40px;
    height: 40px;
}

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

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-coral);
}

.nav-link.active {
    color: var(--color-coral);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-coral);
    border-radius: 3px 3px 0 0;
}

.nav-link-cta {
    background: var(--color-coral);
    color: var(--color-white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.5rem;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-fullscreen {
    min-height: 100vh;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.85) 0%, rgba(155, 89, 182, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-title .text-accent {
    color: var(--color-amber);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-white);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--color-coral);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-coral);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--color-coral);
    border-color: var(--color-coral);
}

.btn-outline:hover {
    background: var(--color-coral);
    color: var(--color-white);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-white {
    background: var(--color-white);
}

.section-coral {
    background: var(--color-coral);
    color: var(--color-white);
}

.section-coral h2,
.section-coral h3,
.section-coral h4 {
    color: var(--color-white);
}

.section-teal {
    background: var(--color-teal);
    color: var(--color-white);
}

.section-teal h2,
.section-teal h3,
.section-teal h4 {
    color: var(--color-white);
}

.section-purple {
    background: var(--color-purple);
    color: var(--color-white);
}

.section-purple h2,
.section-purple h3,
.section-purple h4 {
    color: var(--color-white);
}

.section-amber {
    background: var(--color-amber);
    color: var(--color-white);
}

.section-amber h2,
.section-amber h3,
.section-amber h4 {
    color: var(--color-white);
}

.section-indigo {
    background: var(--color-indigo);
    color: var(--color-white);
}

.section-indigo h2,
.section-indigo h3,
.section-indigo h4 {
    color: var(--color-white);
}

.section-emerald {
    background: var(--color-emerald);
    color: var(--color-white);
}

.section-emerald h2,
.section-emerald h3,
.section-emerald h4 {
    color: var(--color-white);
}

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

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-description {
    line-height: 1.7;
    opacity: 0.9;
}

.feature-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-xl);
}

.comparison-card-featured {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.25);
}

.comparison-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    color: var(--color-teal);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.comparison-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

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

.comparison-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.comparison-features i {
    margin-top: 0.25rem;
    opacity: 0.8;
}

.horizontal-scroll-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 0;
    margin: 0 -2rem;
}

.horizontal-scroll-container {
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
}

.process-card {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.process-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.process-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.scroll-indicator {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.content-image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-image-split.reverse {
    direction: rtl;
}

.content-image-split.reverse > * {
    direction: ltr;
}

.content-side h2 {
    margin-bottom: 1.5rem;
}

.content-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.content-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.content-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.content-feature-item i {
    font-size: 1.25rem;
    opacity: 0.8;
}

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

.testimonial-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.testimonial-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.testimonial-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.testimonial-meta {
    opacity: 0.8;
    font-style: italic;
}

.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--color-white);
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-xl);
}

.benefit-icon-wrapper {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-description {
    line-height: 1.7;
    opacity: 0.9;
}

.section-minimal-cta {
    background: var(--color-off-white);
    text-align: center;
}

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

.minimal-cta-title {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.minimal-cta-text {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.page-header {
    padding: 10rem 0 6rem;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-white);
    opacity: 0.95;
}

.content-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.expertise-number {
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.expertise-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.expertise-description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.expertise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expertise-list li {
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.maturity-levels {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.maturity-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid rgba(255, 255, 255, 0.5);
}

.maturity-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.maturity-text {
    opacity: 0.9;
    line-height: 1.7;
}

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

.evaluation-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.evaluation-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.evaluation-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.evaluation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.evaluation-list li {
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

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

.evaluation-note {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.125rem;
    opacity: 0.9;
}

.approach-showcase {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-intro {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.approach-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.approach-item-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.approach-item-text {
    opacity: 0.9;
    line-height: 1.6;
}

.training-modules {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.training-module {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.training-module-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
}

.training-module-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.training-module-title-wrapper {
    flex: 1;
}

.training-module-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.training-duration {
    opacity: 0.8;
    font-size: 0.875rem;
}

.training-module-content {
    padding: 2rem;
}

.training-description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.training-topics-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.training-topics {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.training-topics li {
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.training-topics li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

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

.pedagogy-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pedagogy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.pedagogy-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pedagogy-description {
    line-height: 1.7;
    opacity: 0.9;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.community-feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.community-feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.community-feature-text {
    opacity: 0.9;
    line-height: 1.7;
}

.formats-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.formats-intro {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.format-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.format-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.format-description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.format-duration {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.certification-block {
    max-width: 900px;
    margin: 0 auto;
}

.certification-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.certification-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.certification-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.certification-description {
    line-height: 1.7;
    opacity: 0.9;
}

.journey-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.journey-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.journey-item-last {
    margin-bottom: 0;
}

.journey-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-dot {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.journey-line {
    flex: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
}

.journey-item-last .journey-line {
    display: none;
}

.journey-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.journey-phase {
    font-size: 0.875rem;
    font-weight: 700;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.journey-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.journey-description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.journey-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.journey-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    opacity: 0.9;
}

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

.support-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.support-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.support-description {
    line-height: 1.7;
    opacity: 0.9;
}

.tracking-system {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tracking-intro {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.tracking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.tracking-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tracking-item-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.tracking-item-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tracking-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tracking-list li {
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.tracking-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.success-factors {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.success-intro {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.success-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.success-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.success-item-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-item-text {
    line-height: 1.7;
    opacity: 0.9;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-side {
    position: sticky;
    top: 120px;
}

.contact-info-title {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.contact-info-text {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-block {
    display: flex;
    gap: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-emerald);
    color: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-block-title {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.contact-info-content a {
    color: var(--color-emerald);
    font-weight: 600;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.contact-info-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.contact-reasons {
    background: var(--color-off-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.contact-reasons-title {
    color: var(--color-text);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-reasons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-reasons-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-light);
}

.contact-reasons-list i {
    color: var(--color-emerald);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form-title {
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.contact-form-subtitle {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

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

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-emerald);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox-group {
    margin-bottom: 2rem;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

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

.section-map {
    padding: 0;
}

.map-container iframe {
    width: 100%;
    display: block;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-teal) 100%);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.thanks-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    opacity: 0.95;
}

.thanks-submessage {
    font-size: 1.125rem;
    color: var(--color-white);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 10rem 0 6rem;
    background: var(--color-off-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 4rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.legal-title {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.legal-update {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-gray-light);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--color-text);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    color: var(--color-text);
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--color-teal);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--color-coral);
}

.footer {
    background: var(--color-text);
    color: var(--color-white);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand-name {
    font-size: 1.5rem;
    color: var(--color-white);
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.8;
}

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

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-coral);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 999;
        align-items: flex-start;
    }

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

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .content-image-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-image-split.reverse {
        direction: ltr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-side {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero-section {
        padding: 6rem 1.5rem 3rem;
        min-height: 90vh;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .value-grid,
    .feature-comparison-grid,
    .benefits-grid,
    .expertise-grid,
    .evaluation-grid,
    .support-grid,
    .pedagogy-grid,
    .formats-grid,
    .tracking-grid,
    .success-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-scroll-wrapper {
        margin: 0 -1rem;
    }

    .horizontal-scroll-container {
        padding: 0 1rem;
    }

    .process-card {
        flex: 0 0 320px;
    }

    .journey-item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }

    .training-module-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .legal-content {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .thanks-icon {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        width: 100%;
        right: -100%;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 5rem 1rem 2rem;
    }

    .page-header {
        padding: 8rem 0 4rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .value-card,
    .comparison-card,
    .benefit-card,
    .expertise-card,
    .evaluation-card,
    .support-card,
    .pedagogy-card,
    .tracking-item,
    .success-item {
        padding: 2rem;
    }

    .process-card {
        flex: 0 0 280px;
        padding: 2rem;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .journey-content {
        padding: 2rem;
    }

    .training-module-content {
        padding: 1.5rem;
    }

    .format-card {
        padding: 2rem;
    }

    .certification-content {
        padding: 2rem;
    }

    .legal-content {
        padding: 1.5rem;
    }
}