/* ============ Base ============ */
:root{
  --navy:#14213d;
  --navy-dark:#0c1424;
  --navy-soft:#1f335c;
  --gold:#c9a24b;
  --gold-light:#e6c878;
  --sage:#dfeae6;
  --cream:#f7f5f0;
  --ink:#1a1f2b;
  --muted:#6b7280;
  --line:#e6e2d8;
  --radius:14px;
  --shadow:0 10px 30px -12px rgba(20,33,61,.18);
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Manrope',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Lora',Georgia,serif;
  line-height:1.2;
  margin:0 0 .5em;
  color:var(--navy);
  font-weight:600;
}
p{margin:0 0 1em}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
ul{margin:0;padding:0;list-style:none}

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

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  font-weight:700;
  color:var(--gold);
  margin:0 0 .6em;
}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding:.85em 1.6em;
  border-radius:999px;
  font-weight:700;
  font-size:.95rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn--accent{
  background:var(--gold);
  color:var(--navy-dark);
  box-shadow:0 8px 24px -8px rgba(201,162,75,.6);
}
.btn--accent:hover{ background:var(--gold-light); transform:translateY(-1px); }
.btn--ghost{
  background:transparent;
  border-color:rgba(255,255,255,.35);
  color:#fff;
}
.btn--ghost:hover{ background:rgba(255,255,255,.1); }
.btn--lg{ padding:1em 2em; font-size:1rem; }
.btn--block{ width:100%; }

/* ============ Header ============ */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px clamp(20px, 4vw, 64px);
  max-width:1680px;
  margin:0 auto;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo__icon{ display:flex; flex-shrink:0; }
.logo__text{ display:flex; flex-direction:column; line-height:1.25; }
.logo__text strong{
  font-family:'Lora',serif;
  font-size:1.15rem;
  color:var(--navy);
  white-space:nowrap;
}
.logo__text small{
  font-size:.72rem;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.nav{
  display:flex;
  gap:28px;
  font-weight:600;
  font-size:.93rem;
}
.nav a{ color:var(--navy); opacity:.8; transition:opacity .15s; white-space:nowrap; }
.nav a:hover{ opacity:1; color:var(--gold); }

.header__actions{
  display:flex;
  align-items:center;
  gap:18px;
}
.header__phone{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:var(--navy);
  white-space:nowrap;
}
.header__phone svg{ color:var(--gold); }

.burger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;
  height:38px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  margin:0 auto;
  background:var(--navy);
  border-radius:2px;
}

/* ============ Hero ============ */
.hero{
  background:linear-gradient(160deg,var(--sage) 0%, #eef5f1 55%, var(--cream) 100%);
  position:relative;
  overflow:hidden;
}
.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  font-size:.82rem;
  color:var(--muted);
  padding-top:22px;
}
.breadcrumb a{ color:var(--muted); transition:color .15s; }
.breadcrumb a:hover{ color:var(--navy); }
.breadcrumb span:last-child{ color:var(--navy); font-weight:700; }

.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:56px;
  padding-top:28px;
  padding-bottom:72px;
  align-items:center;
}
.hero h1{
  font-size:clamp(2rem, 3.6vw, 3rem);
  margin-bottom:.5em;
}
.hero__highlight{ display:block; color:var(--navy); }
.hero__lead{
  color:#4b5563;
  font-size:1.05rem;
  max-width:560px;
}
.hero__stats{
  display:grid;
  grid-template-columns:repeat(4,auto);
  gap:28px;
  margin:32px 0 0;
}
.hero__stats li{ display:flex; flex-direction:column; gap:2px; }
.hero__stats strong{
  font-family:'Lora',serif;
  font-size:1.5rem;
  color:var(--navy);
}
.hero__stats span{
  font-size:.8rem;
  color:var(--muted);
  max-width:9em;
}

/* Hero form card */
.form-card{
  background:#fff;
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  color:var(--ink);
}
.form-card h3{ margin-bottom:.3em; font-size:1.25rem; }
.form-card > p{ color:var(--muted); font-size:.92rem; margin-bottom:1.2em; }

