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

:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fef3c7;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;
    --green: #059669;
    --green-light: #d1fae5;
    --red: #ef4444;
    --red-light: #fee2e2;
    --border: #e2e8f0;
    --surface: #ffffff;
    --text: #0f172a;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { line-height: 1.2; }

a { transition: color .2s; }

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

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.accent { color: var(--primary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

.btn--primary { background: var(--primary); color: var(--dark); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { border: 2px solid var(--dark); color: var(--dark); background: transparent; }
.btn--outline:hover { background: var(--dark); color: var(--white); }
.btn--white { background: var(--white); color: var(--dark); }
.btn--white:hover { background: var(--light); transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: .9rem; }
.btn--full { width: 100%; }
.btn--wa { background: #25d366; color: white; }
.btn--wa:hover { background: #1da851; }
.btn--tg { background: #0088cc; color: white; }
.btn--tg:hover { background: #006da3; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    white-space: nowrap;
}

.logo__icon { font-size: 1.6rem; }
.logo__accent { color: var(--primary); }

.nav { display: flex; gap: 20px; }

.nav a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: .9rem;
    transition: color .2s;
    white-space: nowrap;
}

.nav a:hover, .nav a.active { color: var(--dark); }

.header__right { display: flex; align-items: center; gap: 16px; }

.header__phone {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: .95rem;
    white-space: nowrap;
}

.header__wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background .2s;
}

.header__wa:hover { background: #1da851; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: .3s; }

/* Hero */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fff7ed 100%);
}

.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hero__badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero__text {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

.hero__stats { display: flex; gap: 40px; }

.stat__value { font-size: 2rem; font-weight: 800; color: var(--dark); }
.stat__label { font-size: .85rem; color: var(--gray); }

.hero__visual { display: flex; justify-content: center; border-radius: var(--radius-lg); overflow: hidden; width: fit-content; margin: 0 auto; }

.hero__image {
    width: 500px;
    height: 500px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 0 0 8px var(--accent), 0 0 0 16px rgba(255,167,38,.2);
}

.hero__image-placeholder {
    width: 500px;
    height: 500px;
    border-radius: var(--radius-lg);
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero__image-text { color: rgba(255,255,255,.5); text-align: center; font-size: .9rem; z-index: 2; }

.plasma-effect { position: absolute; inset: 0; }

.plasma-ring {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: .3;
    animation: pulse 3s ease-in-out infinite;
    inset: 20px;
}

.plasma-ring--2 { inset: 50px; animation-delay: .5s; opacity: .5; }
.plasma-ring--3 { inset: 80px; animation-delay: 1s; opacity: .2; }

.plasma-core {
    position: absolute;
    inset: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary), transparent);
    opacity: .2;
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: .3; }
    50% { transform: scale(1.05); opacity: .6; }
}

/* Services Grid */
.services { padding: 80px 0; }

.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.service-card {
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    background: var(--white);
    text-decoration: none;
    color: var(--dark);
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex;
    flex-direction: column;
}

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

.service-card__icon { font-size: 2.2rem; margin-bottom: 14px; }

.service-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }

.service-card__desc { font-size: .85rem; color: var(--gray); margin-bottom: 14px; flex: 1; }

.service-card__price {
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.service-card--featured {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.service-card--featured .service-card__desc { color: var(--gray-light); }
.service-card--featured .service-card__price { color: var(--primary); }

/* Advantages */
.advantages { padding: 80px 0; background: var(--light); }

.advantages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.advantage-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    transition: transform .2s, box-shadow .2s;
}

.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.advantage-card__number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: .4;
    margin-bottom: 12px;
}

.advantage-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.advantage-card p { color: var(--gray); font-size: .9rem; }

/* Price Summary on main page */
.price-summary { padding: 80px 0; }

.price__table-wrap { overflow-x: auto; margin-bottom: 24px; }

.price__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price__table th {
    background: var(--dark);
    color: var(--white);
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: .9rem;
}

.price__table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: .9rem;
}

.price__table tr:last-child td { border-bottom: none; }
.price__table tr:hover td { background: var(--primary-light); }

.price__note {
    text-align: center;
    color: var(--gray);
    font-size: .9rem;
    margin-top: 16px;
}

.price__actions { text-align: center; margin-top: 24px; }

/* Tabs for price page */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }

.tab {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    background: var(--white);
    cursor: pointer;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray);
    transition: all .2s;
}

