/* =============================================================
   Гульназ Ермагамбетова — психолог | Актобе
   Design system v2 — «тёплая редакционная классика»
   Палитра и настроение взяты из фирменного флаера:
   крем + глубокий изумруд + золото + сериф + рукописный акцент
   ============================================================= */

:root {
  /* ink */
  --ink:        #17221f;
  --ink-2:      #3e4c48;
  --muted:      #7e8d89;
  --muted-2:    #a6b2ae;

  /* surface */
  --cream:      #faf7f1;
  --cream-2:    #f3ede2;
  --cream-3:    #e9dfd0;
  --white:      #ffffff;

  /* brand */
  --teal:       #35766e;
  --teal-deep:  #24564f;
  --teal-ink:   #13332f;
  --teal-soft:  #e6efec;
  --gold:       #c19a5b;
  --gold-soft:  #f0e5d0;
  --coral:      #dd7a5e;

  --line:       rgba(23,34,31,.11);
  --line-soft:  rgba(23,34,31,.06);

  /* type */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, 'Segoe UI', Arial, sans-serif;
  --hand:  'Caveat', 'Segoe Script', cursive;

  /* geometry */
  --r-sm: 10px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 38px;
  --container: 1240px;
  --gut: 28px;

  /* elevation */
  --sh-1: 0 2px 8px rgba(23,34,31,.04), 0 10px 30px -12px rgba(23,34,31,.10);
  --sh-2: 0 4px 14px rgba(23,34,31,.05), 0 24px 60px -22px rgba(23,34,31,.20);
  --sh-3: 0 40px 100px -30px rgba(23,34,31,.32);

  /* motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

::selection { background: var(--teal); color: #fff; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gut); }
.container--wide { max-width: 1560px; }

.section { position: relative; padding: clamp(72px, 9vw, 126px) 0; }
.section--tight { padding: clamp(52px, 6vw, 84px) 0; }
.section--cream { background: var(--cream-2); }
.section--ink { background: var(--teal-ink); color: #fff; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.12; letter-spacing: -.02em; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.02em;
}
h1.display { font-size: clamp(40px, 6.6vw, 82px); }
h2.display { font-size: clamp(30px, 4.4vw, 54px); }
.display em { font-style: italic; }

.italic-accent { font-family: var(--serif); font-style: italic; color: var(--teal); }
.italic-accent--gold { color: var(--gold); }

.h-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.h-eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; opacity: .5; }
.section--ink .h-eyebrow { color: var(--gold); }
.section__head--center .h-eyebrow::before { display: none; }

.section__head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 60px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head p { margin-top: 16px; color: var(--muted); font-size: 17px; }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  white-space: nowrap; cursor: pointer;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), color .3s;
  isolation: isolate;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--teal-deep);
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
  border-radius: inherit;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--teal); color: #fff; }
.btn--dark    { background: var(--ink); color: #fff; }
.btn--dark::before { background: var(--teal); }
.btn--gold    { background: var(--gold); color: #fff; }
.btn--gold::before { background: var(--teal-deep); }
.btn--ghost   { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { color: #fff; box-shadow: var(--sh-2); }
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--block { width: 100%; }
.btn__ic { display: inline-flex; transition: transform .4s var(--ease-out); }
.btn:hover .btn__ic { transform: translateX(4px); }

/* =============================================================
   PRELOADER + PROGRESS + CURSOR (только при включённом JS)
   ============================================================= */
.preloader { display: none; }
html.js .preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--teal-ink);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s;
}
html.js .preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark {
  font-family: var(--serif); font-size: clamp(22px, 4vw, 40px); color: var(--cream);
  letter-spacing: .04em; display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(14px);
  animation: preIn .8s var(--ease-out) .1s forwards;
}
.preloader__mark span { color: var(--gold); }
.preloader__bar {
  position: absolute; bottom: 0; left: 0; height: 2px; width: 0;
  background: var(--gold);
  animation: preBar 1s var(--ease) .1s forwards;
}
@keyframes preIn  { to { opacity: 1; transform: none; } }
@keyframes preBar { to { width: 100%; } }

.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 300; pointer-events: none;
}

