/* ====================================================================
   Конструктор сайта услуг — Frontend CSS v2
   ==================================================================== */

:root {
    --accent: #2563eb;
    --accent-dark: color-mix(in srgb, var(--accent) 80%, black);
    --accent-soft: color-mix(in srgb, var(--accent) 10%, white);
    --accent-glow: color-mix(in srgb, var(--accent) 30%, transparent);
    --text: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --border-soft: #f1f5f9;
    --container: 1200px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 2px rgba(15,23,42,.04);
    --shadow: 0 4px 14px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
    --shadow-lg: 0 12px 32px rgba(15,23,42,.10), 0 4px 10px rgba(15,23,42,.05);
    --shadow-accent: 0 8px 24px var(--accent-glow);
    --transition: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-dark); }

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

/* HEADER */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border-soft);
    transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); flex-shrink: 0; }
.brand:hover { color: var(--text); }
.brand__logo {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: grid; place-items: center; color: #fff;
    font-weight: 700; font-size: 18px; overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.brand__logo img { width: 100%; height: 100%; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-weight: 700; font-size: 17px; color: var(--text); }
.brand__city { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.header-spacer { flex: 1; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 17px; color: var(--text); flex-shrink: 0; }
.header-phone:hover { color: var(--accent); }
.header-phone .icon { color: var(--accent); }
.header-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: #fff;
    padding: 10px 18px; border-radius: 10px;
    font-weight: 600; font-size: 14px;
    transition: all .2s var(--transition);
    border: none; cursor: pointer;
}
.header-cta:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-accent); }
.menu-toggle {
    width: 44px; height: 44px; background: none;
    border: 1px solid var(--border); border-radius: 10px;
    display: grid; place-items: center; cursor: pointer;
    color: var(--text); transition: all .15s; flex-shrink: 0;
}
.menu-toggle:hover { background: var(--bg-soft); border-color: var(--accent); }

/* OFF-CANVAS */
.offcanvas {
    position: fixed; top: 0; right: -360px;
    width: 340px; max-width: 85vw; height: 100vh;
    background: #fff; z-index: 200;
    transition: right .3s var(--transition);
    display: flex; flex-direction: column;
    box-shadow: -8px 0 24px rgba(15,23,42,.08);
}
.offcanvas.is-open { right: 0; }
.offcanvas__head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border-soft); }
.offcanvas__close { width: 40px; height: 40px; background: var(--bg-soft); border: none; border-radius: 10px; display: grid; place-items: center; cursor: pointer; color: var(--text); }
.offcanvas__body { flex: 1; overflow-y: auto; padding: 12px 0; }
.offcanvas__nav { display: flex; flex-direction: column; padding: 0 12px; }
.offcanvas__nav a { padding: 14px 16px; color: var(--text); font-weight: 500; font-size: 16px; border-radius: 10px; display: flex; align-items: center; gap: 12px; transition: background .15s; }
.offcanvas__nav a:hover { background: var(--bg-soft); }
.offcanvas__nav a.is-active { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.offcanvas__foot { padding: 20px; border-top: 1px solid var(--border-soft); display: flex; flex-direction: column; gap: 12px; }
.offcanvas-backdrop { position: fixed; inset: 0; background: rgba(15,23,42,.4); backdrop-filter: blur(2px); z-index: 150; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.offcanvas-backdrop.is-open { opacity: 1; visibility: visible; }

/* HERO */
.hero {
    position: relative; padding: 80px 0 60px;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-soft), transparent 70%), var(--bg);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, var(--accent-glow), transparent 40%), radial-gradient(circle at 20% 80%, var(--accent-glow), transparent 40%);
    opacity: .5; pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero__title { font-size: clamp(32px, 5vw, 56px); line-height: 1.1; font-weight: 800; margin: 0 0 20px; letter-spacing: -0.02em; }
