﻿:root {
    --white: #ffffff;
    --ice: #f5fafd;
    --sky: #e8f4fc;
    --blue: #4a9fd4;
    --blue-dark: #2b7cb8;
    --blue-deep: #1a5f8a;
    --text: #1a3a52;
    --text-muted: #5a7a94;
    --border: rgba(43, 124, 184, 0.15);
    --shadow: 0 8px 32px rgba(26, 95, 138, 0.08);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Manrope', system-ui, sans-serif;
    --container: 1180px;
    --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--ice);
    line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center;
    gap: 1.5rem; min-height: 72px;
}
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue-deep);
}
.logo-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
}
.main-nav ul { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.main-nav a {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.04em; color: var(--text-muted);
}
.main-nav a:hover, .main-nav a.active { color: var(--blue-dark); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text); }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    padding: 0.75rem 1.5rem; border-radius: 10px; font-weight: 600;
    font-size: 0.85rem; border: none; cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--blue-dark); color: var(--white); }
.btn-primary:hover { background: var(--blue-deep); }
.btn-outline { background: transparent; border: 1.5px solid var(--blue); color: var(--blue-dark); }
.btn-outline:hover { background: var(--sky); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 1.75rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

.section-kicker { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); margin-bottom: 0.5rem; }
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    color: var(--blue-deep);
    margin-bottom: 0.75rem;
}
.section-title.left { text-align: left; }
.section-desc { text-align: center; color: var(--text-muted); max-width: 560px; margin: 0 auto 2.5rem; }
.section-head { text-align: center; margin-bottom: 0.5rem; }
.section-head .icon { color: var(--blue); margin: 0 auto 0.5rem; display: block; }
.section { padding: 5rem 0; }
.decor-box {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 2rem;
}

[id] { scroll-margin-top: 120px; }

.emergency-strip {
    margin-top: 72px;
    background: linear-gradient(90deg, #c62828 0%, #e53935 100%);
    color: var(--white);
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.emergency-strip-inner {
    display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem 1.25rem;
}
.emergency-strip-badge {
    font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.2); padding: 0.25rem 0.55rem; border-radius: 6px;
}
.emergency-strip-text { display: flex; flex-direction: column; gap: 0.1rem; flex: 1; min-width: 200px; }
.emergency-strip-text strong { font-size: 0.88rem; }
.emergency-strip-text span { font-size: 0.78rem; opacity: 0.92; }
.emergency-strip-phone {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-weight: 700; font-size: 0.9rem; white-space: nowrap;
}
.emergency-strip-phone:hover { text-decoration: underline; }
.btn-emergency-sm {
    padding: 0.45rem 0.9rem; font-size: 0.78rem; border-radius: 8px;
    background: var(--white); color: #c62828; border: none; font-weight: 700; cursor: pointer;
}
.btn-emergency-sm:hover { background: #ffebee; }

.hero {
    position: relative; margin-top: 0; min-height: 88vh;
    display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(245, 250, 253, 0.95) 0%, rgba(232, 244, 252, 0.75) 45%, rgba(245, 250, 253, 0.35) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 580px; padding: 4rem 0; }
.hero-eyebrow { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 1rem; }
.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue-deep);
    margin-bottom: 1rem;
}
.hero-lead { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.trust-bar { background: var(--sky); padding: 2rem 0; border-block: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.trust-icon { color: var(--blue-dark); flex-shrink: 0; }
.trust-item h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem; }
.trust-item p { font-size: 0.8rem; color: var(--text-muted); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-image { aspect-ratio: 4/3; overflow: hidden; background: var(--sky); }
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 1.25rem; }
.service-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--blue-deep); }
.service-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.service-price { display: block; font-weight: 700; color: var(--blue-dark); margin-bottom: 1rem; }
.eeat-note { text-align: center; margin-top: 2rem; font-size: 0.85rem; color: var(--text-muted); }

