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

:root {
    --primary-dark: #2F4870;
    --primary-light: #4FB5EC;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #6b7280;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Sticky Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(47, 72, 112, 0.08);
    padding: 18px 0;
    transition: all 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

.logo-img {
    height: 65px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0 auto;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--primary-dark);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}
.lang-btn {
    background: none;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.lang-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-dark);
}
.lang-btn.active {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 101px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 8px;
    z-index: 99;
    border-bottom: 1px solid var(--gray-200);
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}

/* Mobile language switcher */
.mobile-lang-switcher {
    display: flex;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}
.mobile-lang-switcher .lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
}

/* Mobile contact button */
.mobile-contact-btn {
    margin-top: 16px;
    text-align: center;
    width: 100%;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(47, 72, 112, 0.15);
}
.btn-primary:hover {
    background: #3a5a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 72, 112, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 1.5px solid var(--primary-dark);
    padding: 11px 28px;
    border-radius: 60px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline:hover {
    background: rgba(47, 72, 112, 0.05);
}

/* Hero Section - Full Screen */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    background: linear-gradient(135deg, rgba(47, 72, 112, 0.05) 0%, rgba(79, 181, 236, 0.05) 100%);
    border-radius: 0 0 60px 60px;
    margin-bottom: 40px;
}
.hero .container {
    width: 100%;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--primary-dark);
    font-weight: 800;
}
.hero h1 span {
    color: var(--primary-light);
}
.hero-sub {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    color: var(--primary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    margin-bottom: 16px;
    color: var(--primary-dark);
    font-weight: 800;
    line-height: 1.2;
}
.section-sub {
    color: var(--gray-600);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 48px auto 0;
}
.stat-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s;
}
.stat-card:hover {
    transform: translateY(-6px);
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* 12 Step Program Section */
.program-highlight {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #3a5a8a 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 40px;
    margin-top: 40px;
}
.program-highlight h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}
.program-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 32px;
}
.program-feature {
    text-align: center;
    max-width: 280px;
    flex: 0 0 auto;
}
.program-feature-img {
    width: 280px;
    height: 280px;
    margin: 0 auto 24px;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.program-feature-img:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 15px 25px rgba(0, 0, 0, 0.15);
}
.program-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.program-feature h4 {
    font-size: 1.8rem;
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    text-align: left;
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}
.service-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* License Section */
.license-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}
.license-image-card {
    background: var(--white);
    padding: 24px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-light);
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
}
.license-image-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.license-image-card img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
}
.license-caption {
    margin-top: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.lightbox.active {
    display: flex;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}
.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 16px;
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Expert Team Scroll */
.expert-scroll-container {
    position: relative;
    margin: 40px 0;
}
.expert-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 4px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-dark) var(--gray-200);
}
.expert-scroll::-webkit-scrollbar {
    height: 8px;
}
.expert-scroll::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}
.expert-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 10px;
}
.expert-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s;
}
.expert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.expert-avatar {
    width: 150px;
    height: 200px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.expert-avatar i {
    font-size: 4rem;
    color: var(--primary-dark);
}
.expert-card h4 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: var(--primary-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.expert-role {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 60px 0;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, rgba(79, 181, 236, 0.3), var(--primary-light), rgba(79, 181, 236, 0.3));
    z-index: 0;
}
.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}
.process-step h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}
.process-step p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Contact Section with Map */
.contact-map-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    background: var(--gray-50);
    padding: 48px;
    border-radius: 36px;
    border: 1px solid var(--gray-200);
}
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--primary-light);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Simple Contact Items - No Icons */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item-simple {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-item-simple strong {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
}
.contact-item-simple div {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-800);
}
.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.phone-number {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-800);
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.contact-modal.active {
    display: flex;
}
.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 32px;
    max-width: 450px;
    width: 100%;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
}
.modal-content h3 {
    margin-bottom: 24px;
    color: var(--primary-dark);
}
.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
}
.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: var(--primary-light);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 40px 0;
}
.footer-content {
    text-align: center;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}
.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--primary-light);
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 32px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.felsen-credit a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
}
.felsen-credit a:hover {
    color: white;
    text-decoration: underline;
}

/* Team Categories */
.team-category {
    margin-bottom: 60px;
}
.team-category:last-child {
    margin-bottom: 0;
}
.team-category-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { flex-direction: column; gap: 32px; }
    .process-timeline::before { display: none; }
    .license-images-grid { grid-template-columns: 1fr; }
    .contact-map-grid { grid-template-columns: 1fr; }
    .program-features { gap: 40px; }
    .program-feature-img { width: 220px; height: 220px; }
    .program-feature h4 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .lang-switcher { display: none; }
    .desktop-contact-btn { display: none; }
    .mobile-menu-btn { 
        display: block; 
        margin-left: auto;
    }
    .stats-grid { grid-template-columns: 1fr; }
    .hero { min-height: 90vh; }
    .expert-card { flex: 0 0 260px; }
    .section-title { font-size: 2.2rem; }
    .program-features { flex-direction: column; gap: 50px; }
    .program-feature { max-width: 100%; }
    .program-feature-img { width: 280px; height: 280px; }
}