.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  html.js .cursor {
    display: block; position: fixed; top: 0; left: 0; z-index: 9998;
    width: 34px; height: 34px; margin: -17px 0 0 -17px;
    border: 1.5px solid rgba(53,118,110,.5); border-radius: 50%;
    pointer-events: none;
    transition: width .3s var(--ease-out), height .3s var(--ease-out),
                margin .3s var(--ease-out), background .3s, border-color .3s, opacity .3s;
  }
  html.js .cursor.is-hot {
    width: 62px; height: 62px; margin: -31px 0 0 -31px;
    background: rgba(53,118,110,.12); border-color: transparent;
  }
  html.js .cursor-dot {
    display: block; position: fixed; top: 0; left: 0; z-index: 9998;
    width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px;
    background: var(--teal); border-radius: 50%; pointer-events: none;
  }
}

/* =============================================================
   SCROLL REVEAL (включается только с JS)
   ============================================================= */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
html.js [data-reveal="fade"]  { transform: none; }
html.js [data-reveal="left"]  { transform: translateX(-34px); }
html.js [data-reveal="right"] { transform: translateX(34px); }
html.js [data-reveal="zoom"]  { transform: scale(.95); }
html.js [data-reveal="mask"]  { opacity: 1; transform: none; clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease-out); transition-delay: var(--d, 0ms); }
html.js [data-reveal].is-in   { opacity: 1; transform: none; }
html.js [data-reveal="mask"].is-in { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

/* =============================================================
   PHOTO SYSTEM — красиво и с фото, и без него
   ============================================================= */
.photo {
  position: relative;
  overflow: hidden;
  width: 100%; height: 100%;
  background:
    radial-gradient(120% 90% at 30% 0%, var(--teal-soft), transparent 60%),
    linear-gradient(150deg, var(--cream-3), var(--cream-2) 55%, var(--teal-soft));
  isolation: isolate;
}
.photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  position: relative; z-index: 2;
  transition: transform 1.4s var(--ease-out);
}
.photo.is-empty img { display: none; }

/* фолбэк: монограмма + кольца */
.photo::before {
  content: attr(data-monogram);
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: clamp(46px, 7vw, 92px); font-style: italic;
  color: rgba(53,118,110,.32); letter-spacing: .06em;
}
.photo::after {
  content: ''; position: absolute; z-index: 1;
  width: 58%; aspect-ratio: 1; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(53,118,110,.18); border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(53,118,110,.05);
}
.photo:not(.is-empty)::before,
.photo:not(.is-empty)::after { display: none; }

.photo--zoom:hover img { transform: scale(1.05); }