.tab:hover { border-color: var(--primary); color: var(--dark); }
.tab.active { background: var(--primary); color: var(--dark); border-color: var(--primary); font-weight: 600; }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Cases */
.cases { padding: 80px 0; }

.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.case-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform .2s, box-shadow .2s;
}

.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.case-card__images { display: grid; grid-template-columns: 1fr 1fr; }

.case-card__image {
    height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-card__image--before { background: var(--red-light); }
.case-card__image--after { background: var(--green-light); }

.case-card__label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--red);
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 600;
}

.case-card__label--after { background: var(--green); }

.case-card__placeholder { color: var(--gray); font-size: .85rem; }

.case-card__video { overflow: hidden; }
.case-card__video video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.case-card__info { padding: 20px; }
.case-card__info h3 { font-size: 1rem; margin-bottom: 6px; }
.case-card__info p { color: var(--gray); font-size: .85rem; margin-bottom: 8px; }

.case-card__savings {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: .85rem;
    font-weight: 600;
}

/* Reviews */
.reviews { padding: 80px 0; background: var(--light); }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
}

.review-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.review-card__name { font-weight: 600; font-size: .95rem; }
.review-card__date { font-size: .8rem; color: var(--gray); }

.review-card__stars { color: var(--primary); margin-bottom: 8px; font-size: 1rem; letter-spacing: 2px; }

.review-card__text { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* Geography */
.geography { padding: 80px 0; }

.geography__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.geography__text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.geography__text p { color: var(--gray); margin-bottom: 20px; }

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

.geography__list li {
    padding-left: 24px;
    position: relative;
    color: var(--gray);
}

.geography__list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.geography__cities { display: flex; flex-wrap: wrap; gap: 12px; }

.geography__cities span {
    padding: 8px 20px;
    border-radius: 100px;
    background: var(--light);
    border: 1px solid #e2e8f0;
    font-size: .9rem;
    color: var(--gray);
    font-weight: 500;
}

/* FAQ */
.faq { padding: 80px 0; }

.faq__list { max-width: 750px; margin: 0 auto; }

.faq__item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq__item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 300; }
.faq__item[open] summary::after { content: '\2212'; }
.faq__item p { padding: 0 24px 20px; color: var(--gray); font-size: .95rem; }

/* Order Form */
.order { padding: 80px 0; background: var(--dark); color: var(--white); }

.order__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.order__text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.order__text p { color: var(--gray); margin-bottom: 24px; }

.order__messengers { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.order__messengers span { color: var(--gray); font-size: .9rem; }

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

.order__form input,
.order__form textarea,
.order__form select {
    padding: 14px 16px;
    border: 1px solid var(--dark-3);
    border-radius: 8px;
    background: var(--dark-2);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

.order__form input::placeholder,
.order__form textarea::placeholder { color: var(--gray); }

.order__form input:focus,
.order__form textarea:focus { outline: none; border-color: var(--primary); }

.order__privacy { font-size: .75rem; color: #475569; text-align: center; }

/* Contacts */
.contacts { padding: 80px 0; }

.contacts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }

.contacts__item {
    text-align: center;
    padding: 32px;
    border-radius: var(--radius);
    background: var(--light);
}

.contacts__icon { font-size: 2rem; margin-bottom: 12px; }
.contacts__item h3 { margin-bottom: 8px; }
.contacts__item p { color: var(--gray); font-size: .95rem; }
.contacts__item a { color: var(--dark); text-decoration: none; }
.contacts__item a:hover { color: var(--primary); }

/* Footer */
.footer { padding: 40px 0; background: var(--dark); color: var(--white); }

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer__logo { font-size: 1.2rem; font-weight: 800; }

.footer__nav { display: flex; gap: 40px; }

.footer__nav-col h4 { font-size: .85rem; color: var(--gray); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }

.footer__nav-col a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    font-size: .9rem;
    padding: 3px 0;
    transition: color .2s;
}

.footer__nav-col a:hover { color: var(--white); }

.footer__contacts p {
    font-size: .9rem;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.footer__contacts a { color: var(--gray-light); text-decoration: none; }
.footer__contacts a:hover { color: var(--primary); }

.footer__bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-3);
    text-align: center;
    color: var(--gray);
    font-size: .8rem;
}

/* Dark section items */
.restore { padding: 80px 0; background: var(--dark); color: var(--white); }
.restore .section-title { color: var(--white); }

.restore__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.restore__item {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    transition: border-color .2s;
}

