/* ======= БАЗА ======= */
:root{
  --teal:#02a5a4;
  --teal-dark:#018086;
  --teal-soft:#e8faf9;
  --teal-soft-2:#d2f4f2;
  --ink:#0e1a26;
  --ink-2:#42566a;
  --muted:#7a8c9d;
  --line:#e6ecef;
  --bg:#ffffff;
  --bg-2:#f6fbfb;
  --shadow-sm:0 1px 2px rgba(2,165,164,.06), 0 4px 12px rgba(2,165,164,.06);
  --shadow:0 10px 30px rgba(2,165,164,.10), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:0 24px 60px rgba(2,165,164,.18), 0 6px 16px rgba(0,0,0,.06);
  --r-xs:10px;
  --r-sm:14px;
  --r:20px;
  --r-lg:28px;
  --r-xl:36px;
  --r-pill:999px;
  --font-display:'Unbounded', system-ui, sans-serif;
  --font-body:'Manrope', system-ui, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none;transition:color .2s}
a:hover{color:var(--teal-dark)}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:700;color:var(--ink);letter-spacing:-.02em;margin:0 0 .5em}
p{margin:0 0 1em;color:var(--ink-2)}
ul{padding:0;margin:0;list-style:none}

.container{max-width:1240px;margin:0 auto;padding:0 24px}

.i{width:24px;height:24px;flex:none;color:currentColor}

/* ======= КНОПКИ ======= */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:14px 26px;border-radius:var(--r-pill);
  font-family:var(--font-display);font-weight:500;font-size:15px;
  line-height:1;cursor:pointer;border:none;
  transition:transform .2s, box-shadow .2s, background .2s, color .2s;
  text-align:center;white-space:nowrap;
}
.btn .i{width:20px;height:20px}
.btn--primary{
  background:linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color:#fff;
  box-shadow:0 10px 24px -8px rgba(2,165,164,.55);
}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 18px 32px -10px rgba(2,165,164,.65);color:#fff}
.btn--primary:active{transform:translateY(0)}
.btn--ghost{
  background:#fff;color:var(--teal-dark);
  border:1.5px solid var(--teal);
}
.btn--ghost:hover{background:var(--teal-soft);color:var(--teal-dark)}
.btn--sm{padding:10px 18px;font-size:14px}
.btn--block{width:100%}

/* ======= HEADER ======= */
.header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:14px 24px;
}
.logo{display:flex;align-items:center;gap:12px}
.logo__mark{
  width:44px;height:44px;flex:none;border-radius:14px;
  background:linear-gradient(135deg, var(--teal), var(--teal-dark));
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 18px -6px rgba(2,165,164,.5);
}
.logo__img{
  width:100%;height:100%;object-fit:cover;
  position:relative;z-index:1;
}
.logo__fallback{
  position:absolute;inset:0;display:none;
  align-items:center;justify-content:center;
}
.logo__fallback.is-shown{display:flex}
.logo__drum{
  width:24px;height:24px;border-radius:50%;
  border:2.5px solid #fff;
  position:relative;
  animation:spin 6s linear infinite;
}
.logo__drum::before,
.logo__drum::after{
  content:'';position:absolute;width:3px;height:3px;border-radius:50%;background:#fff;
}
.logo__drum::before{top:3px;left:50%;transform:translateX(-50%)}
.logo__drum::after{bottom:3px;left:50%;transform:translateX(-50%)}
.logo__bubble{
  position:absolute;border-radius:50%;background:rgba(255,255,255,.45);
}
.logo__bubble--1{width:5px;height:5px;top:6px;left:6px;animation:bubble 3s ease-in-out infinite}
.logo__bubble--2{width:4px;height:4px;bottom:8px;right:7px;animation:bubble 2.4s ease-in-out infinite .6s}
.logo__bubble--3{width:3px;height:3px;top:8px;right:5px;animation:bubble 2.8s ease-in-out infinite 1.2s}
@keyframes bubble{
  0%,100%{transform:translateY(0);opacity:.5}
  50%{transform:translateY(-6px);opacity:1}
}
@keyframes spin{to{transform:rotate(360deg)}}

.logo__text{display:flex;flex-direction:column;line-height:1.1}
.logo__name{font-family:var(--font-display);font-weight:700;font-size:19px;letter-spacing:-.02em}
.logo__tag{font-size:11px;color:var(--muted);margin-top:2px;letter-spacing:.02em}

.nav{display:flex;gap:24px}
.nav a{font-size:15px;color:var(--ink-2);font-weight:500;position:relative;white-space:nowrap}
.nav a::after{
  content:'';position:absolute;left:0;right:0;bottom:-4px;height:2px;
  background:var(--teal);border-radius:2px;
  transform:scaleX(0);transform-origin:left;transition:transform .25s;
}
.nav a:hover{color:var(--ink)}
.nav a:hover::after{transform:scaleX(1)}

.header__cta{display:flex;align-items:center;gap:16px}
.header__phone{
  display:flex;align-items:center;gap:8px;
  font-family:var(--font-display);font-weight:500;font-size:15px;color:var(--ink);
  white-space:nowrap;
}
.header__phone .i{width:18px;height:18px;color:var(--teal)}

.burger{
  display:none;background:none;border:none;cursor:pointer;
  width:44px;height:44px;border-radius:12px;color:var(--ink);
  align-items:center;justify-content:center;
  transition:background .2s;
}
.burger:hover{background:var(--teal-soft)}
.burger .i-close{display:none}
.burger.is-open .i-open{display:none}
.burger.is-open .i-close{display:block}

.mobile-menu{
  display:none;flex-direction:column;gap:6px;padding:16px 24px 24px;
  background:#fff;border-bottom:1px solid var(--line);
}
.mobile-menu a{
  padding:14px 16px;border-radius:var(--r-sm);
  font-family:var(--font-display);font-size:16px;font-weight:500;
}
.mobile-menu a:hover{background:var(--teal-soft)}
.mobile-menu .btn{margin-top:8px}
.mobile-menu.is-open{display:flex}