.ba-slide { display: none; }
.ba-slide.active { display: block; }
.ba-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--sky);
    user-select: none;
}
.ba-image { position: absolute; inset: 0; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; }
.ba-before { z-index: 1; }
.ba-after {
    z-index: 2;
    clip-path: inset(0 0 0 var(--ba-pos, 50%));
}
.ba-label {
    position: absolute; bottom: 12px;
    padding: 0.25rem 0.6rem; font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    background: rgba(255,255,255,0.9); border-radius: 4px;
}
.ba-before .ba-label { left: 12px; }
.ba-after .ba-label { right: 12px; }
.ba-range {
    position: absolute; inset: 0; z-index: 4;
    width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0;
}
.ba-handle {
    position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%);
    width: 3px; background: var(--white);
    z-index: 3; transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    pointer-events: none;
}
.ba-handle::after {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue);
}
.ba-slide h3 { margin-top: 1rem; font-size: 1.1rem; }
.ba-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.35rem; }
.ba-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.ba-prev, .ba-next {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--blue-dark);
}
.ba-dots { display: flex; gap: 0.5rem; }
.ba-dot {
    width: 10px; height: 10px; border-radius: 50%;
    border: none; background: var(--border); cursor: pointer;
}
.ba-dot.active { background: var(--blue-dark); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.doctor-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    text-align: center;
}
.doctor-photo {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 28/34;
    background: var(--sky);
    margin-bottom: 1rem;
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.doctor-role { font-size: 0.82rem; color: var(--blue); font-weight: 600; margin-bottom: 0.5rem; }
.doctor-bio { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; text-align: left; }
.doctor-credentials { text-align: left; }
.doctor-credentials li {
    display: flex; align-items: flex-start; gap: 0.35rem;
    font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.35rem;
}
.doctor-credentials .icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

.comfort-section { background: var(--white); }
.comfort-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.comfort-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--ice);
    border: 1px solid var(--border);
}
.comfort-icon { color: var(--blue-dark); display: block; margin-bottom: 0.75rem; }
.comfort-card h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.comfort-card p { font-size: 0.85rem; color: var(--text-muted); }

.calculator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.calculator-intro p { color: var(--text-muted); margin-top: 1rem; }
.calculator-form label { display: block; margin-bottom: 1rem; }
.calculator-form label > span { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--text-muted); }
.calculator-form input, .calculator-form select {
    width: 100%; padding: 0.65rem 0.85rem;
    border: 1px solid var(--border); border-radius: 8px;
    background: var(--ice);
}
.calc-options { border: none; margin: 1rem 0; }
.calc-options legend { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.88rem; cursor: pointer; margin-bottom: 0.5rem; }
.calc-result {
    background: var(--sky);
    border-radius: 10px;
    padding: 1.25rem;
    margin: 1rem 0;
    text-align: center;
}
.calc-result-label { display: block; font-size: 0.8rem; color: var(--text-muted); }
.calc-result-value { font-size: 1.75rem; color: var(--blue-deep); }
.calc-disclaimer { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; }

.quiz-card { max-width: 640px; margin: 0 auto; }
.quiz-progress { margin-bottom: 1.5rem; }
.quiz-progress-bar {
    height: 4px; background: var(--blue-dark);
    border-radius: 2px; transition: width 0.3s;
    margin-bottom: 0.5rem;
}
.quiz-step-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step h3 { font-size: 1.15rem; margin-bottom: 1rem; color: var(--blue-deep); }
.quiz-options label {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 1rem; margin-bottom: 0.5rem;
    border: 1px solid var(--border); border-radius: 10px;
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.quiz-options label:has(input:checked) {
    border-color: var(--blue);
    background: var(--sky);
}
.quiz-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.quiz-result-step .quiz-result-service {
    font-weight: 700; color: var(--blue-dark);
    margin: 1rem 0;
    font-size: 1.1rem;
}
.quiz-result-step .btn { margin-right: 0.5rem; margin-top: 0.5rem; }

.promos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.promo-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}
.promo-badge {
    position: absolute; top: 1rem; right: 1rem;
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    background: var(--sky); color: var(--blue-dark);
    padding: 0.25rem 0.5rem; border-radius: 6px;
}
.promo-card h3 { font-size: 1rem; padding-right: 4rem; margin-bottom: 0.5rem; }
.promo-discount { font-family: var(--font-serif); font-size: 1.5rem; color: var(--blue-dark); font-weight: 700; margin-bottom: 0.5rem; }
.promo-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}
.stars { display: flex; gap: 2px; color: var(--blue); margin-bottom: 0.75rem; }
.review-card blockquote p { font-size: 0.9rem; color: var(--text); margin-bottom: 1rem; }
.review-card footer strong { display: block; font-size: 0.88rem; }
.review-card footer span { font-size: 0.78rem; color: var(--text-muted); }