/* =============================================================
   HEADER
   ============================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  padding: 8px 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .45s var(--ease-out);
}
.header.is-scrolled {
  background: rgba(250,247,241,.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line-soft), 0 12px 30px -22px rgba(23,34,31,.4);
}
.header.is-hidden { transform: translateY(-100%); }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 8px; }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--teal); color: var(--cream);
  font-family: var(--serif); font-style: italic; font-size: 18px;
  transition: transform .5s var(--ease-out), background .3s;
}
.logo:hover .logo__mark { transform: rotate(-10deg) scale(1.06); background: var(--teal-deep); }
.logo__txt { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name { font-family: var(--serif); font-size: 17px; font-weight: 500; white-space: nowrap; }
.logo__role { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; padding: 9px 13px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color .25s;
  white-space: nowrap;
}
.nav a::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 1.5px;
  background: var(--teal); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .4s var(--ease-out);
}
.nav a:hover, .nav a.is-active { color: var(--teal); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header__right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.lang { display: inline-flex; padding: 3px; border-radius: 999px; background: rgba(23,34,31,.06); gap: 2px; }
.lang__btn {
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--muted); transition: all .3s var(--ease);
}
.lang__btn:hover { color: var(--ink); }
.lang__btn.is-active { background: var(--white); color: var(--teal-deep); box-shadow: var(--sh-1); }

.header__tel { font-size: 14px; font-weight: 600; white-space: nowrap; transition: color .25s; }
.header__tel:hover { color: var(--teal); }

.burger { display: none; width: 46px; height: 46px; border-radius: 50%; position: relative; background: rgba(23,34,31,.06); flex-shrink: 0; }
.burger span {
  position: absolute; left: 14px; width: 18px; height: 1.7px; background: var(--ink); border-radius: 2px;
  transition: transform .45s var(--ease-out), opacity .3s;
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 28px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 140;
  background: var(--teal-ink); color: var(--cream);
  padding: 104px var(--gut) 36px;
  display: flex; flex-direction: column; gap: 2px;
  clip-path: circle(0% at calc(100% - 46px) 42px);
  visibility: hidden;
  transition: clip-path .7s var(--ease-out), visibility 0s .7s;
  overflow-y: auto;
}
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 46px) 42px); visibility: visible; transition: clip-path .7s var(--ease-out); }
.mobile-menu .mm-link {
  font-family: var(--serif); font-size: 29px; padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .3s;
  transition-delay: 0s;
}
.mobile-menu.is-open .mm-link { opacity: 1; transform: none; transition-delay: calc(.15s + var(--i, 0) * 55ms); }
.mobile-menu .mm-link:active { color: var(--gold); }
.mobile-menu .lang { background: rgba(255,255,255,.10); align-self: flex-start; margin-bottom: 20px; }
.mobile-menu .lang__btn { color: rgba(255,255,255,.65); }
.mobile-menu .lang__btn.is-active { background: var(--cream); color: var(--teal-ink); }
.mobile-menu__foot { margin-top: auto; padding-top: 26px; display: grid; gap: 12px; }
.mobile-menu__tel { font-size: 19px; font-weight: 600; color: var(--gold); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(120px, 15vw, 172px) 0 clamp(64px, 7vw, 96px);
  background:
    radial-gradient(90% 70% at 80% 10%, rgba(53,118,110,.10), transparent 62%),
    radial-gradient(70% 60% at 6% 88%, rgba(221,122,94,.07), transparent 60%),
    var(--cream);
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .45; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.20'/%3E%3C/svg%3E");
}
.hero__branch {
  position: absolute; top: 90px; left: -30px; width: clamp(120px, 16vw, 220px);
  color: rgba(53,118,110,.25); pointer-events: none;
  animation: floaty 11s ease-in-out infinite;
}
.hero__inner {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(36px, 5vw, 72px); align-items: center;
}

.hero__hand {
  font-family: var(--hand); font-size: clamp(22px, 2.6vw, 30px); font-weight: 500;
  color: var(--teal); margin-bottom: 14px; transform: rotate(-1.2deg);
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em { color: var(--teal); }

.hero__roles { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hero__role {
  padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 500;
  background: var(--white); color: var(--ink-2); box-shadow: inset 0 0 0 1px var(--line);
}
.hero__role--city { background: var(--teal-soft); color: var(--teal-deep); box-shadow: inset 0 0 0 1px rgba(53,118,110,.2); }

.hero__tagline { font-size: clamp(16px, 1.6vw, 18.5px); color: var(--ink-2); max-width: 52ch; margin-bottom: 30px; line-height: 1.7; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; margin-bottom: 34px; }

.hero__note {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 17px 21px; border-radius: var(--r);
  background: linear-gradient(120deg, var(--gold-soft), rgba(255,255,255,.55));
  box-shadow: inset 0 0 0 1px rgba(193,154,91,.28);
  max-width: 480px;
}
.hero__note > svg { flex-shrink: 0; margin-top: 2px; }
.hero__note b { display: block; font-size: 15px; margin-bottom: 3px; }
.hero__note span span { font-size: 13.5px; color: var(--ink-2); }

/* hero visual */
.hero__visual { position: relative; }
.hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 300px 300px var(--r-xl) var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.hero__arc {
  position: absolute; inset: -16px;
  border: 1px solid rgba(53,118,110,.24);
  border-radius: 320px 320px 54px 54px;
  pointer-events: none;
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-11px) } }