.restore__item:hover { border-color: var(--primary); }
.restore__icon { font-size: 2rem; margin-bottom: 12px; }
.restore__item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.restore__item p { color: var(--gray); font-size: .9rem; }

/* Problem section */
.problem { padding: 80px 0; }

.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.problem__card {
    padding: 32px;
    border-radius: var(--radius);
    background: var(--red-light);
    border: 1px solid #fecaca;
}

.problem__card--solution { background: var(--primary-light); border-color: var(--primary); }
.problem__icon { font-size: 2rem; margin-bottom: 12px; }
.problem__card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.problem__card p { color: var(--gray); font-size: .95rem; }

/* How section */
.how { padding: 80px 0; }

.how__timeline { max-width: 700px; margin: 0 auto; }

.how__step { display: flex; gap: 24px; padding: 24px 0; position: relative; }

.how__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 72px;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.how__step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 1;
}

.how__step-content h3 { margin-bottom: 4px; }
.how__step-content p { color: var(--gray); font-size: .95rem; }

/* Service Page Layout */
.service-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.service-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.service-hero p { font-size: 1.1rem; color: var(--gray); max-width: 700px; margin-bottom: 24px; }

.service-content { padding: 60px 0; }

.service-hero__badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.service-hero__text {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
}

.service-section { padding: 60px 0; }
.service-section--alt { background: var(--light); }

.service-description { max-width: 800px; }
.service-description p { color: var(--gray); margin-bottom: 16px; }
.service-description ul { padding-left: 20px; margin-bottom: 16px; }
.service-description li { color: var(--gray); margin-bottom: 8px; }

.service-content h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }

.service-content p { color: var(--gray); margin-bottom: 16px; max-width: 800px; }

/* Gallery */
.gallery { padding: 80px 0; }

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery__item {
    height: 220px;
    border-radius: var(--radius);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    color: var(--gray);
    font-size: .9rem;
    transition: transform .2s;
}

.gallery__item:hover { transform: scale(1.02); }

/* Breadcrumbs */
.breadcrumbs {
    padding: 12px 0;
    font-size: .85rem;
}

.breadcrumbs a { color: var(--gray); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { color: var(--gray-light); margin: 0 6px; }

/* CTA Banner */
.cta-banner {
    padding: 60px 0;
    background: var(--primary);
    text-align: center;
}

.cta-banner h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.cta-banner p {
    color: var(--dark-2);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

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

.cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Mobile phone button */
.header__phone-mobile {
    display: none;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Consent checkbox */
.order__consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: #94a3b8;
    cursor: pointer;
}
.order__consent input { width: 16px; height: 16px; cursor: pointer; }
.order__consent a { color: var(--primary); text-decoration: underline; }

/* Gallery captions */
.gallery__placeholder { font-size: 2rem; color: var(--gray-light); }
.gallery__caption { padding: 8px 12px; font-size: .85rem; color: var(--gray); text-align: center; }

/* Responsive */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__inner { grid-template-columns: 1fr; gap: 24px; }
    .footer__nav { flex-wrap: wrap; }
}

@media (max-width: 900px) {
    .nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 10px 30px rgba(0,0,0,.1);
        z-index: 99;
    }
    .nav--open { display: flex; }
    .burger { display: block; }
    .header__wa { display: none; }
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__text { margin: 0 auto 32px; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__visual { order: -1; }
    .hero__image { width: 100%; max-width: 340px; height: auto; aspect-ratio: 1; }
    .hero__image-placeholder { width: 100%; max-width: 340px; height: auto; aspect-ratio: 1; }
    .services__grid { grid-template-columns: 1fr; }
    .advantages__grid,
    .restore__grid,
    .cases__grid,
    .reviews__grid,
    .contacts__grid,
    .problem__grid { grid-template-columns: 1fr; }
    .geography__inner,
    .order__inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero { padding: 100px 0 60px; }
    .hero__title { font-size: 1.8rem; }
    .hero__stats { flex-direction: column; gap: 16px; align-items: center; }
    .header__phone { display: none; }
    .header__phone-mobile { display: inline-flex; }
    .tabs { gap: 4px; }
    .tab { padding: 8px 14px; font-size: .8rem; }
}

.video-section { padding: 40px 0; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 24px; }
.video-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.video-card video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.video-card__caption { padding: 12px 16px; font-size: .9rem; color: var(--dark-3); font-weight: 500; }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }

.sticky-phone {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    z-index: 9999;
    background: #27ae60;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .sticky-phone { display: block; }
}