.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; align-items: start; }
.faq-intro p { color: var(--text-muted); margin-top: 0.75rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.faq-item summary { font-weight: 600; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }

.booking-section { background: var(--sky); padding: 5rem 0; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem; align-items: start; }
.booking-info h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--blue-deep); margin-bottom: 0.75rem; }
.booking-info > p { color: var(--text-muted); margin-bottom: 1rem; }
.booking-perks li { display: flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; margin-bottom: 0.4rem; }
.booking-perks .icon { color: var(--blue); }
.booking-phone { margin-top: 1.25rem; font-weight: 600; }
.booking-phone a { color: var(--blue-dark); }
.booking-form label { display: block; margin-bottom: 0.85rem; }
.booking-form label > span { display: block; font-size: 0.78rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text-muted); }
.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%; padding: 0.6rem 0.8rem;
    border: 1px solid var(--border); border-radius: 8px;
    background: var(--ice);
}

.site-footer { background: var(--blue-deep); color: rgba(255,255,255,0.9); padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.logo-footer { font-family: var(--font-serif); font-size: 1.2rem; display: block; }
.logo-footer-sub { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; }
.footer-brand p { margin: 0.75rem 0; font-size: 0.88rem; opacity: 0.85; max-width: 280px; }
.footer-brand .icon { opacity: 0.5; }
.footer-contacts h4, .footer-legal h4 { font-size: 0.85rem; margin-bottom: 0.75rem; }
.footer-contacts p, .footer-legal p { font-size: 0.85rem; margin-bottom: 0.4rem; opacity: 0.9; }
.footer-contacts a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 1rem 0; }
.footer-bottom p { font-size: 0.78rem; opacity: 0.75; text-align: center; }

.toast {
    position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(120%);
    background: var(--blue-deep); color: var(--white);
    padding: 0.85rem 1.5rem; border-radius: 10px;
    font-size: 0.9rem; z-index: 200;
    transition: transform 0.3s; max-width: 90vw; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

.tech-section { background: var(--white); }
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.tech-card {
    padding: 1.5rem; border-radius: var(--radius);
    background: var(--ice); border: 1px solid var(--border);
}
.tech-icon { color: var(--blue-dark); display: block; margin-bottom: 0.75rem; }
.tech-card h3 { font-size: 1rem; color: var(--blue-deep); margin-bottom: 0.5rem; }
.tech-card p { font-size: 0.85rem; color: var(--text-muted); }

.journey-section { background: var(--sky); }
.journey-timeline {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
    list-style: none; counter-reset: none;
}
.journey-step {
    position: relative; background: var(--white);
    border-radius: var(--radius); padding: 1.25rem 1rem;
    border: 1px solid var(--border); text-align: center;
}
.journey-num {
    display: block; font-size: 0.68rem; font-weight: 800;
    letter-spacing: 0.1em; color: var(--blue); margin-bottom: 0.5rem;
}
.journey-icon { color: var(--blue-dark); display: block; margin: 0 auto 0.65rem; }
.journey-body h3 { font-size: 0.92rem; margin-bottom: 0.35rem; color: var(--blue-deep); }
.journey-body p { font-size: 0.78rem; color: var(--text-muted); text-align: left; }

.kids-section { background: var(--white); }
.kids-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.5rem; align-items: start; }
.kids-intro p { color: var(--text-muted); margin-top: 0.75rem; }
.kids-price { font-weight: 700; color: var(--blue-dark); margin: 1rem 0 0.5rem; }
.kids-doctor { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.35rem; }
.kids-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.kids-card {
    padding: 1.25rem; border-radius: var(--radius);
    background: var(--ice); border: 1px solid var(--border);
}
.kids-icon { color: var(--blue); display: block; margin-bottom: 0.5rem; }
.kids-card h3 { font-size: 0.92rem; margin-bottom: 0.35rem; }
.kids-card p { font-size: 0.82rem; color: var(--text-muted); }

.dms-strip {
    background: var(--blue-deep); color: rgba(255, 255, 255, 0.92);
    padding: 1.75rem 0;
}
.dms-inner { text-align: center; }
.dms-label {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem; font-weight: 700; margin-bottom: 1rem;
}
.dms-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.dms-badge {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em;
    padding: 0.4rem 0.75rem; border-radius: 999px;
    background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2);
}