.hero__chip {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: 12px;
  padding: 13px 19px; border-radius: 999px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  box-shadow: var(--sh-2), inset 0 0 0 1px rgba(255,255,255,.6);
  white-space: nowrap;
}
.hero__chip b { display: block; font-size: 17px; font-family: var(--serif); line-height: 1.1; }
.hero__chip span span { font-size: 12px; color: var(--muted); display: block; line-height: 1.3; }
.hero__chip-ic {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  background: var(--teal); color: #fff;
}
.hero__chip--a { top: 10%; left: -44px; animation: floaty 7s ease-in-out infinite; }
.hero__chip--b { bottom: 18%; right: -38px; animation: floaty 8.5s ease-in-out .8s infinite; }
.hero__chip--c { bottom: -16px; left: 6%; animation: floaty 10s ease-in-out .4s infinite; }
.hero__chip--c .hero__chip-ic { background: var(--gold); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  z-index: 4;
}
.hero__scroll i { display: block; width: 1px; height: 38px; background: linear-gradient(var(--teal), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after {
  content: ''; position: absolute; top: -38px; left: 0; width: 1px; height: 38px; background: var(--gold);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine { to { top: 38px } }

/* вход героя после прелоадера */
html.js body:not(.is-ready) .hero__text > *,
html.js body:not(.is-ready) .hero__visual { opacity: 0; }
body.is-ready .hero__text > * { animation: heroUp .9s var(--ease-out) both; }
body.is-ready .hero__text > *:nth-child(1) { animation-delay: .05s; }
body.is-ready .hero__text > *:nth-child(2) { animation-delay: .14s; }
body.is-ready .hero__text > *:nth-child(3) { animation-delay: .23s; }
body.is-ready .hero__text > *:nth-child(4) { animation-delay: .32s; }
body.is-ready .hero__text > *:nth-child(5) { animation-delay: .41s; }
body.is-ready .hero__text > *:nth-child(6) { animation-delay: .5s; }
body.is-ready .hero__visual { animation: heroZoom 1.1s var(--ease-out) .2s both; }
@keyframes heroUp   { from { opacity: 0; transform: translateY(26px) } to { opacity: 1; transform: none } }
@keyframes heroZoom { from { opacity: 0; transform: scale(.96) translateY(14px) } to { opacity: 1; transform: none } }

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee {
  overflow: hidden; padding: 20px 0;
  background: var(--teal-ink); color: rgba(255,255,255,.92);
}
.marquee__track { display: flex; width: max-content; animation: marq 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 32px; padding-right: 32px; }
.marquee__item { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2vw, 25px); white-space: nowrap; opacity: .93; }
.marquee__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes marq { to { transform: translateX(-50%) } }

/* =============================================================
   STATS
   ============================================================= */
.stats { background: var(--white); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(26px, 3.2vw, 42px) 24px; position: relative; text-align: center; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
.stat__num {
  font-family: var(--serif); font-size: clamp(34px, 4.2vw, 54px); line-height: 1;
  color: var(--teal); margin-bottom: 10px; letter-spacing: -.02em;
}
.stat__unit { font-size: .45em; }
.stat__num--sm { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; padding-top: .35em; }
.stat__label { font-size: 13.5px; color: var(--muted); max-width: 24ch; margin-inline: auto; }

/* =============================================================
   BENTO — услуги
   ============================================================= */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile {
  position: relative; overflow: hidden;
  padding: 28px 24px;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line-soft), var(--sh-1);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
  min-height: 186px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
}
.tile:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px rgba(53,118,110,.22), var(--sh-2); }

.tile__ic {
  width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; flex-shrink: 0;
  background: var(--teal-soft); color: var(--teal);
  transition: transform .5s var(--ease-out), background .4s, color .4s;
}
.tile:hover .tile__ic { transform: rotate(-8deg) scale(1.08); background: var(--teal); color: #fff; }
.tile h3 { font-size: 17px; font-weight: 600; letter-spacing: -.015em; line-height: 1.25; }
.tile p { font-size: 13.5px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

.tile--feature {
  grid-column: span 2; grid-row: span 2;
  background: linear-gradient(155deg, var(--teal), var(--teal-deep));
  color: #fff; justify-content: space-between;
  box-shadow: var(--sh-2);
  min-height: 300px;
  padding: 34px 30px;
}
.tile--feature h3 { font-family: var(--serif); font-size: clamp(23px, 2.5vw, 31px); font-weight: 500; line-height: 1.15; }
.tile--feature p { color: rgba(255,255,255,.8); font-size: 15px; max-width: 38ch; margin-top: 12px; }
.tile--feature .tile__ic { background: rgba(255,255,255,.14); color: #fff; }
.tile--feature:hover .tile__ic { background: var(--gold); }
.tile__deco {
  position: absolute; right: -60px; top: -60px; width: 250px; height: 250px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 0 0 32px rgba(255,255,255,.05);
  pointer-events: none;
}

/* =============================================================
   ABOUT
   ============================================================= */
.about__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5.5vw, 84px); align-items: center; }
.about__media { position: relative; }
.about__frame {
  aspect-ratio: 3 / 4; border-radius: var(--r-xl) var(--r-xl) 220px 220px;
  overflow: hidden; box-shadow: var(--sh-3);
}
.about__stamp {
  position: absolute; right: -26px; bottom: 46px; z-index: 4;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: grid; place-items: center; text-align: center;
  box-shadow: var(--sh-2);
  padding: 12px;
}
.about__stamp b { display: block; font-family: var(--serif); font-size: 30px; line-height: 1; }
.about__stamp span span { font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; opacity: .92; display: block; }
.about__stamp-ring { position: absolute; inset: -11px; border: 1px dashed rgba(193,154,91,.55); border-radius: 50%; animation: spin 24s linear infinite; }
@keyframes spin { to { transform: rotate(360deg) } }

.about__quote {
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 27px); font-style: italic;
  line-height: 1.42; color: var(--teal-deep); margin: 22px 0 20px;
  padding-left: 22px; border-left: 2px solid var(--gold);
}
.about__p { color: var(--ink-2); margin-bottom: 14px; line-height: 1.75; }

.pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.pill {
  padding: 9px 17px; border-radius: 999px; font-size: 13px; font-weight: 500;
  background: var(--teal-soft); color: var(--teal-deep);
  transition: transform .35s var(--ease-out), background .3s, color .3s;
}
.pill:hover { transform: translateY(-3px); background: var(--teal); color: #fff; }

.about__sign { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.about__sign-name { font-family: var(--hand); font-size: 32px; color: var(--teal); line-height: 1; }
.about__sign-role { font-size: 12px; color: var(--muted); letter-spacing: .07em; text-transform: uppercase; }

/* =============================================================
   SPACE — фото-настроение
   ============================================================= */
.space-grid {
  display: grid; grid-template-columns: 1.05fr .95fr .95fr; grid-template-rows: auto auto;
  gap: 16px;
}
.space-cell { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); aspect-ratio: 1; margin: 0; }
.space-cell--tall { grid-row: 1 / 3; aspect-ratio: auto; }
.space-cell .photo { position: absolute; inset: 0; }
.space-quote {
  grid-column: 2 / 4; grid-row: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(24px, 3vw, 42px);
  border-radius: var(--r-lg);
  background: var(--teal-soft);
}
.space-quote__hand { font-family: var(--hand); font-size: clamp(26px, 3vw, 38px); color: var(--teal); line-height: 1.1; margin-bottom: 12px; transform: rotate(-1deg); }
.space-quote__text { color: var(--ink-2); font-size: 15.5px; max-width: 52ch; line-height: 1.7; }

/* =============================================================
   STEPS
   ============================================================= */
.steps { display: grid; }
.step {
  display: grid; grid-template-columns: 96px 1fr; gap: clamp(20px, 3vw, 46px);
  padding: clamp(26px, 3.4vw, 40px) 0;
  border-top: 1px solid rgba(255,255,255,.12);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.step__n { font-family: var(--serif); font-style: italic; font-size: clamp(36px, 4.4vw, 58px); color: var(--gold); line-height: .9; }
.step__body h3 { font-size: clamp(20px, 2.1vw, 25px); font-family: var(--serif); font-weight: 500; margin-bottom: 10px; }
.step__body p { color: rgba(255,255,255,.7); max-width: 64ch; line-height: 1.7; font-size: 15.5px; }
.step__tag {
  display: inline-block; margin-top: 14px; padding: 6px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .03em;
  background: rgba(193,154,91,.16); color: var(--gold);
}

/* =============================================================
   USE CASES
   ============================================================= */
.uc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 26px; }
.uc {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 19px 21px; border-radius: var(--r);
  background: var(--white); box-shadow: inset 0 0 0 1px var(--line-soft);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.uc:hover { transform: translateX(6px); box-shadow: inset 0 0 0 1px rgba(53,118,110,.26), var(--sh-1); }
.uc__mark {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--teal-soft); color: var(--teal); display: grid; place-items: center;
  transition: background .35s, color .35s;
}
.uc:hover .uc__mark { background: var(--teal); color: #fff; }
.uc p { font-size: 15.5px; font-weight: 500; line-height: 1.45; }

/* =============================================================
   BENEFITS
   ============================================================= */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.benefit {
  padding: 30px 25px; border-radius: var(--r-lg);
  background: var(--white); box-shadow: inset 0 0 0 1px var(--line-soft);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  position: relative; overflow: hidden;
}
.benefit::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .6s var(--ease-out);
}
.benefit:hover { transform: translateY(-8px); box-shadow: var(--sh-2); }
.benefit:hover::before { transform: scaleX(1); }
.benefit__ic { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); margin-bottom: 18px; }
.benefit h3 { font-size: 16.5px; margin-bottom: 9px; }
.benefit p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* =============================================================
   REVIEWS
   ============================================================= */
.reviews__viewport { overflow: hidden; }
.reviews__track { display: flex; transition: transform .8s var(--ease-out); }
.review { min-width: 100%; padding: 4px; }
.review__card {
  background: var(--white); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 50px);
  box-shadow: var(--sh-1), inset 0 0 0 1px var(--line-soft);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3vw, 40px); align-items: center;
}
.review__mark { font-family: var(--serif); font-size: 96px; color: var(--gold-soft); line-height: .7; user-select: none; }
.review__stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 14px; }
.review__quote { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 1.9vw, 23px); line-height: 1.5; color: var(--ink); margin-bottom: 22px; }
.review__author { display: flex; align-items: center; gap: 14px; }
.review__avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-soft); color: var(--teal-deep);
  display: grid; place-items: center; font-family: var(--serif); font-size: 19px;
}
.review__name b { display: block; font-size: 15px; }
.review__name span { font-size: 13px; color: var(--muted); }

