/* ГОВОРУНЧИК — friendly mascot logoped landing
   Palette: mint #E9F5EF, white, ink #143B33, grass #2E9E5B, sun #FFC93C, coral #FF7A6B
   Fonts: Quicksand (display 600/700), Karla (body 400/500/700) */

:root {
  --mint: #E9F5EF;
  --mint-deep: #D5ECE0;
  --white: #FFFFFF;
  --ink: #143B33;
  --ink-soft: #3A5C54;
  --grass: #2E9E5B;
  --grass-deep: #237D47;
  --sun: #FFC93C;
  --coral: #FF7A6B;
  --line: #C9E4D6;
  --shadow-sm: 0 4px 16px rgba(20, 59, 51, 0.08);
  --shadow-md: 0 10px 34px rgba(20, 59, 51, 0.12);
  --shadow-lg: 0 22px 60px rgba(20, 59, 51, 0.16);
  --r-card: 28px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: "Karla", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--mint);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 3px solid var(--grass);
  outline-offset: 3px;
  border-radius: 6px;
}

.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 16px;
  padding: 15px 28px; border-radius: var(--r-pill); border: none; cursor: pointer;
  text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  min-height: 48px; line-height: 1;
}
.btn-primary { background: var(--grass); color: #fff; box-shadow: 0 8px 22px rgba(46,158,91,.32); }
.btn-primary:hover { background: var(--grass-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(46,158,91,.4); }
.btn-sun { background: var(--sun); color: var(--ink); box-shadow: 0 8px 22px rgba(255,201,60,.4); }
.btn-sun:hover { background: #f5bd28; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--grass); color: var(--grass-deep); transform: translateY(-2px); }
.btn-tg { background: #0088cc; color: #fff; box-shadow: 0 8px 22px rgba(0,136,204,.3); }
.btn-tg:hover { background: #0077b3; transform: translateY(-2px); }
.btn-ig { background: linear-gradient(120deg,#f9ce34,#ee2a7b,#6228d7); color:#fff; }
.btn-ig:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn .icon { width: 20px; height: 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(233,245,239,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(20,59,51,.06); background: rgba(233,245,239,.95); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 21px; color: var(--ink); }
.brand .owl-mark { width: 42px; height: 42px; flex: none; }
.brand b { color: var(--grass-deep); letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: 15.5px; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--grass); border-radius: 2px; transition: width .25s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* burger */
.burger {
  display: none; width: 48px; height: 48px; border: 2px solid var(--line);
  background: #fff; border-radius: 14px; cursor: pointer; position: relative; flex: none;
}
.burger span { position: absolute; left: 13px; right: 13px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform .34s var(--ease), opacity .25s; }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile panel */
.mobile-menu {
  position: fixed; inset: 76px 0 0 0; z-index: 55;
  background: var(--mint);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .42s var(--ease);
  padding: 30px 22px 50px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.menu-open .mobile-menu { clip-path: inset(0 0 0 0); }
.mobile-menu a {
  text-decoration: none; font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 26px;
  color: var(--ink); padding: 14px 8px; border-bottom: 1px dashed var(--line);
  opacity: 0; transform: translateY(14px);
}
.menu-open .mobile-menu a { animation: slideIn .5s var(--ease) forwards; animation-delay: calc(var(--i) * 60ms + 100ms); }
@keyframes slideIn { to { opacity: 1; transform: translateY(0); } }
.mobile-menu .btn { margin-top: 18px; width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; text-align: center; padding: 56px 0 70px; overflow: hidden; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0; filter: blur(2px);
}
.hero::before { width: 340px; height: 340px; background: radial-gradient(circle, rgba(255,201,60,.32), transparent 70%); top: -90px; right: -70px; }
.hero::after { width: 300px; height: 300px; background: radial-gradient(circle, rgba(46,158,91,.18), transparent 70%); bottom: -60px; left: -80px; }
.hero .wrap { position: relative; z-index: 1; }
.hero-mascot { width: 132px; height: 132px; margin: 0 auto 22px; animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--grass-deep);
  font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .02em;
  padding: 8px 18px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
.hero h1 { font-size: clamp(34px, 6vw, 64px); max-width: 16ch; margin: 0 auto 22px; }
.hero h1 .hl { color: var(--grass); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px; background: var(--sun); opacity: .5; border-radius: 8px; z-index: -1; }
.hero-lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--ink-soft); max-width: 56ch; margin: 0 auto 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 50px; }

/* photo bubbles */
.bubbles { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.bubble {
  width: clamp(78px, 13vw, 120px); height: clamp(78px, 13vw, 120px);
  border-radius: 50%; overflow: hidden; border: 5px solid #fff; box-shadow: var(--shadow-md);
  position: relative;
}
.bubble img { width: 100%; height: 100%; object-fit: cover; }
.bubble:nth-child(odd) { border-color: var(--sun); }
.bubble:nth-child(3n) { border-color: var(--grass); }
.bubble.big { width: clamp(104px, 17vw, 168px); height: clamp(104px, 17vw, 168px); }

/* ---------- Section base ---------- */
section { padding: 74px 0; }
.sec-head { text-align: center; max-width: 64ch; margin: 0 auto 48px; }
.sec-tag {
  display: inline-block; font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .04em; color: var(--grass-deep); background: var(--mint-deep);
  padding: 6px 16px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.sec-head h2 { font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 14px; }
.sec-head p { color: var(--ink-soft); font-size: 18px; }
.bg-white { background: var(--white); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.1fr; gap: 50px; align-items: center; }
.about-photo { position: relative; }
.about-photo .ph {
  border-radius: 36px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  border: 6px solid #fff;
}
.about-photo .ph img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .badge {
  position: absolute; bottom: -22px; right: -10px; background: var(--sun); color: var(--ink);
  border-radius: 22px; padding: 14px 20px; box-shadow: var(--shadow-md); text-align: center;
  font-family: "Quicksand", sans-serif;
}
.about-photo .badge b { display: block; font-size: 28px; line-height: 1; }
.about-photo .badge span { font-size: 13px; font-weight: 500; }
.about-text h2 { font-size: clamp(28px, 4.2vw, 42px); margin-bottom: 18px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.about-text p strong { color: var(--ink); }
.about-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.stat {
  background: var(--mint); border-radius: 20px; padding: 18px 22px; flex: 1; min-width: 130px;
  border: 1px dashed var(--line);
}
.stat b { display: block; font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 32px; color: var(--grass); line-height: 1; }
.stat span { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Cards grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border-radius: var(--r-card); padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); border: 1px solid var(--line);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-ic {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center;
  background: var(--mint); color: var(--grass-deep); margin-bottom: 18px;
}
.card-ic .icon { width: 28px; height: 28px; stroke-width: 1.6; }
.card:nth-child(2n) .card-ic { background: #FFF3D2; color: #b5821a; }
.card:nth-child(3n) .card-ic { background: #FFE3DE; color: #d8503f; }
.card h3 { font-size: 21px; margin-bottom: 9px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Age groups ---------- */
.ages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.age {
  background: #fff; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.age:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.age-ph { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.age-ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.age:hover .age-ph img { transform: scale(1.06); }
.age-ph .tag {
  position: absolute; top: 14px; left: 14px; background: rgba(20,59,51,.82); color: #fff;
  font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 14px; padding: 6px 14px; border-radius: var(--r-pill);
}
.age-body { padding: 24px 24px 28px; }
.age-body h3 { font-size: 20px; margin-bottom: 10px; }
.age-body ul { list-style: none; }
.age-body li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); font-size: 15.5px; padding: 5px 0; }
.age-body li .icon { width: 19px; height: 19px; color: var(--grass); margin-top: 3px; stroke-width: 2.2; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; text-align: center; padding: 12px 10px; }
.step-num {
  width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%; background: #fff;
  border: 3px dashed var(--grass); display: grid; place-items: center;
  font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 28px; color: var(--grass-deep);
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 18.5px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Tariffs ---------- */
.tariffs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: #fff; border-radius: var(--r-card); padding: 34px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); display: flex; flex-direction: column; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan.popular { border: 2px solid var(--grass); box-shadow: var(--shadow-md); transform: scale(1.02); }
.plan.popular:hover { transform: scale(1.02) translateY(-5px); }
.plan .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--sun); color: var(--ink); font-family: "Quicksand", sans-serif; font-weight: 700;
  font-size: 13px; padding: 6px 18px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); white-space: nowrap;
}
.plan h3 { font-size: 24px; margin-bottom: 6px; }
.plan .price { font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 42px; color: var(--grass-deep); margin: 8px 0 4px; }
.plan .price span { font-size: 17px; color: var(--ink-soft); font-weight: 500; }
.plan .plan-sub { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }
.plan ul { list-style: none; margin-bottom: 26px; flex: 1; }
.plan li { display: flex; gap: 11px; align-items: flex-start; padding: 8px 0; font-size: 15.5px; color: var(--ink); border-bottom: 1px dashed var(--line); }
.plan li:last-child { border-bottom: none; }
.plan li .icon { width: 20px; height: 20px; color: var(--grass); margin-top: 2px; stroke-width: 2.2; }
.plan .btn { width: 100%; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review {
  background: #fff; border-radius: var(--r-card); padding: 28px 28px 26px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); position: relative;
}
.review .quote { font-size: 54px; font-family: "Quicksand", sans-serif; color: var(--mint-deep); line-height: .6; position: absolute; top: 24px; right: 26px; }
.review .stars { display: flex; gap: 3px; color: var(--sun); margin-bottom: 14px; }
.review .stars .icon { width: 18px; height: 18px; fill: var(--sun); stroke: var(--sun); }
.review p { color: var(--ink-soft); margin-bottom: 18px; font-size: 16px; }
.review .who { display: flex; align-items: center; gap: 13px; }
.review .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grass); color: #fff; display: grid; place-items: center; font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 18px; flex: none; }
.review .who b { display: block; font-family: "Quicksand", sans-serif; font-size: 16px; }
.review .who span { font-size: 14px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { background: #fff; border-radius: 20px; margin-bottom: 14px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 18px; color: var(--ink);
}
.faq-toggle { width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--mint); display: grid; place-items: center; position: relative; transition: background .25s, transform .3s var(--ease); }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; background: var(--grass-deep); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-toggle::before { width: 14px; height: 2.5px; }
.faq-toggle::after { width: 2.5px; height: 14px; }
.faq-item[aria-expanded="true"] .faq-toggle { background: var(--grass); transform: rotate(135deg); }
.faq-item[aria-expanded="true"] .faq-toggle::before,
.faq-item[aria-expanded="true"] .faq-toggle::after { background: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 24px 24px; color: var(--ink-soft); font-size: 16px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; border-radius: 36px; padding: 56px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(255,201,60,.22), transparent 70%); top: -80px; right: -50px; }
.cta-band .cmark { width: 76px; height: 76px; margin: 0 auto 20px; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 52ch; margin: 0 auto 28px; font-size: 17px; position: relative; }
.cta-band .row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--white); border-top: 1px solid var(--line); padding: 56px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 38px; }
.foot-brand .brand { margin-bottom: 14px; }
.foot-brand p { color: var(--ink-soft); font-size: 15px; max-width: 38ch; }
.foot-col h4 { font-family: "Quicksand", sans-serif; font-size: 16px; margin-bottom: 14px; color: var(--ink); }
.foot-col a { display: block; text-decoration: none; color: var(--ink-soft); font-size: 15px; padding: 5px 0; transition: color .2s; }
.foot-col a:hover { color: var(--grass-deep); }
.foot-soc { display: flex; gap: 12px; margin-top: 6px; }
.foot-soc a { width: 44px; height: 44px; border-radius: 14px; background: var(--mint); display: grid; place-items: center; color: var(--ink); transition: transform .2s, background .2s; }
.foot-soc a:hover { transform: translateY(-3px); background: var(--mint-deep); }
.foot-bottom { border-top: 1px dashed var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; font-size: 14px; color: var(--ink-soft); }
.foot-bottom a { color: var(--grass-deep); text-decoration: none; font-weight: 700; }
.foot-bottom a:hover { text-decoration: underline; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100; background: rgba(20,59,51,.5);
  backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--mint); border-radius: 28px; max-width: 480px; width: 100%;
  max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-lg); padding: 34px 32px 36px;
  transform: translateY(24px) scale(.97); transition: transform .35s var(--ease); position: relative;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 50%;
  border: none; background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform .2s, background .2s;
}
.modal-close:hover { transform: rotate(90deg); background: var(--mint-deep); }
.modal-mascot { width: 64px; height: 64px; margin-bottom: 14px; }
.modal h2 { font-size: 26px; margin-bottom: 6px; }
.modal .modal-sub { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 14.5px; margin-bottom: 7px; color: var(--ink); }
.field input, .field select {
  width: 100%; padding: 14px 16px; border: 2px solid var(--line); border-radius: 14px;
  font-family: "Karla", sans-serif; font-size: 16px; color: var(--ink); background: #fff;
  transition: border-color .2s;
}
.field input::placeholder { color: #8aa79c; }
.field input:focus, .field select:focus { outline: none; border-color: var(--grass); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--coral); }
.field .err { color: #d8503f; font-size: 13.5px; margin-top: 6px; min-height: 0; display: none; }
.field .err.show { display: block; }
.modal .btn { width: 100%; margin-top: 6px; }
.modal .btn[disabled] { opacity: .65; cursor: not-allowed; }
.spinner { width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.modal-note { font-size: 13px; color: var(--ink-soft); text-align: center; margin-top: 14px; }
.modal-success { text-align: center; padding: 14px 4px; display: none; }
.modal-success.show { display: block; }
.modal-success .ok-mark { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; background: var(--grass); display: grid; place-items: center; color: #fff; }
.modal-success .ok-mark .icon { width: 38px; height: 38px; stroke-width: 2.5; }
.modal-success h2 { margin-bottom: 10px; }
.modal-success p { color: var(--ink-soft); margin-bottom: 22px; }
.modal-form.hide { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-photo { max-width: 420px; margin-inline: auto; }
  .cards, .ages, .tariffs { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .reviews { grid-template-columns: 1fr; }
  .plan.popular { transform: none; }
  .plan.popular:hover { transform: translateY(-5px); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: block; }
}
@media (max-width: 720px) {
  .cards, .ages, .tariffs { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero { padding: 38px 0 54px; }
  .cta-band { padding: 44px 24px; border-radius: 28px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto; }
}