@media (min-width: 769px) {
    .mobile-contact-btn { display: none; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .section-title { font-size: 1.8rem; }
    .footer-links { flex-direction: column; gap: 16px; }
    .program-features { gap: 20px; }
    .program-feature-img { width: 260px; height: 260px; border-radius: 20px; }
    .program-feature h4 { font-size: 1.4rem; }
}

/* Мобильный переключатель языков (сверху слева, рядом с бургером) */
.mobile-lang-switcher-top {
    display: none;
    gap: 6px;
    margin-left: auto;
    margin-right: 12px;
}
.mobile-lang-switcher-top .lang-btn {
    padding: 5px 10px;
    font-size: 0.8rem;
}

/* На мобилках показываем переключатель сверху, скрываем десктопный */
@media (max-width: 768px) {
    .lang-switcher {
        display: none;
    }
    .mobile-lang-switcher-top {
        display: flex;
    }
    .nav-container {
        padding: 0 16px;
    }
    /* Бургер справа */
    .mobile-menu-btn {
        margin-left: 0;
    }
}

/* На десктопе скрываем мобильный переключатель */
@media (min-width: 769px) {
    .mobile-lang-switcher-top {
        display: none;
    }
}

/* Hero Section - Full Screen */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    background: linear-gradient(135deg, rgba(47, 72, 112, 0.05) 0%, rgba(79, 181, 236, 0.05) 100%);
    border-radius: 0 0 60px 60px;
    margin-bottom: 40px;
}
.hero .container {
    width: 100%;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--primary-dark);
    font-weight: 800;
    text-align: center;
}
.hero h1 span {
    color: var(--primary-light);
}
.hero-sub {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 16px;
}
.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Для мобильных */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 60px 0;
    }
    .hero-content {
        padding: 20px 16px;
    }
    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        text-align: center;
        word-break: break-word;
    }
    .hero-sub {
        font-size: 1.1rem;
        text-align: center;
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        text-align: center;
    }
    .hero-sub {
        font-size: 1rem;
        text-align: center;
    }
}

  /* ==================== ПОДКЛЮЧЕНИЕ ШРИФТА COOLVETICA ==================== */
@font-face {
    font-family: 'Coolvetica';
    src: url('Coolvetica Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-dark: #2F4870;
    --primary-light: #4FB5EC;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #6b7280;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
    
    /* Система шрифтов */
    --font-display: 'Coolvetica', 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    letter-spacing: 0.01em; /* Лёгкий отступ между буквами для body */
}

/* ==================== ПОДКЛЮЧЕНИЕ ШРИФТА COOLVETICA ==================== */
@font-face {
    font-family: 'Coolvetica';
    src: url('Coolvetica Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-dark: #2F4870;
    --primary-light: #4FB5EC;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #6b7280;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
    
    /* Единый шрифт для всего сайта */
    --font-primary: 'Coolvetica', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary); /* Coolvetica для всего текста */
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    letter-spacing: 0.01em;
}

/* Все заголовки */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Навигация */
.nav-links a {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Кнопки */
.btn-primary, .btn-outline {
    font-family: var(--font-primary);
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Hero */
.hero h1 {
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero-sub {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

/* Секционные теги */
.section-tag {
    font-family: var(--font-primary);
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Заголовки секций */
.section-title {
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.section-sub {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

/* Карточки услуг */
.service-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.service-card p {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

/* Карточки команды */
.expert-card h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.expert-role {
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
    font-weight: 600;
}

/* Категории команды */
.team-category-title {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Статистика */
.stat-number {
    font-family: var(--font-primary);
    font-weight: 700;
}

.stat-label {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

/* Программа 12 шагов */
.program-highlight h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.program-feature h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Этапы (Process) */
.process-step h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.process-step p {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

/* Контактная информация */
.contact-info-side h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.contact-item-simple strong {
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
}

.contact-item-simple div {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

.phone-number {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

/* Модальное окно */
.modal-content h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.modal-content input,
.modal-content textarea {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

/* Футер */
.footer {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

.footer-links a {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

/* Мобильное меню */
.mobile-menu a {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

/* Лицензии */
.license-caption {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Отзывы */
.testimonial-quote {
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

.testimonial-author h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Кнопки языков */
.lang-btn {
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
}