.reviews__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.rbtn {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line), var(--sh-1);
  transition: all .35s var(--ease-out);
}
.rbtn:hover { background: var(--teal); color: #fff; transform: scale(1.08); box-shadow: var(--sh-2); }
.rdots { display: flex; gap: 8px; }
.rdot { width: 7px; height: 7px; border-radius: 999px; background: var(--line); border: 0; padding: 0; cursor: pointer; transition: all .45s var(--ease-out); }
.rdot.is-active { width: 26px; background: var(--teal); }

/* =============================================================
   CASES
   ============================================================= */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.case {
  position: relative; overflow: hidden; text-align: left;
  border-radius: var(--r-lg); background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line-soft);
  padding: 28px 25px 24px;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  min-height: 196px; display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer;
}
.case::after {
  content: ''; position: absolute; right: -50px; bottom: -50px; width: 150px; height: 150px; border-radius: 50%;
  background: var(--teal-soft); transition: transform .7s var(--ease-out); z-index: 0;
}
.case:hover { transform: translateY(-7px); box-shadow: var(--sh-2); }
.case:hover::after { transform: scale(3.6); }
.case > * { position: relative; z-index: 1; }
.case__n { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold); letter-spacing: .08em; }
.case h3 { font-size: 19px; margin-top: 12px; line-height: 1.3; }
.case__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13.5px; font-weight: 600; color: var(--teal); }
.case__more svg { transition: transform .4s var(--ease-out); }
.case:hover .case__more svg { transform: translateX(5px); }