/* ======= HERO ======= */
.hero{
  position:relative;padding:80px 0 60px;
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 20%, var(--teal-soft) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, var(--teal-soft-2) 0%, transparent 45%),
    #fff;
}
.hero__bg{position:absolute;inset:0;pointer-events:none;z-index:0}
.bubble{
  position:absolute;border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(2,165,164,.15));
  box-shadow:inset -3px -3px 6px rgba(2,165,164,.1), 0 4px 16px rgba(2,165,164,.08);
  animation:float-up 14s linear infinite;
}
.b1{width:60px;height:60px;left:8%;bottom:-80px;animation-duration:18s;animation-delay:0s}
.b2{width:30px;height:30px;left:22%;bottom:-80px;animation-duration:14s;animation-delay:2s}
.b3{width:80px;height:80px;left:40%;bottom:-100px;animation-duration:20s;animation-delay:5s;opacity:.7}
.b4{width:20px;height:20px;left:60%;bottom:-80px;animation-duration:12s;animation-delay:1s}
.b5{width:45px;height:45px;left:75%;bottom:-80px;animation-duration:16s;animation-delay:3s}
.b6{width:35px;height:35px;left:90%;bottom:-80px;animation-duration:13s;animation-delay:6s}
.b7{width:15px;height:15px;left:50%;bottom:-80px;animation-duration:10s;animation-delay:4s}
.b8{width:55px;height:55px;left:32%;bottom:-80px;animation-duration:17s;animation-delay:7s;opacity:.6}
@keyframes float-up{
  0%{transform:translateY(0) translateX(0);opacity:0}
  10%{opacity:1}
  50%{transform:translateY(-50vh) translateX(20px)}
  90%{opacity:1}
  100%{transform:translateY(-110vh) translateX(-15px);opacity:0}
}

.hero__inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:center;
}
.hero__content{animation:slide-up .8s ease-out backwards}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 16px;border-radius:var(--r-pill);
  background:var(--teal-soft);color:var(--teal-dark);
  font-size:13px;font-weight:600;
  margin-bottom:24px;
  animation:slide-up .6s ease-out backwards;
}
.badge__dot{
  width:8px;height:8px;border-radius:50%;background:#22c55e;
  box-shadow:0 0 0 4px rgba(34,197,94,.2);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 4px rgba(34,197,94,.2)}
  50%{box-shadow:0 0 0 8px rgba(34,197,94,.1)}
}

.hero__title{
  font-size:clamp(36px, 5vw, 64px);
  line-height:1.05;
  margin-bottom:24px;
  animation:slide-up .7s ease-out .1s backwards;
}
.hero__title .ink{color:var(--ink)}
.hero__title .accent{
  background:linear-gradient(135deg, var(--teal), var(--teal-dark));
  -webkit-background-clip:text;background-clip:text;color:transparent;
  position:relative;
}
.hero__title .accent::after{
  content:'';position:absolute;left:0;right:0;bottom:-4px;height:4px;
  background:url("data:image/svg+xml,%3Csvg viewBox='0 0 100 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4 Q 25 0, 50 4 T 100 4' stroke='%2302a5a4' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size:100% 100%;
}
.hero__lead{
  font-size:18px;max-width:560px;color:var(--ink-2);
  margin-bottom:32px;
  animation:slide-up .7s ease-out .2s backwards;
}
.hero__cta{
  display:flex;gap:14px;flex-wrap:wrap;
  margin-bottom:32px;
  animation:slide-up .7s ease-out .3s backwards;
}
.hero__bullets{
  display:flex;gap:24px;flex-wrap:wrap;
  animation:slide-up .7s ease-out .4s backwards;
}
.hero__bullets li{
  display:flex;align-items:center;gap:8px;
  font-size:14px;font-weight:500;color:var(--ink-2);
}
.hero__bullets .i{width:18px;height:18px;color:var(--teal);padding:3px;background:var(--teal-soft);border-radius:50%}

@keyframes slide-up{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}

/* ВИЗУАЛ HERO: фото-композиция */
.hero__visual{
  position:relative;
  height:520px;
  animation:slide-up .9s ease-out .2s backwards;
}

.floating-icon{
  position:absolute;width:52px;height:52px;border-radius:16px;
  background:#fff;color:var(--teal);
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow);
  animation:float 4s ease-in-out infinite;
}
.floating-icon .i{width:26px;height:26px}
.fi1{top:6%;left:-2%;animation-delay:0s}
.fi2{top:42%;right:-4%;animation-delay:.8s;background:var(--teal);color:#fff}
.fi3{bottom:6%;left:6%;animation-delay:1.6s}
@keyframes float{
  0%,100%{transform:translateY(0) rotate(-3deg)}
  50%{transform:translateY(-12px) rotate(3deg)}
}

/* HERO PHOTO COMPOSITION */
.hero-photo{
  position:absolute;overflow:hidden;
  border-radius:var(--r-lg);
  box-shadow:0 30px 60px -20px rgba(2,165,164,.28), 0 10px 24px -12px rgba(0,0,0,.12);
  background:#e8faf9;
  animation:slide-up .9s ease-out backwards;
}
.hero-photo img{width:100%;height:100%;object-fit:cover;display:block}
.hero-photo--main{
  width:78%;height:88%;top:6%;right:0;
  border:6px solid #fff;
  animation-delay:.15s;
  transform:translate3d(var(--px,0), var(--py,0), 0);
}
.hero-photo--side{
  width:46%;height:42%;bottom:0;left:0;
  border:5px solid #fff;
  animation-delay:.3s;
  transform:translate3d(calc(var(--px,0) * -0.6), calc(var(--py,0) * -0.6), 0) rotate(-2deg);
}
.hero-photo--side:hover{transform:translate3d(calc(var(--px,0) * -0.6), calc(var(--py,0) * -0.6), 0) rotate(0)}
.hero-photo, .hero-photo img{transition:transform .5s ease}
.hero-photo:hover img{transform:scale(1.05)}

.hero-badge{
  position:absolute;z-index:3;
  display:flex;align-items:center;gap:10px;
  padding:12px 16px;background:#fff;
  border-radius:var(--r-md);
  box-shadow:var(--shadow);
  font-size:13px;
  animation:slide-up .8s ease-out backwards;
}
.hero-badge .i{width:28px;height:28px;color:var(--teal);flex-shrink:0}
.hero-badge strong{display:block;font-family:var(--font-display);font-weight:700;font-size:15px;color:var(--ink);line-height:1.2}
.hero-badge span{color:var(--muted);font-size:12px}
.hero-badge--clock{top:10%;left:-8%;animation-delay:.5s}
.hero-badge--shield{bottom:14%;right:-4%;animation-delay:.7s}

.hero__rating{
  display:flex;align-items:center;gap:14px;
  max-width:fit-content;margin:40px auto 0;
  padding:14px 22px;background:#fff;
  border-radius:var(--r-pill);
  box-shadow:var(--shadow);
  position:relative;z-index:2;
}
.stars{display:flex;gap:2px;color:#ffb800}
.stars .i{width:18px;height:18px}
.hero__rating strong{font-family:var(--font-display);font-weight:700;font-size:18px}
.hero__rating span{color:var(--muted);font-size:14px}

/* ======= БЕГУЩАЯ СТРОКА ======= */
.marquee{
  background:var(--ink);color:#fff;
  padding:18px 0;overflow:hidden;
  border-radius:0;
}
.marquee__track{
  display:flex;gap:32px;align-items:center;
  white-space:nowrap;
  animation:marquee 40s linear infinite;
  font-family:var(--font-display);font-weight:500;font-size:15px;
}
.marquee__track span:nth-child(even){color:var(--teal)}
@keyframes marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ======= ОБЩИЕ СЕКЦИИ ======= */
.section{padding:100px 0;position:relative}
.section__header{text-align:center;max-width:680px;margin:0 auto 60px}
.eyebrow{
  display:inline-block;padding:6px 14px;
  background:var(--teal-soft);color:var(--teal-dark);
  border-radius:var(--r-pill);
  font-size:13px;font-weight:600;letter-spacing:.04em;
  margin-bottom:16px;text-transform:uppercase;
}
.section__title{
  font-size:clamp(32px, 4vw, 48px);
  line-height:1.1;margin-bottom:16px;
}
.section__lead{font-size:17px;color:var(--ink-2)}

/* ======= УСЛУГИ ======= */
.services{background:var(--bg-2)}
.services__grid{
  display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;
}
.service-card{
  position:relative;padding:32px 28px;
  background:#fff;border-radius:var(--r-lg);
  border:1px solid var(--line);
  transition:transform .3s, box-shadow .3s, border-color .3s;
  cursor:default;
  overflow:hidden;
}
.service-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:0;
  background:linear-gradient(90deg, var(--teal), var(--teal-dark));
  transition:height .3s;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:transparent;
}
.service-card:hover::before{height:4px}
.service-card:hover .service-card__icon{
  background:var(--teal);color:#fff;
  transform:rotate(-6deg) scale(1.05);
}
.service-card__icon{
  width:58px;height:58px;border-radius:18px;
  background:var(--teal-soft);color:var(--teal-dark);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  transition:all .3s;
}
.service-card__icon .i{width:30px;height:30px}
.service-card h3{
  font-size:19px;margin-bottom:10px;
}
.service-card p{
  font-size:14px;color:var(--muted);margin-bottom:20px;
  min-height:60px;
}
.service-card__price{
  display:inline-block;
  font-family:var(--font-display);font-weight:600;font-size:16px;
  color:var(--teal-dark);
  padding:6px 14px;background:var(--teal-soft);
  border-radius:var(--r-pill);
}

/* ======= ПОЧЕМУ МЫ ======= */
.why__grid{
  display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;
  margin-bottom:60px;
}
.why__card{
  position:relative;padding:32px;
  background:#fff;border-radius:var(--r-lg);
  border:1px solid var(--line);
  transition:transform .3s, box-shadow .3s;
}
.why__card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.why__num{
  position:absolute;top:24px;right:28px;
  font-family:var(--font-display);font-weight:800;font-size:48px;
  color:var(--teal-soft);line-height:1;
}
.why__icon{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg, var(--teal), var(--teal-dark));
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
}
.why__icon .i{width:28px;height:28px}
.why__card h3{font-size:18px;margin-bottom:10px}
.why__card p{font-size:14px;color:var(--muted);margin:0}