.installment-section { background: var(--ice); }
.installment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.installment-card { text-align: center; position: relative; }
.installment-rate {
    position: absolute; top: 1rem; right: 1rem;
    font-size: 0.75rem; font-weight: 800; color: var(--blue-dark);
    background: var(--sky); padding: 0.2rem 0.5rem; border-radius: 6px;
}
.installment-card h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--blue-deep); margin-bottom: 0.25rem; }
.installment-for { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.5rem; }
.installment-example { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.installment-min { font-size: 0.8rem; color: var(--blue); margin-bottom: 1rem; }

.tax-strip {
    background: linear-gradient(90deg, var(--sky) 0%, var(--white) 100%);
    border-block: 1px solid var(--border);
    padding: 1.25rem 0;
}
.tax-strip-inner {
    display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.5rem;
}
.tax-strip-copy { flex: 1; min-width: 240px; }
.tax-strip-copy strong { display: block; font-size: 1rem; color: var(--blue-deep); margin-bottom: 0.2rem; }
.tax-strip-copy span { font-size: 0.85rem; color: var(--text-muted); }
.tax-strip-refund { font-weight: 700; color: var(--blue-dark); font-size: 0.9rem; }
.tax-strip-btn { margin-left: auto; }

.wa-widget {
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.15rem; border-radius: 999px;
    background: #25d366; color: var(--white); font-weight: 700; font-size: 0.82rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.wa-widget:hover { filter: brightness(1.05); }
.callback-widget {
    position: fixed; right: 1.25rem; bottom: 4.75rem; z-index: 90;
    width: 48px; height: 48px; border-radius: 50%; border: none;
    background: var(--blue-dark); color: var(--white); cursor: pointer;
    display: grid; place-items: center; box-shadow: 0 6px 20px rgba(43, 124, 184, 0.4);
}
.emergency-widget {
    position: fixed; right: 1.25rem; bottom: 8.25rem; z-index: 90;
    width: 48px; height: 48px; border-radius: 50%; border: none;
    background: #e53935; color: var(--white); cursor: pointer;
    display: grid; place-items: center; box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}
.footer-emergency a { font-weight: 600; }
.footer-callback-link {
    margin-top: 0.5rem; background: none; border: none; padding: 0;
    color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; cursor: pointer;
    text-decoration: underline; text-underline-offset: 3px;
}
.footer-callback-link:hover { color: var(--white); }

.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(26, 58, 82, 0.55); }
.modal-dialog {
    position: relative; width: min(420px, 100%); padding: 2rem 1.75rem;
    border-radius: var(--radius); background: var(--white);
    border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(26, 95, 138, 0.2);
}
.modal-close {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted);
}
.modal-tag {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--blue); margin-bottom: 0.5rem;
}
.modal-tag-emergency { color: #e53935; }
.modal-dialog h2 { font-family: var(--font-serif); font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--blue-deep); }
.modal-dialog p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.btn-emergency { background: #e53935; color: var(--white); margin-bottom: 1rem; }
.btn-emergency:hover { filter: brightness(1.05); }
.emergency-form-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
body.modal-open { overflow: hidden; }

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid, .comfort-grid, .promos-grid, .reviews-grid { grid-template-columns: 1fr; }
    .calculator-grid, .faq-grid, .booking-grid, .kids-grid { grid-template-columns: 1fr; }
    .tech-grid, .installment-grid { grid-template-columns: 1fr 1fr; }
    .journey-timeline { grid-template-columns: repeat(3, 1fr); }
    .kids-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--border);
        padding: 1rem; transform: translateY(-120%); opacity: 0;
        transition: transform 0.25s, opacity 0.25s; pointer-events: none;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .main-nav ul { flex-direction: column; align-items: center; gap: 0.75rem; }
    .menu-toggle { display: flex; }
    .header-cta { display: none; }
    .header-inner { grid-template-columns: 1fr auto; }
    .services-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .emergency-strip-inner { justify-content: center; text-align: center; }
    .emergency-strip-text { align-items: center; }
    .tech-grid, .installment-grid, .journey-timeline, .kids-features { grid-template-columns: 1fr; }
    .tax-strip-inner { flex-direction: column; text-align: center; }
    .tax-strip-btn { margin-left: 0; }
    .wa-widget span { display: none; }
    .wa-widget { padding: 0.85rem; border-radius: 50%; }
}