/* =============================================================
   INSTAGRAM
   ============================================================= */
.ig__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ig-cell {
  position: relative; aspect-ratio: 1; border-radius: var(--r); overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line-soft);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  display: block;
}
.ig-cell:hover { transform: scale(1.05) rotate(-1.2deg); box-shadow: var(--sh-2); z-index: 2; }
.ig-cell .photo { position: absolute; inset: 0; }
.ig-cell .photo::before { font-size: 30px; }
.ig-cell .photo::after { display: none; }
.ig-cell__ov {
  position: absolute; inset: 0; z-index: 3; display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(53,118,110,.85), rgba(19,51,47,.9));
  color: #fff; opacity: 0; transition: opacity .4s;
}
.ig-cell:hover .ig-cell__ov { opacity: 1; }

/* =============================================================
   FAQ
   ============================================================= */
.faq { max-width: 880px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 24px 4px; text-align: left;
  font-size: clamp(16px, 1.7vw, 18.5px); font-weight: 500; letter-spacing: -.01em;
  transition: color .3s;
}
.faq__q:hover { color: var(--teal); }
.faq__ic {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; position: relative;
  background: var(--teal-soft); transition: background .4s, transform .5s var(--ease-out);
}
.faq__ic::before, .faq__ic::after {
  content: ''; position: absolute; left: 50%; top: 50%; background: var(--teal);
  transform: translate(-50%,-50%); transition: transform .45s var(--ease-out), background .3s;
}
.faq__ic::before { width: 13px; height: 1.7px; }
.faq__ic::after  { width: 1.7px; height: 13px; }
.faq__item.is-open .faq__ic { background: var(--teal); transform: rotate(180deg); }
.faq__item.is-open .faq__ic::before, .faq__item.is-open .faq__ic::after { background: #fff; }
.faq__item.is-open .faq__ic::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .6s var(--ease-out); }
.faq__a-in { padding: 0 60px 26px 4px; color: var(--ink-2); line-height: 1.75; }