/* СТАТЫ */
.stats{
  display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;
  background:linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding:48px;border-radius:var(--r-xl);
  color:#fff;
  position:relative;overflow:hidden;
}
.stats::before{
  content:'';position:absolute;top:-50%;right:-10%;width:400px;height:400px;
  border-radius:50%;background:rgba(255,255,255,.06);
}
.stats::after{
  content:'';position:absolute;bottom:-60%;left:-5%;width:300px;height:300px;
  border-radius:50%;background:rgba(255,255,255,.04);
}
.stat{position:relative;text-align:center}
.stat__num{
  font-family:var(--font-display);font-weight:700;font-size:56px;line-height:1;
  letter-spacing:-.02em;
}
.stat__suffix{
  font-family:var(--font-display);font-weight:700;font-size:32px;color:rgba(255,255,255,.7);
}
.stat__label{
  display:block;margin-top:8px;font-size:14px;color:rgba(255,255,255,.85);
}

/* ======= ЭТАПЫ ======= */
.steps{background:var(--bg-2)}
.steps__list{
  display:grid;grid-template-columns:repeat(4, 1fr);gap:24px;
  counter-reset:step;
}
.step{
  position:relative;padding:32px 28px;
  background:#fff;border-radius:var(--r-lg);
  border:1px solid var(--line);
}
.step:not(:last-child)::after{
  content:'';position:absolute;top:50px;right:-18px;
  width:36px;height:2px;
  background:repeating-linear-gradient(to right, var(--teal) 0 4px, transparent 4px 10px);
  z-index:1;
}
.step__n{
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:50%;
  background:linear-gradient(135deg, var(--teal), var(--teal-dark));
  color:#fff;font-family:var(--font-display);font-weight:700;font-size:18px;
  margin-bottom:18px;
  box-shadow:0 6px 16px -6px rgba(2,165,164,.55);
}
.step h3{font-size:17px;margin-bottom:8px}
.step p{font-size:14px;color:var(--muted);margin:0}