.hero__title span { color: var(--accent); }
.hero__lead { font-size: 19px; color: var(--text-muted); line-height: 1.5; margin: 0 0 32px; max-width: 540px; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.hero__bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; font-weight: 500; }
.hero__bullets .icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__form { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-soft); position: relative; }
.hero__form-title { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.hero__form-sub { color: var(--text-muted); font-size: 14px; margin: 0 0 20px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; background: var(--accent); color: #fff; border: none; border-radius: 12px; font-weight: 600; font-size: 16px; cursor: pointer; transition: all .2s var(--transition); text-decoration: none; line-height: 1; }
.btn:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn--outline:hover { background: var(--bg-soft); color: var(--text); border-color: var(--accent); box-shadow: none; }
.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover { background: var(--accent-soft); color: var(--accent); box-shadow: none; }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--sm { padding: 8px 14px; font-size: 14px; border-radius: 8px; }
.btn--block { width: 100%; }

/* SECTIONS */
.section { padding: 80px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head--left { text-align: left; }
.section__eyebrow { display: inline-block; background: var(--accent-soft); color: var(--accent); padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 16px; letter-spacing: .02em; }
.section__title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin: 0 0 16px; letter-spacing: -0.02em; line-height: 1.2; }
.section__lead { font-size: 18px; color: var(--text-muted); max-width: 680px; margin: 0 auto; line-height: 1.5; }
.section-head--left .section__lead { margin-left: 0; }

/* GRIDS */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); }
.grid--small { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

/* CARD */
.card { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 28px; transition: all .3s var(--transition); display: flex; flex-direction: column; text-decoration: none; color: inherit; position: relative; overflow: hidden; }
.card:hover { color: inherit; transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-lg); }
.card__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 20px; transition: all .3s; }
.card:hover .card__icon { background: var(--accent); color: #fff; transform: scale(1.05); }
.card__title { font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.card__text { color: var(--text-muted); font-size: 15px; line-height: 1.55; margin: 0; flex: 1; }
.card__price { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: space-between; }
.card__price-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.card__price-value { font-size: 18px; font-weight: 700; color: var(--accent); }
.card__image { margin: -28px -28px 24px; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__image img { transform: scale(1.05); }
.card__arrow { position: absolute; bottom: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-soft); color: var(--accent); display: grid; place-items: center; transition: all .25s; opacity: 0; transform: translateX(-8px); }
.card:hover .card__arrow { opacity: 1; transform: translateX(0); background: var(--accent); color: #fff; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border-soft); counter-increment: step; transition: all .3s; }
.step:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.step::before { content: counter(step); position: absolute; top: 28px; right: 28px; width: 32px; height: 32px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.step__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
.step__title { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.step__text { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* ADVANTAGES */
.advantages { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.advantage { text-align: left; padding: 24px; }
.advantage__icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 8px 20px var(--accent-glow); }
.advantage__title { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.advantage__text { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* SYMPTOMS */
.symptoms { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.symptom { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 20px; display: flex; align-items: flex-start; gap: 14px; transition: all .25s; }
.symptom:hover { border-color: var(--accent); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.symptom__icon { width: 40px; height: 40px; background: #fef3c7; color: #d97706; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.symptom__title { font-weight: 600; font-size: 15px; margin: 0 0 4px; }
.symptom__text { color: var(--text-muted); font-size: 13px; margin: 0; line-height: 1.5; }

/* PRICE TABLE */
.price-table { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--border-soft); align-items: center; transition: background .15s; }
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg-soft); }
.price-row__name { font-weight: 500; }
.price-row__name small { display: block; color: var(--text-muted); font-size: 13px; font-weight: 400; margin-top: 2px; }
.price-row__value { font-weight: 700; color: var(--accent); white-space: nowrap; }
.price-row__value small { color: var(--text-muted); font-weight: 400; font-size: 13px; }
.price-note { background: var(--accent-soft); color: var(--text); padding: 14px 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.price-note .icon { color: var(--accent); flex-shrink: 0; }

/* WORKS */
.works-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.work { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); position: relative; cursor: pointer; }
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.work:hover img { transform: scale(1.08); }
.work__caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px 14px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.8)); font-size: 14px; font-weight: 500; transform: translateY(100%); transition: transform .3s; }
.work:hover .work__caption { transform: translateY(0); }

/* REVIEWS */
.reviews { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.review { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 28px; position: relative; }
.review__stars { color: #fbbf24; display: flex; gap: 2px; margin-bottom: 16px; }
.review__text { font-size: 15px; line-height: 1.55; margin: 0 0 20px; color: var(--text); }
.review__author { font-weight: 600; font-size: 14px; }
.review__date { color: var(--text-muted); font-size: 13px; margin-top: 2px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; transition: all .25s; }
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--accent); }
.faq-item summary { padding: 22px 24px; cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--accent); width: 32px; height: 32px; background: var(--accent-soft); border-radius: 50%; display: grid; place-items: center; transition: transform .3s; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-item__answer { padding: 0 24px 22px; color: var(--text-muted); line-height: 1.6; }

/* PROMOS */
.promo-card { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; padding: 32px; border-radius: var(--radius-lg); margin-bottom: 16px; box-shadow: var(--shadow-accent); position: relative; overflow: hidden; }
.promo-card::after { content: ''; position: absolute; top: -50%; right: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,.1), transparent); pointer-events: none; }
.promo-card__title { font-size: 24px; font-weight: 700; margin: 0 0 12px; }
.promo-card__text { font-size: 16px; opacity: .95; margin: 0 0 16px; }
.promo-card__date { font-size: 13px; opacity: .8; }

/* CONTACT INFO */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.info-block { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px; }
.info-block__icon { width: 44px; height: 44px; background: var(--accent-soft); color: var(--accent); border-radius: 10px; display: grid; place-items: center; margin-bottom: 12px; }
.info-block__label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.info-block__value { font-size: 16px; font-weight: 600; word-break: break-word; }
.info-block__value a { color: var(--text); }
.info-block__value a:hover { color: var(--accent); }

/* MESSENGERS */
.messengers { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.messenger { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-soft); color: var(--text); padding: 10px 16px; border-radius: 100px; font-size: 14px; font-weight: 500; transition: all .2s; text-decoration: none; }
.messenger:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }

/* LEAD FORM */
.lead-form { display: flex; flex-direction: column; gap: 12px; }
.lead-form__field { display: flex; flex-direction: column; }
.lead-form input, .lead-form textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 10px; font: inherit; font-size: 15px; background: #fff; color: var(--text); transition: border-color .15s, box-shadow .15s; }
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); }
.lead-form textarea { resize: vertical; min-height: 90px; }
.lead-form__honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }
.lead-form__legal { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-top: 4px; }
.lead-form__legal a { color: var(--text-muted); text-decoration: underline; }
.lead-form__msg { padding: 14px 16px; border-radius: 10px; font-size: 14px; font-weight: 500; }
.lead-form__msg--ok { background: #d1fae5; color: #065f46; }
.lead-form__msg--err { background: #fee2e2; color: #991b1b; }

/* CTA */
.cta-block { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.15), transparent 50%), radial-gradient(circle at 70% 80%, rgba(255,255,255,.1), transparent 50%); pointer-events: none; }
.cta-block__title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; margin: 0 0 16px; position: relative; }
.cta-block__lead { font-size: 18px; opacity: .95; margin: 0 0 32px; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; }
.cta-block .btn { background: #fff; color: var(--accent); position: relative; }
.cta-block .btn:hover { background: #fff; color: var(--accent-dark); box-shadow: 0 12px 32px rgba(0,0,0,.2); }

/* BREADCRUMBS */
.breadcrumbs { padding: 20px 0; font-size: 14px; color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 8px; color: var(--text-light); }

/* CONTENT */
.article-content, .page-content { max-width: 820px; margin: 0 auto; font-size: 17px; line-height: 1.75; }
.article-content h2, .page-content h2 { font-size: 28px; font-weight: 700; margin: 40px 0 16px; line-height: 1.3; }
.article-content h3, .page-content h3 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; }
.article-content p, .page-content p { margin: 0 0 16px; }
.article-content ul, .article-content ol, .page-content ul, .page-content ol { padding-left: 24px; margin: 0 0 20px; }
.article-content li, .page-content li { margin-bottom: 8px; }
.article-content blockquote { border-left: 4px solid var(--accent); background: var(--accent-soft); margin: 20px 0; padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.article-content img { border-radius: var(--radius); margin: 20px 0; }

/* TOC */
.toc { background: var(--bg-soft); border-radius: var(--radius); padding: 24px; margin: 24px 0 40px; }
.toc__title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 12px; }
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc li { margin: 6px 0; }
.toc a { color: var(--text); }
.toc a:hover { color: var(--accent); }

/* AUTHOR */
.author-block { display: flex; gap: 20px; padding: 24px; background: var(--bg-soft); border-radius: var(--radius); margin: 32px 0; align-items: center; }
.author-block__photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-block__name { font-weight: 700; font-size: 16px; }
.author-block__bio { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* FOOTER */
.site-footer { background: #0f172a; color: #cbd5e1; padding: 60px 0 30px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 16px; }
.footer-col a { color: #cbd5e1; display: block; padding: 4px 0; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-brand { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.footer-desc { font-size: 14px; color: #94a3b8; line-height: 1.6; }
.footer-bottom { padding-top: 24px; border-top: 1px solid #1e293b; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #64748b; }

/* COOKIE */
.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 540px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-lg); z-index: 90; display: none; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.cookie-banner.is-visible { display: flex; }
.cookie-banner__text { flex: 1; min-width: 200px; color: var(--text); line-height: 1.5; }
.cookie-banner__text a { color: var(--accent); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--transition), transform .6s var(--transition); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulse-accent { 0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); } 50% { box-shadow: 0 0 0 12px transparent; } }
.pulse { animation: pulse-accent 2s infinite; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero { padding: 60px 0 40px; }
    .hero__inner { grid-template-columns: 1fr; gap: 32px; }
    .hero__form { padding: 24px; }
    .section { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .header-cta { display: none; }
}
@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .site-header__inner { height: 64px; gap: 12px; }
    .brand__city { display: none; }
    .header-phone span { display: none; }
    .hero { padding: 40px 0 30px; }
    .hero__title { font-size: 32px; }
    .hero__lead { font-size: 16px; }
    .section { padding: 50px 0; }
    .section__title { font-size: 26px; }
    .section__lead { font-size: 15px; }
    .card { padding: 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .cta-block { padding: 40px 24px; }
    .price-row { padding: 14px 16px; }
}