/* =============================================================
   CONTACTS
   ============================================================= */
.contact__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 4.5vw, 64px); align-items: start; }

.contact__aside { position: sticky; top: 104px; }
.contact__card {
  padding: 30px; border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--teal), var(--teal-deep));
  color: #fff; box-shadow: var(--sh-2);
  position: relative; overflow: hidden;
}
.contact__card::after {
  content: ''; position: absolute; right: -70px; top: -70px; width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); box-shadow: 0 0 0 30px rgba(255,255,255,.05);
  pointer-events: none;
}
.contact__card h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 16px; }
.contact__row { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.14); position: relative; z-index: 1; }
.contact__row:first-of-type { border-top: 0; }
.contact__row-ic { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.14); display: grid; place-items: center; flex-shrink: 0; }
.contact__row b { display: block; font-size: 15px; }
.contact__row span span { font-size: 13px; color: rgba(255,255,255,.72); display: block; }
.contact__row a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact__socials { display: flex; gap: 10px; margin-top: 20px; position: relative; z-index: 1; }

.soc {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.13); color: #fff;
  transition: all .4s var(--ease-out);
}
.soc:hover { background: #fff; color: var(--teal-deep); transform: translateY(-4px) scale(1.06); }

.forms { display: grid; gap: 18px; }
.form {
  padding: clamp(26px, 3.2vw, 40px); border-radius: var(--r-lg);
  background: var(--white); box-shadow: inset 0 0 0 1px var(--line-soft), var(--sh-1);
}
.form h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 6px; }
.form__sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.field { position: relative; margin-bottom: 13px; }
.field input, .field textarea {
  width: 100%; padding: 16px 18px;
  border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--cream); font-size: 15px;
  transition: border-color .3s, background .3s, box-shadow .3s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 4px rgba(53,118,110,.10);
}
.field.is-error input, .field.is-error textarea { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(221,122,94,.10); }
.field__err { display: none; font-size: 12.5px; color: var(--coral); margin-top: 6px; padding-left: 4px; }
.field.is-error .field__err { display: block; }

.form__note {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 16px; border-radius: var(--r-sm); margin: 4px 0 16px;
  background: var(--gold-soft); font-size: 13.5px; color: #6d5730; line-height: 1.55;
}
.form__note svg { flex-shrink: 0; margin-top: 1px; }

.checkbox { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--muted); margin-bottom: 18px; cursor: pointer; line-height: 1.5; }
.checkbox input { width: 18px; height: 18px; accent-color: var(--teal); flex-shrink: 0; margin-top: 1px; cursor: pointer; }