/* ======= ЦЕНЫ ======= */
.prices__tabs{
  display:flex;gap:8px;justify-content:center;flex-wrap:wrap;
  margin-bottom:32px;
}
.tab{
  padding:12px 22px;border:none;border-radius:var(--r-pill);
  background:#fff;color:var(--ink-2);
  font-family:var(--font-display);font-weight:500;font-size:14px;
  cursor:pointer;
  border:1.5px solid var(--line);
  transition:all .2s;
}
.tab:hover{border-color:var(--teal);color:var(--teal-dark)}
.tab.is-active{
  background:linear-gradient(135deg, var(--teal), var(--teal-dark));
  color:#fff;border-color:transparent;
  box-shadow:0 8px 20px -6px rgba(2,165,164,.55);
}

.prices__panels{
  background:#fff;border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:16px;
  max-width:920px;margin:0 auto;
  box-shadow:var(--shadow-sm);
}
.panel{display:none}
.panel.is-active{display:block;animation:fade-in .3s ease-out}
@keyframes fade-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

.price-list{display:flex;flex-direction:column}
.price-list li{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:18px 16px;
  border-radius:var(--r-sm);
  font-size:15px;
  transition:background .2s;
}
.price-list li:not(:last-child){border-bottom:1px dashed var(--line)}
.price-list li:hover{background:var(--teal-soft)}
.price-list b{
  font-family:var(--font-display);font-weight:600;font-size:16px;color:var(--teal-dark);
  white-space:nowrap;
}
.price-note{
  display:flex;align-items:center;gap:10px;
  margin:16px 16px 8px;padding:14px 18px;
  background:var(--teal-soft);border-radius:var(--r-sm);
  font-size:14px;color:var(--teal-dark);
}
.price-note .i{width:18px;height:18px;flex:none}

/* ======= ОТЗЫВЫ ======= */
.reviews{background:var(--bg-2)}
.reviews__grid{
  display:grid;grid-template-columns:repeat(3, 1fr);gap:20px;
  margin-bottom:40px;
}
.review{
  padding:28px;background:#fff;
  border-radius:var(--r-lg);border:1px solid var(--line);
  display:flex;flex-direction:column;gap:14px;
  transition:transform .3s, box-shadow .3s;
}
.review:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.review__stars{display:flex;gap:2px;color:#ffb800}
.review__stars .i{width:18px;height:18px}
.review p{
  font-size:15px;color:var(--ink);margin:0;line-height:1.55;
}
.review footer{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:12px;border-top:1px dashed var(--line);
  font-size:13px;
}
.review footer b{font-weight:600}
.review footer span{color:var(--muted)}

.reviews__cta{text-align:center}

/* ======= FAQ ======= */
.faq__list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq__item{
  background:#fff;border:1px solid var(--line);
  border-radius:var(--r);
  overflow:hidden;
  transition:border-color .2s, box-shadow .2s;
}
.faq__item[open]{border-color:var(--teal);box-shadow:var(--shadow-sm)}
.faq__item summary{
  list-style:none;cursor:pointer;
  padding:22px 28px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  font-family:var(--font-display);font-weight:500;font-size:16px;
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__plus{
  width:24px;height:24px;flex:none;position:relative;
}
.faq__plus::before,
.faq__plus::after{
  content:'';position:absolute;background:var(--teal);
  border-radius:2px;left:50%;top:50%;
}
.faq__plus::before{width:12px;height:2px;transform:translate(-50%,-50%)}
.faq__plus::after{width:2px;height:12px;transform:translate(-50%,-50%);transition:transform .2s}
.faq__item[open] .faq__plus::after{transform:translate(-50%,-50%) rotate(90deg)}
.faq__answer{
  padding:0 28px 22px;color:var(--ink-2);font-size:15px;
}

/* ======= МАСТЕРСКАЯ ======= */
.workshop{background:var(--bg-2)}
.workshop__grid{
  display:grid;grid-template-columns:repeat(6, 1fr);
  grid-auto-rows:200px;gap:16px;
}
.workshop__cell{
  position:relative;margin:0;overflow:hidden;
  border-radius:var(--r-lg);
  background:#e8faf9;
  box-shadow:0 4px 12px -4px rgba(0,0,0,.06);
  grid-column:span 2;
}
.workshop__cell--lg{grid-column:span 4;grid-row:span 2}
.workshop__cell img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .6s ease;
}
.workshop__cell:hover img{transform:scale(1.06)}
.workshop__cell figcaption{
  position:absolute;left:14px;bottom:14px;
  padding:6px 12px;background:rgba(255,255,255,.95);
  backdrop-filter:blur(8px);
  border-radius:var(--r-pill);
  font-size:12px;font-weight:600;color:var(--ink);
  box-shadow:0 4px 10px -4px rgba(0,0,0,.15);
}

/* ======= РАБОТЫ ======= */
.works__grid{
  display:grid;grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:240px;gap:16px;
}
.works__cell{
  position:relative;overflow:hidden;cursor:zoom-in;
  border-radius:var(--r-lg);
  border:none;padding:0;background:#e8faf9;
  box-shadow:0 4px 12px -4px rgba(0,0,0,.08);
  transition:transform .3s ease, box-shadow .3s ease;
}
.works__cell:hover{transform:translateY(-4px);box-shadow:0 12px 24px -8px rgba(2,165,164,.25)}
.works__cell::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg, transparent 60%, rgba(2,165,164,.15) 100%);
  opacity:0;transition:opacity .3s ease;pointer-events:none;
}
.works__cell:hover::after{opacity:1}
.works__cell img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .6s ease;
}
.works__cell:hover img{transform:scale(1.08)}
.works__cell--tall{grid-row:span 2}
.works__cell--wide{grid-column:span 2}

/* LIGHTBOX */
.lightbox{
  position:fixed;inset:0;z-index:200;
  background:rgba(10,20,20,.92);
  display:flex;align-items:center;justify-content:center;
  padding:24px;
  opacity:0;visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
  cursor:zoom-out;
}
.lightbox.is-open{opacity:1;visibility:visible}
.lightbox img{
  max-width:min(1200px, 95vw);max-height:90vh;
  border-radius:var(--r-md);
  box-shadow:0 30px 80px rgba(0,0,0,.5);
  cursor:default;
}
.lightbox__close{
  position:absolute;top:20px;right:20px;
  width:44px;height:44px;border-radius:50%;
  background:#fff;border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,.3);
}
.lightbox__close .i{width:20px;height:20px;color:var(--ink)}

