/* =====================================================
   ClinicIQ — Clean Conversion-Focused Design
   ===================================================== */

:root {
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0c4a6e;
    --bg-dark-alt: #0e5a84;
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-on-dark: #ffffff;
    --accent: #0284c7;
    --accent-light: #38bdf8;
    --accent-hover: #0369a1;
    --green: #10b981;
    --red: #ef4444;
    --border: #e2e8f0;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 22px; line-height: 1.7; color: var(--text); background: var(--bg); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
img { max-width: 100%; height: auto; }

.container { max-width: 100%; margin: 0 auto; padding: 0 64px; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: var(--radius-sm);
    font-size: 20px; font-weight: 600; cursor: pointer;
    transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary {
    background: var(--accent); color: #fff;
    box-shadow: 0 2px 8px rgba(2,132,199,0.3);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(2,132,199,0.4); }
.btn-ghost {
    background: transparent; color: var(--text-on-dark);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.btn-accent {
    background: var(--green); color: #fff;
    box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}
.btn-accent:hover { background: #059669; transform: translateY(-1px); }
.btn-large { padding: 20px 40px; font-size: 22px; border-radius: var(--radius); }

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 64px; transition: all 0.3s ease;
}
.header.scrolled {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    box-shadow: var(--shadow); padding: 12px 64px;
}
.header.hidden { transform: translateY(-100%); }

.logo { display: flex; align-items: center; gap: 8px; font-size: 26px; font-weight: 700; color: var(--text); }
.logo-dot { color: var(--accent); font-size: 17px; }
.header:not(.scrolled) .logo { color: #fff; }

.nav { display: flex; gap: 28px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-link {
    font-size: 22px; font-weight: 500; color: var(--text-secondary);
    transition: color 0.2s; white-space: nowrap;
}
.nav-link:hover { color: var(--accent); }
.header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.7); }
.header:not(.scrolled) .nav-link:hover { color: #fff; }
.nav-contacts-mobile { display: none; }

.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
    display: flex; align-items: center; gap: 8px;
    font-size: 18px; font-weight: 500; color: var(--text-secondary);
}
.header:not(.scrolled) .header-phone { color: rgba(255,255,255,0.7); }
.header-cta {
    padding: 12px 24px; border-radius: var(--radius-sm);
    background: var(--accent); color: #fff;
    font-size: 18px; font-weight: 600; transition: all 0.2s;
}
.header-cta:hover { background: var(--accent-hover); }

.menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    width: 24px; padding: 4px 0;
}
.menu-toggle span {
    display: block; height: 2px; background: var(--text);
    transition: all 0.3s ease; border-radius: 2px;
}
.header:not(.scrolled) .menu-toggle span { background: #fff; }
.menu-toggle.active span:first-child { transform: rotate(45deg) translate(2.5px, 2.5px); }
.menu-toggle.active span:last-child { transform: rotate(-45deg) translate(2.5px, -2.5px); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px; background: var(--bg-dark);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(2,132,199,0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(56,189,248,0.15) 0%, transparent 50%);
}
.hero-content {
    position: relative; z-index: 1;
    max-width: 100%; margin: 0 auto; padding: 0 64px;
    width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 20px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8); font-size: 17px; font-weight: 500;
    margin-bottom: 36px;
}
.hero-title {
    font-size: clamp(43px, 6.6vw, 77px); font-weight: 800;
    color: var(--text-on-dark); line-height: 1.15;
    margin-bottom: 24px; max-width: 1000px;
    letter-spacing: -0.02em;
}
.hero-accent {
    color: var(--accent-light);
    background: linear-gradient(135deg, var(--accent-light), #7dd3fc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(22px, 2.6vw, 26px); color: rgba(255,255,255,0.7);
    max-width: 800px; line-height: 1.6; margin-bottom: 44px;
}
.hero-subtitle strong { color: rgba(255,255,255,0.95); }

.hero-metrics {
    display: flex; gap: 48px; margin-bottom: 48px;
    flex-wrap: wrap;
}
.hero-metric { display: flex; flex-direction: column; }
.metric-value {
    font-size: 43px; font-weight: 800; color: var(--text-on-dark);
    letter-spacing: -0.02em;
}
.metric-label { font-size: 18px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-screenshots-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.hero-screenshots-duo img {
    width: 100%; height: auto; display: block;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.1);
}

/* =====================================================
   SOCIAL PROOF
   ===================================================== */
.social-proof { padding: 40px 0; border-bottom: 1px solid var(--border); }
.proof-inner {
    display: flex; align-items: center; gap: 32px;
    flex-wrap: wrap; justify-content: center;
}
.proof-label {
    font-size: 18px; color: var(--text-muted); font-weight: 500;
    white-space: nowrap;
}
.proof-logos { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; justify-content: center; }
.proof-logo {
    font-size: 19px; color: var(--text-secondary); font-weight: 500;
    opacity: 0.7; transition: opacity 0.2s;
}
.proof-logo:hover { opacity: 1; }
.proof-logo strong { color: var(--accent); opacity: 1; font-weight: 700; }

/* =====================================================
   SECTION COMMON
   ===================================================== */
.section-title {
    font-size: clamp(38px, 5.4vw, 60px); font-weight: 800;
    line-height: 1.2; letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-desc {
    font-size: 23px; color: var(--text-secondary);
    max-width: 800px; line-height: 1.6; margin-bottom: 56px;
}
.section-title-sm {
    font-size: 34px; font-weight: 700; margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.section-cta { text-align: center; margin-top: 56px; }

/* =====================================================
   BUSINESS PROCESSES
   ===================================================== */
.processes {
    padding: 120px 0; background: var(--bg);
}
.processes .section-title { text-align: center; max-width: 900px; margin: 0 auto 12px; }
.processes .section-desc { text-align: center; margin: 0 auto 56px; }
.processes-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.process-card {
    padding: 36px; border-radius: var(--radius);
    background: var(--bg-alt); border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-icon { color: var(--accent); margin-bottom: 16px; }
.process-badge {
    display: inline-block; padding: 5px 12px;
    border-radius: 6px; background: #f0fdf4;
    color: var(--green); font-size: 16px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.03em;
    margin-bottom: 14px;
}
.process-card h3 { font-size: 25px; font-weight: 700; margin-bottom: 10px; }
.process-card p { font-size: 19px; color: var(--text-secondary); line-height: 1.7; }

.processes-grid .process-card:nth-child(4),
.processes-grid .process-card:nth-child(5) {
    grid-column: span 1;
}
@media (min-width: 1025px) {
    .processes-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .processes-grid .process-card:nth-child(1),
    .processes-grid .process-card:nth-child(2),
    .processes-grid .process-card:nth-child(3) {
        grid-column: span 2;
    }
    .processes-grid .process-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .processes-grid .process-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* =====================================================
   CASE БЕЛАЯ РАДУГА
   ===================================================== */
.case-br {
    padding: 120px 0; background: var(--bg-dark); color: var(--text-on-dark);
}
.case-br-inner {
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 72px; align-items: start;
}
.case-br-label {
    display: inline-block; font-size: 17px; font-weight: 600;
    color: var(--accent-light); text-transform: uppercase;
    letter-spacing: 0.05em; margin-bottom: 20px;
}
.case-br-title {
    font-size: clamp(38px, 4.8vw, 58px); font-weight: 800;
    line-height: 1.2; margin-bottom: 28px;
    letter-spacing: -0.02em;
}
.case-br-title em { font-style: normal; color: var(--accent-light); }
.case-br-desc {
    font-size: 20px; color: rgba(255,255,255,0.7);
    line-height: 1.7; margin-bottom: 14px;
}
.case-br-desc strong { color: rgba(255,255,255,0.95); }

.case-br-stats {
    display: flex; gap: 40px; margin: 36px 0;
    padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.case-br-stat { display: flex; flex-direction: column; }
.stat-value { font-size: 48px; font-weight: 800; color: var(--accent-light); }
.stat-label { font-size: 18px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.case-br-quote {
    margin-top: 36px; padding: 28px;
    background: rgba(255,255,255,0.05); border-radius: var(--radius);
    border-left: 3px solid var(--accent-light);
}
.case-br-quote p {
    font-size: 20px; font-style: italic; color: rgba(255,255,255,0.85);
    line-height: 1.7; margin-bottom: 20px;
}
.case-br-quote cite {
    display: flex; align-items: center; gap: 14px;
    font-style: normal;
}
.quote-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; font-weight: 700; flex-shrink: 0;
}
.case-br-quote cite strong { display: block; font-size: 20px; }
.case-br-quote cite span { font-size: 17px; color: rgba(255,255,255,0.5); }

.case-br-visual { display: flex; flex-direction: column; gap: 16px; }

.gallery {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(0,0,0,0.2);
    aspect-ratio: 4 / 3;
}
.gallery-track {
    position: relative;
    width: 100%; height: 100%;
}
.gallery-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.gallery-slide.active { opacity: 1; }
.gallery-slide img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.gallery-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(0,0,0,0.45); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; z-index: 2;
    backdrop-filter: blur(4px);
}
.gallery-btn:hover { background: rgba(0,0,0,0.7); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-dots {
    position: absolute; bottom: 14px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 2;
}
.gallery-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer; transition: all 0.3s ease;
    border: none; padding: 0;
}
.gallery-dot.active {
    background: #fff;
    width: 24px; border-radius: 4px;
}
.case-br-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 17px; color: var(--accent-light);
    font-weight: 500; transition: opacity 0.2s;
}
.case-br-link:hover { opacity: 0.8; }

.case-br .section-cta { margin-top: 64px; }
.case-br .btn-accent { font-size: 22px; padding: 18px 36px; }

/* =====================================================
   SOLUTION MODULES
   ===================================================== */
.solution { padding: 120px 0; background: var(--bg-alt); }
.solution .section-title { text-align: center; max-width: 800px; margin: 0 auto 12px; }
.solution .section-desc { text-align: center; margin: 0 auto 56px; }

.modules-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.module-card {
    padding: 40px; border-radius: var(--radius);
    background: var(--bg); border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.module-icon { margin-bottom: 20px; color: var(--accent); }
.module-card h3 { font-size: 28px; font-weight: 700; margin-bottom: 6px; }
.module-result {
    display: inline-block; font-size: 19px; font-weight: 700;
    color: var(--green); margin-bottom: 14px;
}
.module-card > p { font-size: 19px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.module-screenshot {
    margin-top: 20px; text-align: center;
    background: var(--bg-alt); border-radius: var(--radius-sm);
    overflow: hidden;
    font-size: 17px; color: var(--text-muted);
}
.module-screenshot img {
    width: 100%; height: auto; display: block;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    cursor: zoom-in;
    transition: opacity .2s ease;
}
.module-screenshot img:hover {
    opacity: .85;
}

.module-slider {
    position: relative;
}
.module-slide {
    opacity: 0;
    position: absolute; top: 0; left: 0;
    transition: opacity 1s ease;
}
.module-slide.active {
    opacity: 1;
    position: relative;
}

.img-lightbox {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(6px);
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
    cursor: zoom-out;
    padding: 24px;
}
.img-lightbox.active { opacity: 1; visibility: visible; }
.img-lightbox img {
    max-width: 95vw; max-height: 92vh;
    width: auto; height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 80px rgba(0,0,0,.4);
    transform: scale(.92);
    transition: transform .35s var(--ease);
    object-fit: contain;
}
.img-lightbox.active img { transform: scale(1); }
.img-lightbox-close {
    position: absolute; top: 20px; right: 24px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,.15); border: none; border-radius: 50%;
    color: #fff; font-size: 24px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.img-lightbox-close:hover { background: rgba(255,255,255,.3); }
.module-screenshot span {
    display: block; padding: 56px 24px;
    border: 1px dashed var(--border); border-radius: var(--radius-sm);
}

/* =====================================================
   PERSONAS
   ===================================================== */
.personas { padding: 120px 0; background: var(--bg); }
.personas .section-title { text-align: center; margin-bottom: 56px; }
.personas-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.persona-card {
    padding: 36px; border-radius: var(--radius);
    background: var(--bg-alt); border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.persona-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.persona-icon { color: var(--accent); margin-bottom: 20px; }
.persona-card h3 { font-size: 25px; font-weight: 700; margin-bottom: 20px; }
.persona-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.persona-card li {
    font-size: 19px; color: var(--text-secondary); line-height: 1.6;
    padding-left: 22px; position: relative;
}
.persona-card li::before {
    content: ''; position: absolute; left: 0; top: 9px;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
}

/* =====================================================
   RESULTS
   ===================================================== */
.results { padding: 120px 0; background: var(--bg-alt); }
.results .section-title { text-align: center; margin-bottom: 56px; }
.results-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.result-card {
    padding: 36px; border-radius: var(--radius);
    background: var(--bg); border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 24px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.result-header { display: flex; align-items: center; gap: 14px; }
.result-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; font-weight: 700; flex-shrink: 0;
}
.result-header h3 { font-size: 22px; font-weight: 700; }
.result-header span { font-size: 17px; color: var(--text-muted); display: block; }

.result-comparison {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.result-before, .result-after {
    padding: 18px; border-radius: var(--radius-sm);
    font-size: 18px; line-height: 1.6;
}
.result-before { background: #fef2f2; }
.result-after { background: #f0fdf4; }
.result-label {
    display: block; font-size: 16px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.result-before .result-label { color: var(--red); }
.result-after .result-label { color: var(--green); }
.result-before p, .result-after p { color: var(--text-secondary); }

.result-card blockquote {
    font-size: 19px; font-style: italic; color: var(--text-secondary);
    line-height: 1.6; padding-left: 18px;
    border-left: 2px solid var(--accent-light);
}

/* =====================================================
   START (INTEGRATIONS + STEPS)
   ===================================================== */
.start { padding: 120px 0; background: var(--bg); }
.start-two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; margin-bottom: 0;
}
.start-integrations p { color: var(--text-secondary); margin-bottom: 24px; font-size: 20px; }
.integrations-list {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.integration-chip {
    padding: 12px 22px; border-radius: var(--radius-sm);
    background: var(--bg-alt); border: 1px solid var(--border);
    font-size: 19px; font-weight: 500; color: var(--text-secondary);
    transition: border-color 0.2s;
}
.integration-chip:hover { border-color: var(--accent); }
.integration-chip strong { color: var(--text); }
.integration-chip.highlight {
    background: var(--accent); color: #fff; border-color: var(--accent);
    font-weight: 600;
}

.steps-list { display: flex; flex-direction: column; gap: 28px; margin-top: 24px; }
.step {
    display: flex; gap: 18px; align-items: flex-start;
}
.step-num {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; flex-shrink: 0;
}
.step h4 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.step-time {
    font-size: 17px; font-weight: 500; color: var(--accent);
    margin-left: 8px;
}
.step p { font-size: 19px; color: var(--text-secondary); line-height: 1.6; }

/* =====================================================
   PRICING
   ===================================================== */
.pricing { padding: 120px 0; background: var(--bg-alt); }
.pricing .section-title { text-align: center; margin-bottom: 12px; }
.pricing .section-desc { text-align: center; margin: 0 auto 56px; }

.pricing-card {
    max-width: 100%; margin: 0 auto;
    background: var(--bg); border: 2px solid var(--accent);
    border-radius: var(--radius-lg); padding: 56px;
    position: relative; text-align: center;
    box-shadow: var(--shadow-lg);
}
.pricing-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    padding: 8px 24px; border-radius: 20px;
    background: var(--green); color: #fff;
    font-size: 19px; font-weight: 700; white-space: nowrap;
}
.pricing-main { margin-bottom: 40px; }
.pricing-amount {
    font-size: 67px; font-weight: 800; color: var(--text);
    letter-spacing: -0.03em;
}
.pricing-period { font-size: 24px; color: var(--text-secondary); }
.pricing-extra {
    font-size: 20px; color: var(--text-secondary); margin-top: 10px;
}
.pricing-payback {
    display: inline-block; margin-top: 18px; padding: 10px 24px;
    background: #f0fdf4; color: var(--green); border-radius: 8px;
    font-size: 16px; font-weight: 600;
}

.pricing-features {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; text-align: left; margin-bottom: 40px;
    padding-top: 40px; border-top: 1px solid var(--border);
}
.pricing-col h4 {
    font-size: 15px; font-weight: 700; color: var(--text);
    margin-bottom: 14px; text-transform: uppercase;
    letter-spacing: 0.03em;
}
.pricing-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-col li {
    font-size: 16px; color: var(--text-secondary);
    padding-left: 22px; position: relative;
}
.pricing-col li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--green); font-weight: 700;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq { padding: 120px 0; background: var(--bg); }
.faq .section-title { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 100%; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 24px 0; text-align: left;
    font-size: 18px; font-weight: 600; color: var(--text);
    cursor: pointer; gap: 16px;
}
.faq-trigger:hover { color: var(--accent); }
.faq-icon {
    width: 24px; height: 24px; position: relative; flex-shrink: 0;
}
.faq-icon span {
    position: absolute; background: var(--text-secondary);
    border-radius: 2px; transition: transform 0.3s ease;
}
.faq-icon span:first-child { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-icon span:last-child { width: 2px; height: 14px; top: 5px; left: 11px; }
.faq-item.active .faq-icon span:last-child { transform: rotate(90deg); }

.faq-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-content p {
    padding-bottom: 24px; font-size: 17px;
    color: var(--text-secondary); line-height: 1.7;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact { padding: 120px 0; background: var(--bg-dark); color: var(--text-on-dark); }
.contact-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: start;
}
.contact-text h2 {
    font-size: clamp(32px, 4vw, 42px); font-weight: 800;
    line-height: 1.2; margin-bottom: 20px;
}
.contact-text p {
    font-size: 18px; color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
}
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.contact-channel {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 17px; color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.contact-channel:hover { color: #fff; }

.contact-form {
    display: flex; flex-direction: column; gap: 18px;
    background: rgba(255,255,255,0.05); padding: 36px;
    border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1);
}
.form-field { position: relative; }
.form-field input {
    width: 100%; padding: 18px; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05); color: #fff;
    font-size: 17px; font-family: var(--font);
    transition: border-color 0.2s;
}
.form-field input:focus { outline: none; border-color: var(--accent-light); }
.form-field input::placeholder { color: transparent; }
.form-field label {
    position: absolute; left: 18px; top: 18px;
    font-size: 17px; color: rgba(255,255,255,0.4);
    transition: all 0.2s ease; pointer-events: none;
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label {
    top: -8px; left: 12px; font-size: 11px;
    background: var(--bg-dark); padding: 0 4px;
    color: var(--accent-light);
}
.submit-btn { width: 100%; justify-content: center; }
.form-note {
    font-size: 14px; color: rgba(255,255,255,0.4); text-align: center;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer { padding: 72px 0 36px; background: #082f49; color: rgba(255,255,255,0.7); }
.footer-main {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 60px; margin-bottom: 40px;
}
.footer-brand .logo { color: #fff; margin-bottom: 8px; }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; color: rgba(255,255,255,0.4);
    padding: 4px 10px; border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 15px; color: rgba(255,255,255,0.6); padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px; color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* =====================================================
   FLOATING TG
   ===================================================== */
.floating-tg {
    position: fixed; bottom: 24px; right: 24px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%;
    background: #0088cc; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,136,204,0.4);
    transition: all 0.3s ease;
    opacity: 0; transform: translateY(20px); pointer-events: none;
}
.floating-tg.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-tg:hover { transform: scale(1.1) translateY(0); }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
[data-reveal] {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* =====================================================
   NOTIFICATION
   ===================================================== */
.notification {
    position: fixed; top: 24px; right: 24px; z-index: 10000;
    padding: 16px 24px; border-radius: var(--radius-sm);
    background: var(--green); color: #fff;
    font-size: 14px; font-weight: 500;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%); transition: transform 0.4s var(--ease);
}
.notification.show { transform: translateX(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .processes-grid { grid-template-columns: 1fr; }
    .modules-grid { grid-template-columns: 1fr; }
    .personas-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .case-br-inner { grid-template-columns: 1fr; }
    .case-br-visual { order: -1; }
    .start-two-col { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .pricing-features { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; }

    .nav {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
        height: 100vh; background: var(--bg);
        flex-direction: column; padding: 80px 32px 32px;
        gap: 0; transition: right 0.3s var(--ease);
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    }
    .nav.active { right: 0; }
    .nav-link {
        display: block; padding: 14px 0;
        font-size: 16px; color: var(--text) !important;
        border-bottom: 1px solid var(--border);
    }
    .nav-contacts-mobile { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
    .nav-contact-link { font-size: 15px; color: var(--accent); font-weight: 500; }

    .header-phone { display: none; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .header { padding: 16px 24px; }
    .header.scrolled { padding: 12px 24px; }
    .hero-content { padding: 0 24px; }

    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-title { font-size: 32px; }
    .hero-metrics { gap: 24px; }
    .metric-value { font-size: 26px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-screenshots-duo { display: none; }

    .processes, .solution, .personas, .results, .start, .pricing, .faq, .contact {
        padding: 60px 0;
    }

    .section-title { font-size: 28px; }
    .case-br-stats { flex-wrap: wrap; gap: 20px; }
    .result-comparison { grid-template-columns: 1fr; }
    .pricing-card { padding: 32px 24px; }
    .pricing-amount { font-size: 40px; }

    .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal { flex-direction: column; gap: 8px; }
}

.skolkovo-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    border-radius: 3px;
}

.hero-badge .skolkovo-logo {
    height: 22px;
}

.footer-badge .skolkovo-logo {
    height: 18px;
}

.skolkovo-logo-inline {
    height: 22px;
    margin-left: 6px;
    vertical-align: middle;
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-metrics { flex-direction: column; gap: 16px; }
    .proof-logos { gap: 16px; }
    .case-br-stats { flex-direction: column; }
    .footer-links { grid-template-columns: 1fr; }
}

/* =====================================================
   PROBLEMS SECTION
   ===================================================== */
.problems { padding: 120px 0; background: var(--bg-alt); }
.problems .section-title { text-align: center; max-width: 800px; margin: 0 auto 56px; }
.problems-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.problem-card {
    padding: 36px; border-radius: var(--radius);
    background: var(--bg); border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-icon { color: var(--accent); margin-bottom: 16px; }
.problem-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.problem-card p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }

/* =====================================================
   MOBILE APP SECTION
   ===================================================== */
.mobile-app { padding: 120px 0; background: var(--bg); }
.mobile-app .section-title { text-align: center; max-width: 800px; margin: 0 auto 12px; }
.mobile-app .section-desc { text-align: center; margin: 0 auto 56px; }

.app-gallery-full {
    position: relative;
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--bg-alt);
    box-shadow: var(--shadow-lg);
    margin-bottom: 56px;
}
.app-gallery-full .app-gallery-track {
    display: flex; gap: 16px;
    align-items: center; justify-content: center;
    padding: 32px;
}
.app-gallery-full .app-gallery-slide {
    display: flex; flex: 1; min-width: 0;
    align-items: center; justify-content: center;
}
.app-gallery-full .app-gallery-slide img {
    max-width: 100%; max-height: 420px;
    object-fit: contain; display: block;
    margin: 0 auto;
}
.app-gallery-btn { display: none; }
.app-gallery-dots { display: none; }
.app-gallery-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--border); border: none; padding: 0;
    cursor: pointer; transition: all 0.3s ease;
}
.app-gallery-dot.active {
    background: var(--accent); width: 28px; border-radius: 5px;
}

.app-features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.app-feature {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 24px; border-radius: var(--radius-sm);
    background: var(--bg-alt); border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.app-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.app-feature-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(2,132,199,0.1); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.app-feature h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.app-feature p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
    padding: 120px 0;
    background: var(--bg-dark); color: var(--text-on-dark);
}
.stats-title { text-align: center; color: var(--text-on-dark); }
.stats-title em { color: var(--accent-light); }
.stats-desc { text-align: center; color: rgba(255,255,255,0.6); margin: 0 auto 56px; }
.stats-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 24px; text-align: center;
}
.stat-card {
    padding: 32px 16px; border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
    font-size: 52px; font-weight: 800;
    color: var(--accent-light); letter-spacing: -0.03em;
    line-height: 1;
}
.stat-suffix {
    font-size: 28px; font-weight: 700; color: var(--accent-light);
}
.stat-prefix {
    display: block; font-size: 16px; font-weight: 500;
    color: rgba(255,255,255,0.5); margin-bottom: 4px;
    text-transform: lowercase;
}
.stat-card p {
    font-size: 14px; color: rgba(255,255,255,0.6);
    line-height: 1.5; margin-top: 12px;
}
.stats-section .section-cta { margin-top: 56px; }
.stats-section .btn-primary {
    background: var(--accent-light); color: var(--bg-dark);
}
.stats-section .btn-primary:hover {
    background: #7dd3fc; transform: translateY(-1px);
}

/* =====================================================
   REVIEWS SECTION
   ===================================================== */
.reviews { padding: 120px 0; background: var(--bg-alt); }
.reviews .section-title { text-align: center; margin-bottom: 56px; }

.reviews-carousel {
    position: relative;
    border-radius: var(--radius-lg);
}
.reviews-track {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    padding: 28px;
    display: flex; flex-direction: column; gap: 20px;
    box-sizing: border-box;
    background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: var(--radius);
}
.review-header {
    display: flex; align-items: center; gap: 16px;
}
.review-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.review-header h4 { font-size: 19px; font-weight: 700; }
.review-header span { font-size: 14px; color: var(--text-muted); display: block; margin-top: 2px; }
.review-card > p {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.7;
    position: relative; flex: 1;
}
.review-card > p::before {
    content: '\201C';
    font-size: 40px; color: var(--accent-light);
    line-height: 1; opacity: 0.3;
    float: left; margin-right: 4px; margin-top: -4px;
}

.reviews-btn { display: none; }
.reviews-dots { display: none; }
.reviews-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--border); border: none; padding: 0;
    cursor: pointer; transition: all 0.3s ease;
}
.reviews-dot.active {
    background: var(--accent); width: 28px; border-radius: 5px;
}

/* =====================================================
   PRICING ADDONS
   ===================================================== */
.pricing-addons li::before {
    content: '+' !important; color: var(--accent) !important;
}

/* =====================================================
   NAV ACTIVE STATE
   ===================================================== */
.nav-link.active { color: var(--accent) !important; font-weight: 600; }

/* =====================================================
   SUBPAGE LAYOUT
   ===================================================== */
.header-subpage {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}
.header-subpage .logo { color: var(--text); }
.header-subpage .nav-link { color: var(--text-secondary); }
.header-subpage .header-phone { color: var(--text-secondary); }
.header-subpage .menu-toggle span { background: var(--text); }

.subpage-content { padding-top: 80px; }

.subpage-hero {
    padding: 80px 0 60px;
    background: var(--bg-alt); text-align: center;
}
.subpage-title {
    font-size: clamp(32px, 4.5vw, 50px); font-weight: 800;
    line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px;
}
.subpage-title em { font-style: normal; color: var(--accent); }
.subpage-subtitle {
    font-size: 19px; color: var(--text-secondary);
    max-width: 700px; margin: 0 auto; line-height: 1.6;
}
.subpage-contact { margin-top: 0; }

/* =====================================================
   TOUR PAGE
   ===================================================== */
.tour-section { padding: 80px 0; background: var(--bg); }

.tour-cards {
    display: flex; flex-direction: column; gap: 48px;
}
.tour-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border);
}
.tour-card--with-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.tour-card-num {
    display: inline-block;
    font-size: 14px; font-weight: 700; color: var(--accent);
    background: rgba(2,132,199,.08);
    padding: 4px 12px; border-radius: 20px;
    margin-bottom: 16px;
}
.tour-card h2 {
    font-size: 30px; font-weight: 700; color: var(--text);
    margin-bottom: 20px; line-height: 1.3;
}
.tour-card ul {
    list-style: none; padding: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.tour-card li {
    font-size: 19px; color: var(--text-secondary); line-height: 1.7;
    padding-left: 24px; position: relative;
}
.tour-card li::before {
    content: ''; position: absolute; left: 0; top: 11px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
}
.tour-card-images img {
    width: 100%; height: auto; display: block;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    cursor: zoom-in;
    transition: opacity .2s ease;
}
.tour-card-images img:hover { opacity: .85; }
.tour-card-images--grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.tour-card-images--grid img {
    border-radius: var(--radius-sm);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-section { padding: 80px 0; background: var(--bg); }
.about-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 28px; margin-bottom: 60px;
}
.about-card {
    padding: 40px; border-radius: var(--radius);
    background: var(--bg-alt); border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-card-wide { grid-column: span 2; }
.about-card-icon { color: var(--accent); margin-bottom: 20px; }
.about-skolkovo { height: 32px; }
.about-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.about-card p { font-size: 20px; color: var(--text-secondary); line-height: 1.7; }

.about-stats {
    display: flex; justify-content: center; gap: 56px;
    padding: 48px 0; border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.about-stat { text-align: center; }
.about-stat-value {
    display: block; font-size: 40px; font-weight: 800;
    color: var(--accent); letter-spacing: -0.02em;
}
.about-stat-label {
    display: block; font-size: 15px; color: var(--text-muted); margin-top: 6px;
}

/* =====================================================
   TECH PAGE
   ===================================================== */
.tech-section { padding: 80px 0; background: var(--bg); }
.tech-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-bottom: 60px;
}
.tech-card {
    padding: 40px; border-radius: var(--radius);
    background: var(--bg-alt); border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.tech-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tech-card-icon { color: var(--accent); margin-bottom: 20px; }
.tech-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.tech-card p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }

.tech-stack {
    padding: 48px; background: var(--bg-alt);
    border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.tech-stack .section-title-sm { margin-bottom: 28px; }
.stack-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.stack-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.stack-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-tag {
    display: inline-block; padding: 8px 18px;
    border-radius: 6px; background: var(--bg);
    border: 1px solid var(--border);
    font-size: 15px; font-weight: 600; color: var(--accent);
}

/* =====================================================
   PRICING PAGE
   ===================================================== */
.pricing-page-section { padding: 80px 0; background: var(--bg); }

/* =====================================================
   RESPONSIVE — NEW SECTIONS
   ===================================================== */
@media (max-width: 1024px) {
    .problems-grid { grid-template-columns: 1fr; }
    .app-features-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-track { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-card-wide { grid-column: span 1; }
    .tech-grid { grid-template-columns: 1fr; }
    .stack-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .problems, .mobile-app, .reviews {
        padding: 60px 0;
    }
    .app-gallery-full { margin-bottom: 36px; }
    .app-gallery-full .app-gallery-track {
        position: relative; padding: 0;
        min-height: 360px;
        display: block;
    }
    .app-gallery-full .app-gallery-slide {
        display: none;
        position: absolute; inset: 0;
        padding: 16px;
        flex: none; width: 100%;
    }
    .app-gallery-full .app-gallery-slide.active {
        display: flex; align-items: center; justify-content: center;
    }
    .app-gallery-full .app-gallery-slide img { max-height: 380px; }
    .app-gallery-btn {
        display: flex;
        position: absolute; top: 50%; transform: translateY(-50%);
        width: 40px; height: 40px; border-radius: 50%;
        background: var(--bg); color: var(--text);
        align-items: center; justify-content: center;
        box-shadow: var(--shadow-md); z-index: 2;
        border: 1px solid var(--border); cursor: pointer;
    }
    .app-gallery-prev { left: 8px; }
    .app-gallery-next { right: 8px; }
    .app-gallery-dots {
        display: flex; justify-content: center;
        gap: 8px; padding: 16px 0;
    }
    .app-features-grid { grid-template-columns: 1fr; }
    .stats-section { padding: 60px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 36px; }
    .reviews-carousel { overflow: hidden; }
    .reviews-track {
        display: flex; grid-template-columns: none;
        gap: 0; transition: transform 0.5s var(--ease);
    }
    .review-card {
        min-width: 100%; padding: 24px;
        border: none; border-radius: 0;
        background: transparent;
    }
    .review-card > p { font-size: 16px; }
    .reviews-btn {
        display: flex;
        position: absolute; top: 50%; transform: translateY(-50%);
        width: 40px; height: 40px; border-radius: 50%;
        background: var(--bg); color: var(--text);
        align-items: center; justify-content: center;
        box-shadow: var(--shadow-md); z-index: 2;
        border: 1px solid var(--border); cursor: pointer;
    }
    .reviews-prev { left: 8px; }
    .reviews-next { right: 8px; }
    .reviews-dots {
        display: flex; justify-content: center;
        gap: 8px; padding: 16px 0;
    }
    .tour-card { padding: 32px 24px; }
    .tour-card--with-images { grid-template-columns: 1fr; }
    .tour-card h2 { font-size: 24px; }
    .tour-card li { font-size: 17px; }
    .tour-card-images--grid { grid-template-columns: 1fr; }
    .about-stats { gap: 32px; }
    .about-stat-value { font-size: 32px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 20px; }
}