.form__ok { display: none; text-align: center; padding: 20px; }
.form.is-sent .form__ok { display: block; }
.form.is-sent .form__body { display: none; }
.form__ok-ic {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--teal-soft); color: var(--teal); display: grid; place-items: center;
  animation: pop .6s var(--ease-out);
}
@keyframes pop { 0% { transform: scale(.5); opacity: 0 } 100% { transform: scale(1); opacity: 1 } }
.form__ok h4 { font-family: var(--serif); font-size: 23px; font-weight: 500; margin-bottom: 8px; }
.form__ok p { font-size: 14.5px; color: var(--muted); }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--teal-ink); color: rgba(255,255,255,.72); padding: clamp(54px, 7vw, 84px) 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand { font-family: var(--serif); font-size: 25px; color: #fff; margin-bottom: 12px; }
.footer__desc { font-size: 14px; line-height: 1.7; max-width: 36ch; }
.footer__col h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.footer__col a { display: block; padding: 6px 0; font-size: 14.5px; transition: color .25s, transform .35s var(--ease-out); }
.footer__col a:hover { color: #fff; transform: translateX(4px); }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.footer__divider { height: 1px; background: rgba(255,255,255,.10); margin: 44px 0 22px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }

/* =============================================================
   MOBILE CTA
   ============================================================= */
.mcta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 120;
  display: none; gap: 10px; align-items: center;
  padding: 10px; border-radius: 999px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: var(--sh-2), inset 0 0 0 1px rgba(255,255,255,.7);
  transform: translateY(160%);
  transition: transform .6s var(--ease-out);
}
.mcta.is-vis { transform: translateY(0); }
.mcta__main { flex: 1; padding: 15px 20px; font-size: 15px; }
.mcta__ic { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.mcta__ic--ig { background: linear-gradient(45deg, #f09433, #dc2743 45%, #bc1888); }
.mcta__ic--wa { background: #25d366; }

/* =============================================================
   MODAL
   ============================================================= */
.modal { position: fixed; inset: 0; z-index: 400; display: none; }
.modal.is-open { display: block; }
.modal__bd { position: absolute; inset: 0; background: rgba(19,51,47,.55); backdrop-filter: blur(6px); animation: fadeIn .35s ease; }
.modal__box {
  position: relative; z-index: 2; max-width: 640px; margin: 7vh auto 0;
  background: var(--white); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--sh-3); animation: modalIn .5s var(--ease-out);
  max-height: 85vh; overflow-y: auto;
}
@keyframes fadeIn { from { opacity: 0 } }
@keyframes modalIn { from { opacity: 0; transform: translateY(28px) scale(.97) } }
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream-2); display: grid; place-items: center; font-size: 22px; line-height: 1;
  transition: background .3s, color .3s, transform .4s var(--ease-out);
}
.modal__close:hover { background: var(--teal); color: #fff; transform: rotate(90deg); }
.modal__tag { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--gold-soft); color: #6d5730; font-size: 12px; font-weight: 600; margin-bottom: 16px; }
.modal__box h3 { font-family: var(--serif); font-size: 27px; font-weight: 500; margin-bottom: 16px; }
.modal__box p { color: var(--ink-2); line-height: 1.75; margin-bottom: 14px; }
.modal__res { padding: 16px 20px; border-radius: var(--r-sm); background: var(--teal-soft); font-size: 14.5px; color: var(--teal-ink); }
.modal__res b { display: block; margin-bottom: 4px; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .nav { display: none; }
  .header__tel { display: none; }
  .header__right .btn { display: none; }
  .burger { display: block; }
  .logo__name { font-size: 15px; }

  .hero__inner { grid-template-columns: 1fr; gap: 52px; }
  .hero__visual { max-width: 430px; margin-inline: auto; width: 100%; }
  .hero__scroll { display: none; }
  .hero__branch { display: none; }

  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }

  .contact__inner { grid-template-columns: 1fr; }
  .contact__aside { position: static; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--feature { grid-column: span 2; grid-row: auto; min-height: 240px; }

  .benefits { grid-template-columns: repeat(2, 1fr); }
  .cases { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }

  .space-grid { grid-template-columns: 1fr 1fr; }
  .space-cell--tall { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16 / 10; }
  .space-quote { grid-column: 1 / 3; grid-row: auto; }
}

@media (max-width: 720px) {
  :root { --gut: 18px; }

  .header__right .lang { display: none; } /* переключатель есть в мобильном меню */

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; }
  .stat { border-top: 1px solid var(--line); }
  .stats__grid > .stat:nth-child(-n+2) { border-top: 0; }

  .uc-grid { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .tile--feature { grid-column: auto; }
  .tile { min-height: 0; }

  .review__card { grid-template-columns: 1fr; }
  .review__mark { display: none; }

  .step { grid-template-columns: 1fr; gap: 8px; }

  .footer__top { grid-template-columns: 1fr; gap: 28px; }

  .mcta { display: flex; }
  body { padding-bottom: 84px; }

  .hero__chip--a { left: -6px; top: 5%; padding: 10px 15px; }
  .hero__chip--b { right: -4px; bottom: 12%; padding: 10px 15px; }
  .hero__chip--c { display: none; }
  .hero__note { max-width: none; }

  .about__stamp { right: 6px; width: 106px; height: 106px; bottom: 30px; }
  .about__stamp b { font-size: 24px; }

  .faq__a-in { padding-right: 10px; }
  .modal__box { margin: 4vh 14px 0; }

  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .space-cell--tall { grid-column: 1 / 3; }
}