/* ======= КОНТАКТЫ ======= */
.contacts__wrap{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
  align-items:stretch;
}
.contacts__wrap .contacts__info{
  background:#fff;border-radius:var(--r-lg);
  padding:32px;border:1px solid var(--line);
  display:flex;flex-direction:column;gap:8px;
}
.contacts__wrap .map{
  border-radius:var(--r-lg);overflow:hidden;
  border:1px solid var(--line);
  min-height:520px;
  box-shadow:var(--shadow-sm);
}
.contacts__wrap .map iframe{width:100%;height:100%;display:block;border:0}
@media (max-width: 820px){
  .contacts__wrap{grid-template-columns:1fr}
  .contacts__wrap .map{min-height:360px}
}

/* ======= REVIEW BADGES (геймификация) ======= */
.review{position:relative}
.review__badge{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 12px;border-radius:var(--r-pill);
  font-family:var(--font-display);font-weight:600;font-size:12px;
  letter-spacing:.01em;
  background:linear-gradient(135deg, var(--teal-soft), #fff);
  color:var(--teal-dark);
  border:1px solid var(--teal-soft-2);
  width:fit-content;
  box-shadow:0 2px 6px -2px rgba(2,165,164,.2);
  transition:transform .3s ease;
}
.review:hover .review__badge{transform:translateY(-2px) scale(1.03)}
.review__badge .i{width:14px;height:14px;flex:none}
.review__badge--magic{background:linear-gradient(135deg, #fef3c7, #fff);color:#b45309;border-color:#fde68a}
.review__badge--rescue{background:linear-gradient(135deg, #dbeafe, #fff);color:#1e40af;border-color:#bfdbfe}
.review__badge--cozy{background:linear-gradient(135deg, #fce7f3, #fff);color:#be185d;border-color:#fbcfe8}
.review__badge--top{background:linear-gradient(135deg, #fef3c7, #fff);color:#a16207;border-color:#fde68a}
.review__badge--wedding{background:linear-gradient(135deg, #ede9fe, #fff);color:#6d28d9;border-color:#ddd6fe}
.review__badge--care{background:linear-gradient(135deg, #fce7f3, #fff);color:#be185d;border-color:#fbcfe8}
.review__badge--speed{background:linear-gradient(135deg, #cffafe, #fff);color:var(--teal-dark);border-color:var(--teal-soft-2)}
.review__badge--shoes{background:linear-gradient(135deg, #e0e7ff, #fff);color:#3730a3;border-color:#c7d2fe}
.review__badge--carpet{background:linear-gradient(135deg, #fed7aa, #fff);color:#9a3412;border-color:#fdba74}
.review__badge--stroller{background:linear-gradient(135deg, #d1fae5, #fff);color:#065f46;border-color:#a7f3d0}
.review__badge--atelier{background:linear-gradient(135deg, #e0f2fe, #fff);color:#0369a1;border-color:#bae6fd}

.review--featured{
  background:linear-gradient(180deg, #fff 0%, var(--teal-soft) 100%);
  border:2px solid var(--teal);
  box-shadow:0 14px 36px -12px rgba(2,165,164,.3);
  position:relative;
}
.review--featured::before{
  content:'';position:absolute;top:-1px;right:-1px;
  width:60px;height:60px;
  background:radial-gradient(circle at top right, var(--teal-soft-2), transparent 70%);
  border-radius:var(--r-lg);
  pointer-events:none;
}
.review--featured .review__badge{
  background:linear-gradient(135deg, var(--teal), var(--teal-dark));
  color:#fff;border-color:var(--teal-dark);
  box-shadow:0 6px 14px -4px rgba(2,165,164,.55);
}

/* ======= ДОПОЛНИТЕЛЬНЫЕ АНИМАЦИИ ======= */
/* Shimmer для статистики */
.stat__num{position:relative;display:inline-block}
@keyframes shimmer{
  0%{background-position:-200% center}
  100%{background-position:200% center}
}
.stats:hover .stat__num{
  background:linear-gradient(90deg, #fff 0%, var(--teal-soft) 50%, #fff 100%);
  background-size:200% auto;
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:shimmer 2s linear infinite;
}

/* Wave-эффект при наведении на service-card */
.service-card{isolation:isolate}
.service-card::after{
  content:'';position:absolute;inset:0;
  background:radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--teal-soft) 0%, transparent 40%);
  opacity:0;transition:opacity .5s ease;
  pointer-events:none;z-index:-1;
}
.service-card:hover::after{opacity:1}

/* Bounce на иконках при появлении */
@keyframes icon-pop{
  0%{transform:scale(0) rotate(-30deg)}
  60%{transform:scale(1.15) rotate(5deg)}
  100%{transform:scale(1) rotate(0)}
}
.review.is-visible .review__badge{
  animation:icon-pop .5s cubic-bezier(.34, 1.56, .64, 1) backwards;
  animation-delay:.2s;
}

/* Plus floating icons rotation */
@keyframes spin-slow{to{transform:rotate(360deg)}}
.floating-icon{transition:transform .4s ease}
.floating-icon:hover{transform:scale(1.15) rotate(15deg) !important}

/* Подсветка featured review */
@keyframes featured-glow{
  0%,100%{box-shadow:0 14px 36px -12px rgba(2,165,164,.3)}
  50%{box-shadow:0 20px 48px -10px rgba(2,165,164,.5)}
}
.review--featured{animation:featured-glow 3s ease-in-out infinite}

/* Workshop/works галерея - анимация появления */
.workshop__cell, .works__cell{
  opacity:0;
  animation:slide-up .7s ease-out forwards;
}
.workshop__cell:nth-child(1){animation-delay:.05s}
.workshop__cell:nth-child(2){animation-delay:.12s}
.workshop__cell:nth-child(3){animation-delay:.19s}
.workshop__cell:nth-child(4){animation-delay:.26s}
.workshop__cell:nth-child(5){animation-delay:.33s}
.works__cell:nth-child(1){animation-delay:.05s}
.works__cell:nth-child(2){animation-delay:.1s}
.works__cell:nth-child(3){animation-delay:.15s}
.works__cell:nth-child(4){animation-delay:.2s}
.works__cell:nth-child(5){animation-delay:.25s}
.works__cell:nth-child(6){animation-delay:.3s}
.works__cell:nth-child(7){animation-delay:.35s}

/* Pulse glow на бейджах при появлении */
.review__badge--top,
.review__badge--wedding{
  position:relative;
}
.review__badge--top::after,
.review__badge--wedding::after{
  content:'';position:absolute;inset:0;border-radius:var(--r-pill);
  box-shadow:0 0 0 0 currentColor;
  opacity:.4;
  animation:badge-pulse 2.5s ease-out infinite;
}
@keyframes badge-pulse{
  0%{box-shadow:0 0 0 0 currentColor;opacity:.4}
  70%{box-shadow:0 0 0 8px transparent;opacity:0}
  100%{box-shadow:0 0 0 0 transparent;opacity:0}
}

/* ======= OLD-КОНТАКТЫ (legacy, не используются) ======= */
.contacts__grid{
  display:grid;grid-template-columns:1fr 1fr;gap:32px;
  margin-bottom:48px;
}
.contacts__info{
  background:#fff;border-radius:var(--r-lg);
  padding:32px;border:1px solid var(--line);
  display:flex;flex-direction:column;gap:8px;
}
.contact-row{
  display:flex;align-items:flex-start;gap:14px;
  padding:14px;border-radius:var(--r-sm);
  transition:background .2s;
}
.contact-row:hover{background:var(--teal-soft)}
.contact-row > span:last-child{display:flex;flex-direction:column;line-height:1.4}
.contact-row b{font-family:var(--font-display);font-weight:600;font-size:16px;color:var(--ink);margin-bottom:2px}
.contact-row__icon{
  width:42px;height:42px;border-radius:12px;flex:none;
  background:linear-gradient(135deg, var(--teal), var(--teal-dark));color:#fff;
  display:flex;align-items:center;justify-content:center;
}
.contact-row__icon .i{width:22px;height:22px}
.contacts__buttons{
  display:flex;gap:12px;margin-top:12px;flex-wrap:wrap;
}

/* ФОРМА */
.contact-form{
  background:linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius:var(--r-lg);padding:36px;
  color:#fff;
  position:relative;overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.contact-form::before{
  content:'';position:absolute;top:-50%;right:-30%;width:300px;height:300px;
  border-radius:50%;background:rgba(255,255,255,.06);
}
.contact-form > *{position:relative;z-index:1}
.contact-form h3{color:#fff;font-size:24px;margin-bottom:8px}
.contact-form > p{color:rgba(255,255,255,.85);margin-bottom:24px}
.field{display:flex;flex-direction:column;margin-bottom:16px}
.field span{font-size:13px;font-weight:500;margin-bottom:6px;color:rgba(255,255,255,.9)}
.field input,
.field textarea{
  padding:14px 18px;border-radius:var(--r-sm);border:none;
  background:rgba(255,255,255,.95);color:var(--ink);
  font-family:var(--font-body);font-size:15px;
  transition:background .2s, box-shadow .2s;
}
.field input:focus,
.field textarea:focus{
  outline:none;background:#fff;
  box-shadow:0 0 0 3px rgba(255,255,255,.3);
}
.field textarea{resize:vertical;min-height:80px;font-family:var(--font-body)}
.checkbox{
  display:flex;gap:12px;align-items:flex-start;
  font-size:13px;color:rgba(255,255,255,.9);
  margin-bottom:20px;cursor:pointer;
}
.checkbox input{
  width:18px;height:18px;flex:none;margin-top:2px;
  accent-color:#fff;cursor:pointer;
}
.checkbox a{color:#fff;text-decoration:underline}
.contact-form .btn--primary{
  background:#fff;color:var(--teal-dark);
}
.contact-form .btn--primary:hover{background:#fff;color:var(--ink)}
.form__note{font-size:12px;color:rgba(255,255,255,.7);margin-top:12px;text-align:center}
.form__success{
  display:flex;align-items:center;gap:10px;
  margin-top:16px;padding:14px 18px;
  background:rgba(255,255,255,.15);border-radius:var(--r-sm);
  font-weight:500;
}
.form__success .i{color:#fff}

.map{
  border-radius:var(--r-lg);overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}

/* ======= TRUST ======= */
.trust{
  background:var(--bg-2);
  padding:40px 0;
  border-top:1px solid var(--line);
}
.trust__inner{
  display:flex;justify-content:space-between;gap:32px;flex-wrap:wrap;
  align-items:center;
}
.trust__col{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.trust__label{
  font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;
  color:var(--muted);
}
.trust__pays{display:flex;gap:8px;flex-wrap:wrap}
.pay{
  display:inline-flex;align-items:center;
  padding:8px 14px;border-radius:var(--r-pill);
  background:#fff;border:1px solid var(--line);
  font-size:13px;font-weight:500;color:var(--ink-2);
}
.trust__docs{display:flex;gap:18px;flex-wrap:wrap}
.trust__docs a{
  font-size:13px;font-weight:500;color:var(--teal-dark);
  border-bottom:1px dashed var(--teal);
  padding-bottom:2px;
}
.trust__docs a:hover{border-bottom-style:solid}

/* ======= FOOTER ======= */
.footer{
  background:var(--ink);color:#9eb1c4;
  padding:60px 0 24px;
  position:relative;overflow:hidden;
}
.footer::before{
  content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(2,165,164,.15) 0%, transparent 60%);
}
.footer__grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:32px;
  margin-bottom:40px;position:relative;
}
.footer__brand .logo__name{color:#fff}
.footer__brand p{
  margin-top:16px;font-size:14px;color:#7e92a7;max-width:340px;
}
.footer__col h4{
  font-size:14px;letter-spacing:.05em;text-transform:uppercase;
  color:#fff;margin-bottom:16px;font-family:var(--font-display);font-weight:600;
}
.footer__col{display:flex;flex-direction:column;gap:10px}
.footer__col a,
.footer__col span{
  font-size:14px;color:#9eb1c4;
}
.footer__col a:hover{color:var(--teal)}
.footer__legal{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:24px;font-size:12px;color:#6c8095;
  position:relative;
}
.footer__legal p{margin:0 0 8px;color:#6c8095}
.footer__req{font-size:11px}

/* ======= TO TOP ======= */
.to-top{
  position:fixed;right:24px;bottom:24px;
  width:48px;height:48px;border-radius:50%;
  background:linear-gradient(135deg, var(--teal), var(--teal-dark));
  color:#fff;border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow);
  opacity:0;visibility:hidden;transform:translateY(20px);
  transition:all .3s;z-index:40;
}
.to-top.is-visible{opacity:1;visibility:visible;transform:translateY(0)}
.to-top:hover{transform:translateY(-4px)}

/* ======= МОБИЛЬНАЯ ПЛАВАЮЩАЯ ПАНЕЛЬ CTA ======= */
.mobile-cta{
  display:none;
  position:fixed;left:0;right:0;bottom:0;z-index:45;
  gap:10px;padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-top:1px solid var(--line);
  box-shadow:0 -8px 24px -12px rgba(2,165,164,.4);
}
.mobile-cta .btn{flex:1;padding:14px 12px;font-size:14px}
.mobile-cta__wa{
  background:#fff;color:var(--teal-dark);border:1.5px solid var(--teal);
}
.mobile-cta__wa:hover{color:var(--teal-dark)}

/* ======= ПЛАВАЮЩИЕ СОЦКНОПКИ ======= */
.floating-socials{
  position:fixed;right:24px;bottom:84px;
  display:flex;flex-direction:column;gap:10px;z-index:40;
}
.fs{
  width:48px;height:48px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow);color:#fff;
  transition:transform .25s;
}
.fs:hover{transform:scale(1.1) rotate(-8deg);color:#fff}
.fs--wa{background:linear-gradient(135deg, #25d366, #128c7e)}
.fs--tg{background:linear-gradient(135deg, #2aabee, #1a8acb)}
.fs .i{width:24px;height:24px}

/* ======= COOKIE ======= */
.cookie{
  position:fixed;left:24px;right:24px;bottom:24px;
  background:#fff;border-radius:var(--r-lg);
  box-shadow:var(--shadow-lg);
  border:1px solid var(--line);
  padding:20px 24px;z-index:80;
  max-width:720px;margin:0 auto;
  animation:slide-up .4s ease-out;
}
.cookie__inner{
  display:flex;align-items:center;gap:20px;flex-wrap:wrap;justify-content:space-between;
}
.cookie p{margin:0;font-size:13px;flex:1;min-width:280px;color:var(--ink-2)}
.cookie a{color:var(--teal-dark);text-decoration:underline}
.cookie__btns{display:flex;align-items:center;gap:14px}
.cookie__more{font-size:13px;font-weight:500}

/* ======= МОДАЛКА ======= */
[hidden]{display:none !important}
.modal{
  position:fixed;inset:0;z-index:100;
  display:flex;align-items:center;justify-content:center;
  padding:24px;
  animation:fade-in .2s ease-out;
}
.modal__overlay{
  position:absolute;inset:0;background:rgba(14,26,38,.6);
  backdrop-filter:blur(4px);
}
.modal__dialog{
  position:relative;
  background:#fff;border-radius:var(--r-lg);
  max-width:760px;width:100%;max-height:85vh;
  overflow-y:auto;
  box-shadow:var(--shadow-lg);
  animation:slide-up .3s ease-out;
}
.modal__close{
  position:sticky;top:16px;float:right;margin:16px 16px 0;
  width:40px;height:40px;border-radius:50%;
  background:var(--teal-soft);color:var(--teal-dark);
  border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;z-index:2;
}
.modal__close:hover{background:var(--teal);color:#fff}
.modal__content{
  padding:32px 40px 40px;clear:both;
}
.modal__content h2{font-size:28px;margin-bottom:16px}
.modal__content h3{font-size:18px;margin:24px 0 10px}
.modal__content p,
.modal__content li{font-size:15px;color:var(--ink-2);line-height:1.6}
.modal__content ul{margin:0 0 16px;padding-left:20px;list-style:disc}
.modal__content ul li{margin-bottom:6px}

/* ======= АНИМАЦИИ ПОЯВЛЕНИЯ ПРИ СКРОЛЛЕ ======= */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .7s ease-out, transform .7s ease-out}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.reveal-stagger > *{opacity:0;transform:translateY(20px);transition:opacity .6s ease-out, transform .6s ease-out}
.reveal-stagger.is-visible > *{opacity:1;transform:translateY(0)}
.reveal-stagger.is-visible > *:nth-child(1){transition-delay:.05s}
.reveal-stagger.is-visible > *:nth-child(2){transition-delay:.1s}
.reveal-stagger.is-visible > *:nth-child(3){transition-delay:.15s}
.reveal-stagger.is-visible > *:nth-child(4){transition-delay:.2s}
.reveal-stagger.is-visible > *:nth-child(5){transition-delay:.25s}
.reveal-stagger.is-visible > *:nth-child(6){transition-delay:.3s}
.reveal-stagger.is-visible > *:nth-child(7){transition-delay:.35s}
.reveal-stagger.is-visible > *:nth-child(8){transition-delay:.4s}

/* ======= АДАПТИВ ======= */
@media (max-width: 1100px){
  .nav{display:none}
  .header__cta .header__phone{display:none}
  .burger{display:flex}
  .services__grid,
  .why__grid,
  .steps__list{grid-template-columns:repeat(2, 1fr)}
  .step:nth-child(2)::after{display:none}
  .stats{grid-template-columns:repeat(2, 1fr);gap:24px}
  .footer__grid{grid-template-columns:1fr 1fr;gap:24px}
  .workshop__grid{grid-template-columns:repeat(4, 1fr);grid-auto-rows:180px}
  .workshop__cell--lg{grid-column:span 4;grid-row:span 2}
  .workshop__cell{grid-column:span 2}
  .works__grid{grid-template-columns:repeat(3, 1fr);grid-auto-rows:200px}
  .works__cell--wide{grid-column:span 2}
}

@media (max-width: 820px){
  .section{padding:70px 0}
  .hero{padding:50px 0 40px}
  .hero__inner{grid-template-columns:1fr;gap:40px;text-align:center}
  .hero__content{order:1}
  .hero__visual{order:2;height:380px}
  .hero__bullets{justify-content:center}
  .hero__lead{margin-left:auto;margin-right:auto}
  .badge{margin-left:auto;margin-right:auto}
  .reviews__grid{grid-template-columns:1fr}
  .contacts__grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .stats{padding:32px 24px}
  .stat__num{font-size:42px}
  .stat__suffix{font-size:24px}
  .section__title{font-size:32px}
  .step:nth-child(odd)::after{display:none}
  .prices__tabs{gap:6px}
  .tab{padding:10px 16px;font-size:13px}
  .step:not(:last-child)::after{display:none}
  .workshop__grid{grid-template-columns:repeat(2, 1fr);grid-auto-rows:160px;gap:12px}
  .workshop__cell,
  .workshop__cell--lg{grid-column:span 2;grid-row:auto}
  .workshop__cell--lg{grid-row:span 2}
  .works__grid{grid-template-columns:repeat(2, 1fr);grid-auto-rows:180px;gap:12px}
  .works__cell--wide,
  .works__cell--tall{grid-column:auto;grid-row:auto}
  .works__cell--wide{grid-column:span 2}
  .hero-badge--clock{left:-2%;top:4%}
  .hero-badge--shield{right:0%;bottom:4%}
  .mobile-cta{display:flex}
  body{padding-bottom:72px}
  .to-top{bottom:84px}
}

@media (max-width: 560px){
  .container{padding:0 18px}
  .header__inner{padding:12px 18px}
  .header__cta .btn--sm{display:none}
  .services__grid,
  .why__grid,
  .steps__list{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr 1fr}
  .hero__visual{height:340px}
  .hero-photo--main{width:82%;height:78%}
  .hero-photo--side{width:50%;height:38%}
  .hero-badge{padding:10px 12px;font-size:12px}
  .hero-badge .i{width:22px;height:22px}
  .floating-icon{width:44px;height:44px;border-radius:14px}
  .floating-icon .i{width:22px;height:22px}
  .contact-form,
  .contacts__info{padding:24px}
  .modal__content{padding:24px 24px 32px}
  .modal__content h2{font-size:22px}
  .floating-socials{right:14px;bottom:74px}
  .to-top{right:14px;bottom:84px}
  .cookie{left:14px;right:14px;bottom:14px;padding:16px 18px}
  .hero__title{font-size:34px}
  .price-list li{padding:14px 12px;font-size:14px;gap:12px}
  .price-list b{font-size:14px}
  .logo__tag{display:none}
}

/* ======= REDUCED MOTION ======= */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}


/* ======= МНОГОСТРАНИЧНИК: ДОБАВЛЕНО ======= */
.breadcrumbs{padding:18px 0 0;font-size:13px;color:var(--muted)}
.breadcrumbs ol{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin:0;padding:0}
.breadcrumbs li{display:flex;align-items:center;gap:8px}
.breadcrumbs li:not(:last-child)::after{content:'/';color:var(--line)}
.breadcrumbs a{color:var(--ink-2)}
.breadcrumbs a:hover{color:var(--teal-dark)}
.breadcrumbs span{color:var(--ink)}

.page-hero{padding:48px 0 8px;text-align:center}
.page-hero h1{font-size:clamp(30px,5vw,46px);margin-bottom:.3em}
.page-hero .page-hero__lead{max-width:760px;margin:0 auto;color:var(--ink-2);font-size:18px}

.prose{max-width:820px;margin:0 auto}
.prose h2{font-size:26px;margin:1.6em 0 .5em}
.prose h3{font-size:20px;margin:1.4em 0 .4em}
.prose p{margin:0 0 1em;color:var(--ink-2)}
.prose ul.dotted{margin:0 0 1.2em;display:grid;gap:10px}
.prose ul.dotted li{display:flex;gap:10px;align-items:flex-start;color:var(--ink-2)}
.prose ul.dotted li .i{color:var(--teal);margin-top:3px}
.prose strong{color:var(--ink)}

.geo-card{
  display:flex;gap:16px;align-items:flex-start;
  background:var(--bg-2);border:1px solid var(--line);
  border-radius:var(--r);padding:22px 24px;margin:24px auto;max-width:820px;
}
.geo-card .i{width:28px;height:28px;color:var(--teal);flex:none}
.geo-card b{display:block;font-family:var(--font-display);margin-bottom:4px}

/* ======= ФОРМА ЗАЯВКИ ======= */
.order__card{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;
  background:linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius:var(--r-lg);padding:48px 52px;color:#fff;
  position:relative;overflow:hidden;
}
.order__card::before{
  content:'';position:absolute;right:-80px;top:-80px;width:280px;height:280px;
  background:radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);border-radius:50%;
}
.order__text{position:relative;z-index:1}
.order__card .eyebrow{color:rgba(255,255,255,.85)}
.order__card .section__title{color:#fff;text-align:left;margin:0 0 14px}
.order__lead{color:rgba(255,255,255,.92);font-size:17px;margin:0 0 22px;line-height:1.6}
.order__phone{
  display:inline-flex;align-items:center;gap:10px;color:#fff;font-family:var(--font-display);
  font-size:22px;font-weight:600;
}
.order__phone .i{width:22px;height:22px}
.order__form{
  position:relative;z-index:1;background:#fff;border-radius:var(--r);
  padding:28px;display:flex;flex-direction:column;gap:14px;box-shadow:var(--shadow);
}
.order__field{display:flex;flex-direction:column;gap:6px}
.order__field label{font-size:13px;color:var(--muted);font-weight:600}
.order__form input{
  padding:13px 15px;border:1.5px solid var(--line);border-radius:12px;
  font-size:16px;font-family:inherit;color:var(--ink);transition:border-color .2s;
}
.order__form input:focus{outline:none;border-color:var(--teal)}
.order__form input.is-error{border-color:#e05656}
.order__note{font-size:12px;color:var(--muted);margin:2px 0 0;line-height:1.5}
.order__note a{color:var(--teal-dark);text-decoration:underline}
.order__msg{font-size:14px;margin-top:4px;display:none}
.order__msg.is-ok{display:block;color:#1a8a5a}
.order__msg.is-err{display:block;color:#c0392b}
.order__form.is-sent .order__field,
.order__form.is-sent #orderSubmit,
.order__form.is-sent .order__note{display:none}
@media(max-width:820px){
  .order__card{grid-template-columns:1fr;padding:32px 22px;gap:26px}
  .order__card .section__title{font-size:24px}
}