.lead-form{ display:flex; flex-direction:column; gap:14px; }
.field{ display:flex; flex-direction:column; gap:6px; font-size:.85rem; font-weight:700; color:var(--navy); }
.field input,
.field textarea{
  font-family:inherit;
  font-size:.95rem;
  padding:.75em .9em;
  border:1.5px solid var(--line);
  border-radius:10px;
  background:#fbfaf8;
  color:var(--ink);
  resize:vertical;
  transition:border-color .15s, background .15s;
}
.field input:focus,
.field textarea:focus{
  outline:none;
  border-color:var(--gold);
  background:#fff;
}
.form-disclaimer{
  font-size:.76rem;
  color:var(--muted);
  margin:0;
}
.form-disclaimer a{ color:var(--navy); text-decoration:underline; }
.form-success{
  font-size:.9rem;
  font-weight:700;
  color:#1b7a4d;
  background:#eafaf1;
  border-radius:8px;
  padding:.7em 1em;
  margin:0;
}

/* Hero consultation card */
.form-card--hero{ margin-top:28px; max-width:600px; }
.form-card--hero textarea{ min-height:84px; margin-bottom:0; }

.chip-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:14px 0;
}
.chip{
  border:1.5px solid var(--line);
  background:#fbfaf8;
  border-radius:999px;
  padding:.5em 1.1em;
  font-size:.82rem;
  font-weight:600;
  font-family:inherit;
  color:var(--navy);
  cursor:pointer;
  transition:border-color .15s, background .15s;
}
.chip:hover, .chip.is-active{
  border-color:var(--gold);
  background:var(--cream);
}

.hero-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:14px 0;
}
.field--inline input{ width:100%; }

.hero-form-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:6px;
}
.btn--outline-dark{
  border:2px solid var(--navy);
  color:var(--navy);
  background:transparent;
}
.btn--outline-dark:hover{ background:var(--navy); color:#fff; }
.btn--icon{
  width:48px; height:48px;
  padding:0;
  border-radius:50%;
  flex-shrink:0;
}

/* Hero illustration */
.hero__media{
  position:relative;
  min-height:380px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero__photo{
  width:260px; height:260px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow);
  position:relative;
  z-index:2;
}
.hero__shape{ position:absolute; z-index:1; }
.hero__shape--1{
  width:320px; height:320px;
  top:-30px; right:-30px;
  border:2px solid var(--gold);
  border-radius:50% 50% 50% 0;
  transform:rotate(20deg);
  opacity:.35;
}
.hero__shape--2{
  width:180px; height:180px;
  bottom:0; left:10px;
  border:2px solid var(--navy);
  border-radius:30%;
  transform:rotate(-15deg);
  opacity:.15;
}
.hero__badge{
  position:absolute;
  bottom:18px;
  right:0;
  z-index:3;
  background:#fff;
  border-radius:14px;
  padding:14px 20px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  text-align:center;
  min-width:140px;
}
.hero__badge strong{ font-family:'Lora',serif; font-size:1.3rem; color:var(--navy); }
.hero__badge span{ font-size:.78rem; color:var(--muted); }

/* ============ Trust bar ============ */
.trustbar{
  background:var(--cream);
  border-bottom:1px solid var(--line);
}
.trustbar__inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:22px 24px;
}
.trustbar__item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:.88rem;
  font-weight:600;
  color:var(--navy);
}
.trustbar__item svg{ flex-shrink:0; }

/* ============ Sections ============ */
.section{ padding:84px 0; }
.section--alt{ background:var(--cream); }
.section--dark{
  background:linear-gradient(135deg,var(--navy-dark),var(--navy));
  color:#fff;
}
.section--dark h2, .section--dark .eyebrow{ color:#fff; }
.section--dark .eyebrow{ color:var(--gold); }
.section--dark .step h3{ color:#fff; }
.section--dark .step p{ color:rgba(255,255,255,.7); }

.section__head{
  max-width:680px;
  margin:0 auto 48px;
  text-align:center;
}
.section__head h2{ font-size:clamp(1.6rem,3vw,2.2rem); }
.section__lead{ color:var(--muted); }
.section__head--light h2{ color:#fff; }
.section--dark .section__lead{ color:rgba(255,255,255,.7); }

/* ============ Grid / Cards ============ */
.grid{ display:grid; gap:24px; }
.grid--services{ grid-template-columns:repeat(4,1fr); }
.grid--audience{ grid-template-columns:repeat(4,1fr); }
.grid--process{ grid-template-columns:repeat(4,1fr); }
.grid--cities{ grid-template-columns:repeat(3,1fr); }

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card--service:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:transparent;
}
.card__icon{
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  border-radius:14px;
  background:var(--cream);
  margin-bottom:18px;
}
.card h3{ font-size:1.08rem; margin-bottom:.4em; }
.card p{ color:var(--muted); font-size:.92rem; margin-bottom:1em; }
.card h3 a:hover{ color:var(--gold); }
.card__links{ display:flex; flex-direction:column; gap:8px; }
.card__link{
  font-weight:700;
  font-size:.88rem;
  color:var(--navy);
  border-bottom:2px solid var(--gold);
  padding-bottom:2px;
  transition:color .15s;
  align-self:flex-start;
}
.card__link:hover{ color:var(--gold); }
.card__link--secondary{
  font-weight:600;
  font-size:.85rem;
  color:var(--muted);
  border-bottom:none;
  padding-bottom:0;
}
.card__link--secondary:hover{ color:var(--navy); }

/* City cards */
.city-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.city-card:hover{ transform:translateY(-2px); box-shadow:var(--shadow); border-color:transparent; }
.city-card h3{ font-size:1rem; margin:0; }
.city-card__link{ font-weight:700; font-size:.85rem; color:var(--gold); flex-shrink:0; }

/* Audience cards */
.audience-card{
  background:var(--navy);
  color:#fff;
  border-radius:var(--radius);
  padding:28px;
  text-align:left;
}
.audience-card__icon{
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  margin-bottom:18px;
}
.audience-card h3{ color:#fff; font-size:1.08rem; }
.audience-card p{ color:rgba(255,255,255,.7); font-size:.9rem; margin:0; }

/* ============ Advantages ============ */
.advantages{
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:56px;
  align-items:start;
}
.advantages__list{ margin-top:32px; display:flex; flex-direction:column; gap:24px; }
.advantages__list li{ display:flex; gap:18px; align-items:flex-start; }
.advantages__num{
  font-family:'Lora',serif;
  font-size:1.4rem;
  font-weight:700;
  color:var(--gold);
  flex-shrink:0;
  line-height:1.4;
}
.advantages__list h4{ font-size:1.02rem; margin-bottom:.25em; }
.advantages__list p{ color:var(--muted); font-size:.92rem; margin:0; }

.advantages__panel{ position:sticky; top:100px; }
.panel-card{
  background:linear-gradient(135deg,var(--navy),var(--navy-soft));
  color:#fff;
  border-radius:var(--radius);
  padding:32px;
  box-shadow:var(--shadow);
}
.panel-card h3{ color:#fff; }
.panel-card p{ color:rgba(255,255,255,.75); font-size:.92rem; }
.panel-card .btn{ margin-top:8px; }
.panel-card__contacts{
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.15);
  display:flex;
  flex-direction:column;
  gap:8px;
  font-weight:700;
}
.panel-card__contacts a{ color:var(--gold); }

/* ============ Process ============ */
.step{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:28px;
}
.step__num{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px; height:44px;
  border-radius:50%;
  background:var(--gold);
  color:var(--navy-dark);
  font-family:'Lora',serif;
  font-weight:700;
  font-size:1.1rem;
  margin-bottom:16px;
}

/* ============ FAQ ============ */
.faq{
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq__item{
  background:var(--cream);
  border-radius:12px;
  padding:18px 22px;
  border:1px solid var(--line);
}
.faq__item summary{
  cursor:pointer;
  font-weight:700;
  color:var(--navy);
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary::after{
  content:"+";
  font-size:1.4rem;
  color:var(--gold);
  font-weight:700;
  flex-shrink:0;
  transition:transform .2s;
}
.faq__item[open] summary::after{ content:"–"; }
.faq__body{ padding-top:12px; }
.faq__body p{ color:var(--muted); margin:0; font-size:.94rem; }

/* ============ Contact ============ */
.contact{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
}
.contact__list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin:28px 0;
}
.contact__list li{ display:flex; gap:14px; align-items:flex-start; }
.contact__icon{
  width:42px; height:42px;
  display:flex; align-items:center; justify-content:center;
  border-radius:10px;
  background:#fff;
  border:1px solid var(--line);
  flex-shrink:0;
}
.contact__list strong{ display:block; font-size:.98rem; }
.contact__list strong a{ color:var(--navy); }
.contact__list span{ font-size:.85rem; color:var(--muted); }

.contact__messengers{ display:flex; gap:10px; flex-wrap:wrap; }
.contact__messengers--center{ justify-content:center; margin-top:24px; }
.msg-btn{
  padding:.6em 1.3em;
  border-radius:999px;
  font-weight:700;
  font-size:.85rem;
  border:1.5px solid var(--line);
  background:#fff;
  transition:border-color .15s, color .15s;
}
.msg-btn--wa:hover{ border-color:#25D366; color:#1da851; }
.msg-btn--tg:hover{ border-color:#34a4e4; color:#34a4e4; }
.msg-btn--vb:hover{ border-color:#7360f2; color:#7360f2; }

/* ============ Footer ============ */
.footer{ background:var(--navy-dark); color:rgba(255,255,255,.7); }
.footer__inner{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding:56px 0 36px;
}
.footer__col h4{
  color:#fff;
  font-family:'Lora',serif;
  font-size:.95rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:0 0 1.2em;
}
.footer__col ul{ display:flex; flex-direction:column; gap:10px; font-size:.88rem; }
.footer__col ul a:hover{ color:var(--gold); }
.footer__brand{ display:flex; flex-direction:column; gap:16px; }
.footer__brand p{ font-size:.88rem; margin:0; }
.footer__social{ display:flex; gap:10px; }
.footer__social a{
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:var(--gold);
  transition:background .15s, color .15s;
}
.footer__social a:hover{ background:var(--gold); color:var(--navy-dark); }
.footer__contacts{ display:flex; flex-direction:column; gap:10px; font-size:.88rem; }
.footer__contacts a{ color:#fff; font-weight:700; }
.footer__contacts a:hover{ color:var(--gold); }
.footer__legal{
  border-top:1px solid rgba(255,255,255,.08);
  padding:24px 0;
  font-size:.82rem;
}
.footer__legal p{ margin:0 0 .5em; }
.footer__legal a{ color:rgba(255,255,255,.7); text-decoration:underline; }
.footer__legal a:hover{ color:var(--gold); }
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 0;
  font-size:.8rem;
  text-align:center;
}

/* ============ Floating contact widget ============ */
.fab-widget{
  position:fixed;
  right:22px;
  bottom:28px;
  z-index:60;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:16px;
}
.fab{
  width:58px; height:58px;
  flex-shrink:0;
  border:none;
  border-radius:50%;
  background:var(--gold);
  color:var(--navy-dark);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px -6px rgba(201,162,75,.7);
  cursor:pointer;
  transition:transform .15s;
}
.fab:hover{ transform:scale(1.07); }
.fab__icon-close{ display:none; }
.fab-widget.is-open .fab__icon-open{ display:none; }
.fab-widget.is-open .fab__icon-close{ display:block; }

.fab-card{
  display:none;
  width:260px;
  background:var(--navy);
  color:#fff;
  border-radius:20px;
  padding:28px 22px;
  text-align:center;
  box-shadow:0 20px 50px -16px rgba(20,33,61,.5);
}
.fab-widget.is-open .fab-card{ display:block; }
.fab-card h3{ color:#fff; font-size:1.1rem; margin-bottom:18px; }
.fab-card__grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.fab-card__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  padding:14px 8px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:.8rem;
  font-weight:600;
  transition:background .15s, transform .15s;
}
.fab-card__item:hover{ background:rgba(255,255,255,.14); transform:translateY(-2px); }
.fab-card__item svg{ flex-shrink:0; }
.fab-card__item--tg svg{ color:#34a3e0; }
.fab-card__item--mail svg{ color:var(--gold-light); }
.fab-card__item--phone svg{ color:var(--gold-light); }
.fab-card__item--wa svg{ color:#3ad07a; }
.fab-card__caption{
  margin:18px 0 0;
  font-size:.85rem;
  color:rgba(255,255,255,.65);
}

/* ============ Inner page hero ============ */
.hero--page .hero__inner{ grid-template-columns:1fr; padding-bottom:48px; }
.hero--page .hero__content{ max-width:760px; }
.hero--page .hero-form-actions{ margin-top:24px; }

/* ============ Points / "Что входит" ============ */
.points{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.point{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
}
.point__num{
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px;
  border-radius:10px;
  background:var(--cream);
  color:var(--gold);
  font-family:'Lora',serif;
  font-weight:700;
  margin-bottom:16px;
}
.point h3{ font-size:1.05rem; margin-bottom:.4em; }
.point p{ color:var(--muted); font-size:.92rem; margin:0; }

/* ============ "Кому подходит" ============ */
.who-list{ display:flex; flex-direction:column; gap:14px; max-width:760px; margin:0 auto; }
.who-list li{
  display:flex; gap:14px; align-items:flex-start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:18px 22px;
  font-size:.96rem;
}
.who-list li svg{ flex-shrink:0; color:var(--gold); margin-top:2px; }

/* ============ Internal link chips ============ */
.links-grid{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.links-grid a{
  border:1.5px solid var(--line);
  border-radius:999px;
  padding:.6em 1.4em;
  font-weight:600;
  font-size:.88rem;
  color:var(--navy);
  background:#fff;
  transition:border-color .15s, background .15s;
}
.links-grid a:hover{ border-color:var(--gold); background:var(--cream); }

.form-card--center{ max-width:560px; margin:0 auto; }
.contact__list--center{ max-width:560px; margin:28px auto 0; }

/* ============ Legal pages ============ */
.legal{
  padding:64px 0 96px;
}
.legal .container{ max-width:820px; }
.legal h1{ font-size:clamp(1.6rem,3vw,2.2rem); margin-bottom:.3em; }
.legal__updated{ color:var(--muted); font-size:.88rem; margin-bottom:2.5em; }
.legal h2{ font-size:1.2rem; margin-top:1.8em; }
.legal p, .legal li{ color:#3a3f4d; font-size:.98rem; }
.legal ol, .legal ul{ padding-left:1.4em; list-style:decimal; display:flex; flex-direction:column; gap:.5em; margin-bottom:1em; }
.legal ul{ list-style:disc; }
.legal a{ color:var(--navy); text-decoration:underline; }
.back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:var(--navy);
  margin-bottom:24px;
}
.back-link:hover{ color:var(--gold); }

/* ============ Responsive ============ */
@media (max-width:1024px){
  .grid--services{ grid-template-columns:repeat(2,1fr); }
  .grid--audience{ grid-template-columns:repeat(2,1fr); }
  .grid--process{ grid-template-columns:repeat(2,1fr); }
  .grid--cities{ grid-template-columns:repeat(2,1fr); }
  .hero__inner{ grid-template-columns:1fr; }
  .hero__media{ min-height:240px; order:-1; }
  .hero__photo{ width:180px; height:180px; }
  .hero__shape--1{ width:220px; height:220px; }
  .hero__badge{ display:none; }
  .advantages{ grid-template-columns:1fr; }
  .advantages__panel{ position:static; }
  .contact{ grid-template-columns:1fr; }
  .trustbar__inner{ grid-template-columns:repeat(2,1fr); }
  .hero__stats{ grid-template-columns:repeat(2,auto); }
  .footer__inner{ grid-template-columns:1fr 1fr; gap:32px; }
  .footer__brand{ grid-column:1 / -1; }
}

@media (max-width:760px){
  .nav, .header__phone, .header__actions{ display:none; }
  .burger{ display:flex; }
  .nav.is-open{
    display:flex;
    position:absolute;
    top:100%; left:0; right:0;
    background:#fff;
    flex-direction:column;
    padding:18px 24px;
    gap:14px;
    border-bottom:1px solid var(--line);
    box-shadow:var(--shadow);
  }
  .hero__inner{ padding-top:24px; padding-bottom:40px; gap:24px; }
  .hero__stats{ grid-template-columns:repeat(2,auto); gap:18px; }
  .hero-form-row{ grid-template-columns:1fr; }
  .hero-form-actions .btn:not(.btn--icon){ flex:1; }
  .section{ padding:56px 0; }
  .footer__inner{ grid-template-columns:1fr; }
  .footer__brand{ grid-column:auto; }
  .grid--services, .grid--audience, .grid--process, .grid--cities{ grid-template-columns:1fr; }
  .city-card{ flex-direction:column; align-items:flex-start; gap:8px; }
  .points{ grid-template-columns:1fr; }
}
