/* EduSites marketing — modern design system (2026) */
:root {
  --ink: #0b1220;
  --ink-soft: #243b53;
  --muted: #627d98;
  --line: #d9e2ec;
  --sand: #f7f4ef;
  --cloud: #eef3f8;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-bright: #14b8a6;
  --navy: #12344d;
  --gold: #d97706;
  --gold-soft: #fbbf24;
  --danger: #b91c1c;
  --ok: #047857;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(11, 18, 32, .08);
  --shadow-sm: 0 8px 24px rgba(11, 18, 32, .06);
  --container: 1140px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .15s ease, opacity .15s ease; }
a:hover { color: var(--navy); }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 .6em;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217,226,236,.7);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}
.logo:hover { color: var(--ink); opacity: 1; }
.logo:hover .logo__mark {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 10px 22px rgba(15, 118, 110, .28);
}
.logo__mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 118, 110, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.logo__mark svg {
  display: block;
  width: 40px;
  height: 40px;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: .18rem;
  min-width: 0;
}
.logo__name {
  font-weight: 800;
  letter-spacing: -0.045em;
  font-size: 1.18rem;
  color: var(--ink);
}
.logo__dot {
  color: var(--teal);
  font-weight: 800;
}
.logo__tag {
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.logo--light .logo__name { color: #fff; }
.logo--light .logo__dot { color: #5eead4; }
.logo--light .logo__tag { color: #94a3b8; }
.logo--light .logo__mark {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
}
.logo--light:hover { opacity: 1; }
.nav {
  display: flex;
  align-items: center;
  gap: .15rem 1.1rem;
  flex-wrap: wrap;
}
.nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .92rem;
  padding: .35rem 0;
  position: relative;
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--teal-bright);
  border-radius: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.header-phone {
  display: none;
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--teal); }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 0;
  border-radius: 999px;
  padding: .8rem 1.25rem;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(180deg, #1aa89a, var(--teal));
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(15, 118, 110, .28);
}
.btn--primary:hover {
  box-shadow: 0 14px 28px rgba(15, 118, 110, .35);
  color: #fff !important;
}
.btn--dark {
  background: var(--ink);
  color: #fff !important;
}
.btn--dark:hover { background: #162033; color: #fff !important; }
.btn--ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--muted); color: var(--ink) !important; }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1c1917 !important;
  box-shadow: 0 10px 24px rgba(217, 119, 6, .25);
}
.btn--lg { padding: .95rem 1.5rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(20, 184, 166, .18), transparent 60%),
    radial-gradient(800px 420px at -10% 20%, rgba(18, 52, 77, .12), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 70%);
  padding: 3.5rem 0 4rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, .08);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, .2);
}
.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  margin-bottom: .85rem;
}
.hero__lead {
  font-size: 1.08rem;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}
.hero__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.15rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition:
    transform .28s cubic-bezier(.22, 1, .36, 1),
    box-shadow .28s ease,
    border-color .2s ease;
}
.hero-card:hover,
.hero-card:focus-visible {
  transform: translateY(-6px);
  border-color: #99f6e4;
  box-shadow: 0 24px 50px rgba(15, 118, 110, .16);
  outline: none;
}
.hero-illus {
  aspect-ratio: 3/2;
  border-radius: 20px;
  background:
    radial-gradient(140px 90px at 18% 18%, rgba(255,255,255,.7), transparent 65%),
    radial-gradient(160px 110px at 88% 80%, rgba(20,184,166,.14), transparent 70%),
    linear-gradient(160deg, #ecfdf5 0%, #e0f2fe 55%, #f0f9ff 100%);
  display: grid;
  place-items: center;
  margin-bottom: .95rem;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.hero-illus__svg,
.hero-illus svg {
  position: relative;
  z-index: 1;
  width: min(94%, 348px);
  height: auto;
  display: block;
  max-height: 100%;
  overflow: visible;
}

/* Illustration motion (hover / focus on card) */
.hero-illus__svg .hi-window,
.hero-illus__svg .hi-panel,
.hero-illus__svg .hi-card,
.hero-illus__svg .hi-check,
.hero-illus__svg .hi-accent,
.hero-illus__svg .hi-btn,
.hero-illus__svg .hi-line,
.hero-illus__svg .hi-dot {
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, fill .3s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.hero-illus__svg .hi-panel {
  transform-origin: 80% 50%;
}
.hero-card:hover .hi-window,
.hero-card:focus-visible .hi-window {
  transform: translate(-2px, -3px);
}
.hero-card:hover .hi-panel,
.hero-card:focus-visible .hi-panel {
  transform: translate(4px, -6px) scale(1.03);
}
.hero-card:hover .hi-card--a,
.hero-card:focus-visible .hi-card--a {
  transform: translateY(-4px);
}
.hero-card:hover .hi-card--b,
.hero-card:focus-visible .hi-card--b {
  transform: translateY(-6px);
}
.hero-card:hover .hi-check,
.hero-card:focus-visible .hi-check {
  opacity: 1 !important;
  transform: scale(1.08);
}
.hero-card:hover .hi-accent,
.hero-card:focus-visible .hi-accent {
  fill: #0d9488;
}
.hero-card:hover .hi-btn,
.hero-card:focus-visible .hi-btn {
  fill: #14b8a6;
}
.hero-card:hover .hi-line--1,
.hero-card:focus-visible .hi-line--1 { fill: #475569; }
.hero-card:hover .hi-line--2,
.hero-card:focus-visible .hi-line--2 { fill: #5eead4; }
.hero-card:hover .hi-line--3,
.hero-card:focus-visible .hi-line--3 { fill: #64748b; }
.hero-card:hover .hi-line--4,
.hero-card:focus-visible .hi-line--4 { fill: #99f6e4; }
.hero-card:hover .hi-dot--r,
.hero-card:focus-visible .hi-dot--r { transform: scale(1.15); }
.hero-card:hover .hi-dot--y,
.hero-card:focus-visible .hi-dot--y { transform: scale(1.2); }
.hero-card:hover .hi-dot--g,
.hero-card:focus-visible .hi-dot--g { transform: scale(1.15); }
.hero-card:hover .hi-glow,
.hero-card:focus-visible .hi-glow {
  opacity: .55;
}

.hero-card__body h3 {
  font-size: 1.12rem;
  margin-bottom: .35rem;
}
.hero-card__body p {
  font-size: .92rem;
  margin-bottom: .75rem;
}
.hero-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-card__tags li {
  padding: .28rem .6rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--teal);
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.hero-card:hover .hero-card__tags li,
.hero-card:focus-visible .hero-card__tags li {
  background: #ccfbf1;
  border-color: #5eead4;
  transform: translateY(-1px);
}
.hero-card:hover .hero-card__tags li:nth-child(2),
.hero-card:focus-visible .hero-card__tags li:nth-child(2) {
  background: #e0f2fe;
  border-color: #7dd3fc;
  color: #0369a1;
}
.hero-card:hover .hero-card__tags li:nth-child(3),
.hero-card:focus-visible .hero-card__tags li:nth-child(3) {
  background: #f5f3ff;
  border-color: #c4b5fd;
  color: #6d28d9;
}

@media (prefers-reduced-motion: reduce) {
  .hero-card,
  .hero-illus__svg .hi-window,
  .hero-illus__svg .hi-panel,
  .hero-illus__svg .hi-card,
  .hero-illus__svg .hi-check,
  .hero-illus__svg .hi-accent,
  .hero-illus__svg .hi-btn,
  .hero-illus__svg .hi-line,
  .hero-illus__svg .hi-dot,
  .hero-card__tags li {
    transition: none !important;
  }
  .hero-card:hover,
  .hero-card:focus-visible {
    transform: none;
  }
}

/* Sections */
.section { padding: 4.25rem 0; }
.section--sand { background: var(--sand); }
.section--cloud { background: var(--cloud); }
.section--ink {
  background: linear-gradient(160deg, #0b1220 0%, #12344d 55%, #0f766e 140%);
  color: #e2e8f0;
}
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #cbd5e1; }
.section__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.section__head p { font-size: 1.02rem; }
.section__head--center {
  text-align: center;
  margin-inline: auto;
}

/* Cards grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.45rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  border-color: #b6cce0;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 18, 32, .1);
}
.card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(15, 118, 110, .1);
  color: var(--teal);
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.card p { flex: 1; font-size: .95rem; }
.card__list {
  margin: .5rem 0 1rem;
  display: grid;
  gap: .45rem;
}
.card__list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: .92rem;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
}
.card__foot { margin-top: auto; padding-top: .5rem; }

/* Feature rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse .feature-row__media { order: 2; }
.feature-media {
  border-radius: 24px;
  min-height: 280px;
  background: linear-gradient(145deg, #ecfeff, #e0f2fe 45%, #fef3c7);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.feature-media svg { width: min(100%, 340px); }
.feature-copy h3 { font-size: 1.55rem; }
.checklist { display: grid; gap: .7rem; margin: 1rem 0 1.4rem; }
.checklist li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--ok);
  font-size: .75rem;
  font-weight: 800;
  display: grid; place-items: center;
  margin-top: .1rem;
}

/* Law band */
.law-band {
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
}
.law-band__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .78rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.pill-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  background: var(--cloud);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .75rem;
  font-size: .82rem;
  font-weight: 650;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.stat__label { color: #94a3b8; font-size: .88rem; margin-top: .25rem; }

/* Steps (legacy simple) */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: .85rem;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: .9rem; margin: 0; }

/* How it works — expressive */
.how {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(20,184,166,.12), transparent 55%),
    radial-gradient(700px 360px at 100% 30%, rgba(18,52,77,.08), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 70%);
}
.how-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.how-line {
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(20,184,166,.15), rgba(20,184,166,.55), rgba(18,52,77,.35), rgba(124,58,237,.25));
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.35rem 1.2rem 1.4rem;
  box-shadow: 0 14px 36px rgba(11, 18, 32, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-height: 100%;
}
.how-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(11, 18, 32, .12);
  border-color: #b6cce0;
}
.how-step__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(15, 118, 110, .18);
  line-height: 1;
}
.how-step__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 16px rgba(15, 118, 110, .12));
}
.how-step__icon svg { width: 56px; height: 56px; display: block; }
.how-step h3 {
  font-size: 1.2rem;
  margin-bottom: .45rem;
}
.how-step p {
  font-size: .93rem;
  margin: 0;
  line-height: 1.55;
}
.how-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #0b1220, #12344d 60%, #0f766e);
  box-shadow: 0 18px 40px rgba(11, 18, 32, .18);
  color: #e2e8f0;
}
.how-cta strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: .2rem;
}
.how-cta span {
  color: #94a3b8;
  font-size: .92rem;
}

/* Section head split */
.section__head--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.section__head--split > div { max-width: 40rem; }

/* Reviews home */
.reviews-home {
  background:
    radial-gradient(700px 300px at 0% 0%, rgba(251,191,36,.12), transparent 50%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.quote-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.45rem 1.3rem 1.25rem;
  box-shadow: 0 14px 36px rgba(11, 18, 32, .06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(11, 18, 32, .1);
}
.quote-card__marks {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: .7;
  color: rgba(20, 184, 166, .25);
  margin-bottom: .35rem;
  font-weight: 700;
}
.quote-card blockquote {
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--ink);
  flex: 1;
}
.quote-card__meta {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.quote-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #14b8a6, #12344d);
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
  box-shadow: 0 8px 16px rgba(15, 118, 110, .25);
}
.quote-card__meta strong {
  display: block;
  color: var(--ink);
  font-size: .92rem;
}
.quote-card__meta span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
}
.quote-card__link {
  margin-top: .75rem;
  font-size: .85rem;
  font-weight: 700;
}

/* Reviews full page — same card language as home */
.page-hero--reviews {
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(251, 191, 36, .14), transparent 55%),
    radial-gradient(520px 220px at 100% 0%, rgba(20, 184, 166, .1), transparent 50%),
    linear-gradient(180deg, #f8fafc, #fff);
  padding-bottom: 1.25rem;
  border-bottom: 0;
}
.page-hero--reviews .page-hero__head {
  margin-bottom: 0;
  align-items: flex-end;
}
.page-hero--reviews .page-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 .45rem;
}
.page-hero--reviews .page-hero__lead {
  max-width: 40rem;
  font-size: 1.05rem;
  margin: 0;
  color: var(--ink-soft);
}
.reviews-page {
  padding-top: 1.5rem;
}
.reviews-slider--page {
  margin-bottom: .5rem;
}
.reviews-page__pager {
  margin-top: .5rem;
}
.page-reviews .quote-card blockquote {
  font-size: 1.05rem;
}

/* News home */
.news-home-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.1rem;
}
.news-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(11, 18, 32, .06);
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 140px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.news-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(11, 18, 32, .1);
}
.news-tile--feature {
  grid-column: 1;
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  grid-template-rows: 200px 1fr;
  min-height: 100%;
}
.news-tile__media {
  display: block;
  background: linear-gradient(145deg, #e0f2fe, #ccfbf1);
  overflow: hidden;
  min-height: 100%;
}
.news-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-tile__placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 50%),
    linear-gradient(145deg, #99f6e4, #7dd3fc 50%, #c4b5fd);
}
.news-tile__body {
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
}
.news-tile__body time {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.news-tile__body h3,
.news-tile__title {
  font-family: var(--font);
  font-size: 1.05rem;
  margin: 0 0 .45rem;
  line-height: 1.3;
}
.news-tile--feature .news-tile__body h3,
.news-tile--feature .news-tile__title {
  font-family: var(--serif);
  font-size: 1.4rem;
}
.news-tile__body h3 a,
.news-tile__title a { color: var(--ink); }
.news-tile__body h3 a:hover,
.news-tile__title a:hover { color: var(--teal); }
.news-tile__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .65rem;
  margin-bottom: .45rem;
}
.news-tile__pill {
  display: inline-flex;
  padding: .18rem .55rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, .1);
  color: var(--teal);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* News index (/news) */
.news-index-hero {
  padding: 2.5rem 0 2rem;
  background:
    radial-gradient(700px 280px at 100% 0%, rgba(20, 184, 166, .13), transparent 55%),
    radial-gradient(520px 220px at 0% 20%, rgba(18, 52, 77, .07), transparent 50%),
    linear-gradient(180deg, #f4f8fb 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.news-index-hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}
.news-index-hero__title {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  margin: 0 0 .55rem;
  letter-spacing: -0.03em;
}
.news-index-hero__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.news-index-hero__stat {
  min-width: 7.5rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.news-index-hero__stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.news-index-hero__stat span {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
}
.news-index {
  background: linear-gradient(180deg, #fafbfc 0%, #fff 30%);
}
.news-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  min-height: 280px;
}
.news-feature__media {
  display: block;
  min-height: 260px;
  background: linear-gradient(145deg, #e0f2fe, #ccfbf1);
  overflow: hidden;
}
.news-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-feature__placeholder {
  min-height: 260px;
}
.news-feature__body {
  padding: 1.75rem 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-feature__title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  margin: 0 0 .75rem;
  letter-spacing: -0.02em;
}
.news-feature__title a { color: var(--ink); }
.news-feature__title a:hover { color: var(--teal); }
.news-feature__excerpt {
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}
.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.news-card-v2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(11, 18, 32, .1);
}
.news-card-v2__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #e0f2fe, #ccfbf1);
  overflow: hidden;
}
.news-card-v2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card-v2__body {
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-v2__body time {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.news-card-v2__body h2 {
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0 0 .5rem;
}
.news-card-v2__body h2 a { color: var(--ink); }
.news-card-v2__body h2 a:hover { color: var(--teal); }
.news-card-v2__body p {
  font-size: .9rem;
  margin: 0 0 .85rem;
  flex: 1;
  color: var(--ink-soft);
}
.news-index-pager {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .news-cards { grid-template-columns: repeat(2, 1fr); }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature__media { min-height: 200px; aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .news-cards { grid-template-columns: 1fr; }
  .news-feature__body { padding: 1.25rem 1.15rem 1.4rem; }
}
.news-tile__body p {
  font-size: .9rem;
  margin-bottom: .75rem;
  flex: 1;
}
.news-tile__more {
  font-weight: 800;
  font-size: .9rem;
  color: var(--teal);
}
.news-tile__more:hover { color: var(--navy); }

/* About page */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 2.75rem 0 3.25rem;
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(20,184,166,.16), transparent 55%),
    radial-gradient(700px 360px at -5% 40%, rgba(18,52,77,.08), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 75%);
  border-bottom: 1px solid var(--line);
}
.about-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.25rem;
  align-items: center;
}
.about-hero__copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .85rem;
}
.about-hero__lead {
  font-size: 1.08rem;
  max-width: 36rem;
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
}
.about-hero__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.2rem;
  box-shadow: 0 22px 50px rgba(11, 18, 32, .1);
}
.about-hero__card svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: linear-gradient(145deg, #f0fdfa, #e0f2fe);
}
.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 1rem;
}
.about-hero__stats div {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .75rem .65rem;
  text-align: center;
}
.about-hero__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: .15rem;
}
.about-hero__stats span {
  display: block;
  font-size: .75rem;
  font-weight: 650;
  color: var(--muted);
  line-height: 1.3;
}

.about-idea {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: .5rem 0;
}
.about-idea__label {
  display: inline-flex;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, .08);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: .85rem;
}
.about-idea h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 1.1rem;
}
.about-idea__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.5rem;
  text-align: left;
}
.about-idea__grid p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.about-value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.35rem 1.2rem 1.4rem;
  box-shadow: 0 12px 32px rgba(11, 18, 32, .06);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 100%;
}
.about-value::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-bright), var(--navy));
}
.about-value:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(11, 18, 32, .1);
}
.about-value__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(15, 118, 110, .2);
  letter-spacing: -0.04em;
  margin-bottom: .55rem;
  line-height: 1;
}
.about-value h3 {
  font-size: 1.15rem;
  margin-bottom: .45rem;
}
.about-value p {
  margin: 0;
  font-size: .92rem;
}

.about-contact {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 18px 44px rgba(11, 18, 32, .08);
}
.about-contact h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: .55rem;
}
.about-contact > div > p {
  margin-bottom: 1rem;
  max-width: 34rem;
}
.about-contact__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
  margin-bottom: .55rem;
}
.about-contact__phone {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.about-contact__phone:hover { color: var(--teal); }
.about-contact__hours {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 650;
  margin: 0;
}
.about-contact__actions {
  display: grid;
  gap: .65rem;
}

/* Empty states */
.empty-panel {
  text-align: center;
  background: #fff;
  border: 1px dashed #c5d6e4;
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.empty-panel__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ecfdf5, #e0f2fe);
  color: var(--teal);
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 118, 110, .12);
}
.empty-panel h3 { margin-bottom: .4rem; }
.empty-panel p { max-width: 28rem; margin: 0 auto 1.1rem; }
.empty-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
}

/* Page hero */
.page-hero {
  padding: 2.75rem 0 2rem;
  background:
    radial-gradient(700px 280px at 100% 0%, rgba(20,184,166,.12), transparent 60%),
    linear-gradient(180deg, #f8fafc, #fff);
  border-bottom: 1px solid var(--line);
}
.page-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .85rem;
}
.page-hero__crumbs a { color: var(--muted); }
.page-hero__crumbs a:hover { color: var(--teal); }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: .5rem; }
.page-hero p { max-width: 42rem; font-size: 1.05rem; margin-bottom: 0; }

/* Forms */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 1rem;
}
.field { display: grid; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .75rem .9rem;
  background: #fbfcfe;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: #5eead4;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .18);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: .78rem; color: var(--muted); }
.alert {
  border-radius: 12px;
  padding: .85rem 1rem;
  margin-bottom: 1rem;
  font-size: .92rem;
}
.alert--ok { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert--err { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert--warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }

/* Contact / messengers */
.contact-panel {
  display: grid;
  gap: .85rem;
}
.contact-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 16px;
  background: var(--cloud);
  border: 1px solid var(--line);
}
.contact-item__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-weight: 800;
  color: var(--teal);
  flex: 0 0 auto;
}
.contact-item strong { display: block; color: var(--ink); }
.contact-item span, .contact-item a { color: var(--ink-soft); font-size: .92rem; }
.messenger-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .35rem;
}
.msg-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink) !important;
}
.msg-btn:hover { border-color: var(--teal-bright); color: var(--teal) !important; }
.msg-btn--wa { background: #ecfdf5; border-color: #a7f3d0; }
.msg-btn--tg { background: #eff6ff; border-color: #bfdbfe; }
.msg-btn--mx { background: #eef2ff; border-color: #c7d2fe; }

/* Catalog / reviews */
.site-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.site-tile__preview {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #e0f2fe, #ccfbf1);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 800;
  font-size: .95rem;
  text-align: center;
  padding: 1rem;
}
.site-tile__body { padding: 1rem 1.05rem 1.15rem; flex: 1; display: flex; flex-direction: column; }
.site-tile__type {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .35rem;
}
.site-tile h3 { font-size: 1rem; margin-bottom: .35rem; font-family: var(--font); }
.site-tile p { font-size: .86rem; margin-bottom: .85rem; flex: 1; }
.review-card blockquote {
  margin: 0 0 .85rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.45;
}
.review-card .meta { color: var(--muted); font-size: .86rem; font-weight: 600; }

/* Legal documents */
.legal__hero {
  padding: 2.5rem 0 0;
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(20, 184, 166, .13), transparent 55%),
    radial-gradient(520px 220px at 100% 0%, rgba(18, 52, 77, .08), transparent 50%),
    linear-gradient(180deg, #f4f8fb 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.legal__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .9fr);
  gap: 1.5rem 2rem;
  align-items: start;
  margin-bottom: 1.75rem;
}
.legal__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .9rem;
  margin-bottom: .9rem;
}
.legal__badge {
  display: inline-flex;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, .1);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.legal__updated {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 650;
}
.legal__title {
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  margin: 0 0 .75rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.legal__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.legal__operator {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.15rem 1.2rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.legal__operator-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .4rem;
}
.legal__operator-name {
  font-weight: 800;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: .85rem;
}
.legal__operator-dl {
  margin: 0;
  display: grid;
  gap: .55rem;
}
.legal__operator-dl > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: .4rem .75rem;
  align-items: baseline;
  font-size: .88rem;
}
.legal__operator-dl dt {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.legal__operator-dl dd {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
  word-break: break-word;
}
.legal__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding-bottom: 1.15rem;
}
.legal__tab {
  display: inline-flex;
  align-items: center;
  padding: .55rem .95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft) !important;
  font-size: .88rem;
  font-weight: 700;
  transition: border-color .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
.legal__tab:hover {
  border-color: #99f6e4;
  color: var(--teal) !important;
}
.legal__tab.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(18, 52, 77, .18);
}
.legal__body {
  padding-top: 2rem;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 20%);
}
.legal__layout {
  max-width: 860px;
}
.legal__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.legal__content {
  max-width: none;
  padding: 1.85rem 1.75rem 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
}
.prose--legal > *:first-child { margin-top: 0; }
.prose--legal .legal-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  padding: 1rem 1.1rem;
  background: linear-gradient(90deg, rgba(20, 184, 166, .08), rgba(238, 243, 248, .6));
  border-left: 4px solid var(--teal-bright);
  border-radius: 0 14px 14px 0;
  margin-bottom: 1.5rem;
}
.prose--legal h2 {
  font-size: 1.28rem;
  margin-top: 1.85em;
  margin-bottom: .65em;
  padding-bottom: .4em;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.prose--legal h2:first-of-type { margin-top: 1.2em; }
.prose--legal p { margin-bottom: 1em; }
.prose--legal ol.legal-list {
  list-style: none;
  counter-reset: legal-item;
  padding-left: 0;
  margin: 0 0 1em;
}
.prose--legal ol.legal-list > li {
  counter-increment: legal-item;
  position: relative;
  padding-left: 2rem;
  margin-bottom: .75rem;
  color: var(--ink-soft);
}
.prose--legal ol.legal-list > li::before {
  content: counter(legal-item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}
.prose--legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: .55rem 0 .85rem;
}
.prose--legal ul li {
  margin-bottom: .35rem;
  color: var(--ink-soft);
}
.prose--legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-sign {
  margin-top: 2rem;
  padding: 1.25rem 1.2rem;
  border-radius: 16px;
  background: var(--cloud);
  border: 1px solid var(--line);
}
.legal-sign h2 {
  margin-top: 0 !important;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  font-size: 1.15rem !important;
}
.legal-requisites {
  list-style: none !important;
  padding: 0 !important;
  margin: .75rem 0 0 !important;
  display: grid;
  gap: .4rem;
}
.legal-requisites li {
  margin: 0 !important;
  color: var(--ink-soft);
  font-size: .95rem;
}
.legal-end {
  margin: 1rem 0 0 !important;
  font-size: .88rem;
  color: var(--muted);
  font-weight: 650;
}
.legal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.75rem 1.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.legal__footer-note {
  flex: 1 1 16rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
}
.legal__footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
@media (max-width: 860px) {
  .legal__hero-grid { grid-template-columns: 1fr; }
  .legal__content { padding: 1.35rem 1.15rem .5rem; }
  .legal__footer { padding: 1.1rem 1.15rem 1.25rem; }
  .legal__operator-dl > div { grid-template-columns: 1fr; gap: .1rem; }
}
@media print {
  .site-header, .site-footer, .float-msg, .legal__tabs, .legal__footer-actions { display: none !important; }
  .legal__card { box-shadow: none; border: 0; }
  .legal__hero { background: none; border: 0; }
}

/* News */
.news-card h3 { font-size: 1.1rem; font-family: var(--font); }
.news-card time { color: var(--muted); font-size: .82rem; font-weight: 600; }
.prose {
  max-width: 48rem;
  font-size: 1.02rem;
}
.prose h2, .prose h3 { margin-top: 1.5em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { list-style: disc; padding-left: 1.2rem; margin: 0 0 1em; }
.prose li { margin-bottom: .4rem; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* News article (single) */
.article__hero {
  padding: 2.5rem 0 2.25rem;
  background:
    radial-gradient(720px 300px at 0% 0%, rgba(20, 184, 166, .14), transparent 55%),
    radial-gradient(560px 240px at 100% 10%, rgba(18, 52, 77, .08), transparent 50%),
    linear-gradient(180deg, #f4f8fb 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.article__hero-inner {
  max-width: 760px;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem 1rem;
  margin-bottom: 1rem;
}
.article__badge {
  display: inline-flex;
  align-items: center;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, .1);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.article__date {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 650;
}
.article__title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 .85rem;
  letter-spacing: -0.03em;
}
.article__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.article__body {
  padding-top: 2rem;
  background:
    linear-gradient(180deg, #fafbfc 0%, #fff 18%);
}
.article__layout {
  display: grid;
  gap: 1.75rem;
  max-width: 760px;
}
.article__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.article__cover {
  margin: 0;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #e0f2fe, #ccfbf1);
  overflow: hidden;
}
.article__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article__content {
  max-width: none;
  padding: 1.75rem 1.6rem 0.5rem;
  font-size: 1.08rem;
  line-height: 1.75;
}
.prose--article > *:first-child { margin-top: 0; }
.prose--article h2 {
  font-size: 1.45rem;
  margin-top: 1.75em;
  margin-bottom: .55em;
  padding-bottom: .35em;
  border-bottom: 1px solid var(--line);
}
.prose--article h3 {
  font-size: 1.2rem;
  margin-top: 1.4em;
  margin-bottom: .45em;
}
.prose--article p {
  margin-bottom: 1.15em;
}
.prose--article img {
  border-radius: 14px;
  margin: 1.25rem 0;
  box-shadow: var(--shadow-sm);
}
.prose--article blockquote {
  margin: 1.35rem 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--teal-bright);
  background: linear-gradient(90deg, rgba(20, 184, 166, .08), transparent);
  border-radius: 0 14px 14px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
}
.prose--article pre,
.prose--article code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em;
}
.prose--article pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  overflow-x: auto;
  margin: 1.2rem 0;
}
.prose--article code {
  background: var(--cloud);
  padding: .12em .4em;
  border-radius: 6px;
}
.prose--article pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}
.prose--article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: .95rem;
}
.prose--article th,
.prose--article td {
  border: 1px solid var(--line);
  padding: .55rem .7rem;
  text-align: left;
}
.prose--article th {
  background: var(--cloud);
  font-weight: 700;
  color: var(--ink);
}
.prose--article hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.75rem 0;
}
.article__footer {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.6rem 1.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.article__related {
  padding: .25rem 0 0;
}
.article__related-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: .85rem;
}
.article__related-list {
  display: grid;
  gap: .65rem;
}
.article__related-item {
  display: grid;
  gap: .25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.article__related-item:hover {
  border-color: #99f6e4;
  box-shadow: 0 12px 28px rgba(15, 118, 110, .1);
  transform: translateY(-1px);
  color: var(--ink);
}
.article__related-item time {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
}
.article__related-item span {
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.35;
}
@media (max-width: 640px) {
  .article__content {
    padding: 1.25rem 1.1rem .25rem;
    font-size: 1.02rem;
  }
  .article__footer {
    padding: 1rem 1.1rem 1.2rem;
  }
  .article__footer .btn {
    width: 100%;
    justify-content: center;
  }
}

/* FAQ accordion */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  margin-bottom: .65rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { margin-bottom: .55rem; color: var(--teal); }
.faq details p { margin: 0; font-size: .95rem; }

/* Pagination */
.pager {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: .5rem;
}
.pager__list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pager__item a,
.pager__item span {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .9rem;
  padding: 0 .55rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(11, 18, 32, .04);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.pager__item a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(11, 18, 32, .08);
  color: var(--ink);
}
.pager__item.is-active span {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.pager__item.is-disabled span {
  opacity: .45;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.25rem;
}
.filters a, .filters button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: .45rem .85rem;
  font-weight: 700;
  font-size: .85rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.filters a.is-active, .filters a:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* CTA block */
.cta-block {
  border-radius: 28px;
  padding: 2rem;
  background: linear-gradient(135deg, #0b1220, #12344d 55%, #0f766e);
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 1.25rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-block h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: .4rem; }
.cta-block p { color: #cbd5e1; margin-bottom: 0; }
.cta-block__actions { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: flex-end; }

/* Main + page end spacing (avoid float overlap / footer crush) */
.site-main {
  min-height: 40vh;
  padding-bottom: 1rem;
}
.site-main > .section:last-child {
  padding-bottom: 4.5rem;
}
.section--tight { padding: 2.5rem 0 3rem; }

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem 1.4rem 1.45rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-bright), var(--navy));
  opacity: .85;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(11, 18, 32, .12);
}
.price-card--featured {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  border-color: #99f6e4;
  box-shadow: 0 16px 40px rgba(15, 118, 110, .12);
}
.price-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--ok);
  border: 1px solid #a7f3d0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: .85rem;
}
.price-card__badge--soft {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}
.price-card h3 {
  font-size: 1.35rem;
  margin-bottom: .4rem;
}
.price-card__desc {
  font-size: .92rem;
  margin-bottom: 1rem;
  flex: 0 0 auto;
}
.price-card__value {
  display: flex;
  align-items: baseline;
  gap: .45rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.price-card__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.price-card__cur {
  color: var(--muted);
  font-weight: 700;
  font-size: .95rem;
}
.price-note {
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
  margin: 1.25rem 0 0;
  max-width: 40rem;
  margin-inline: auto;
}

/* Footer */
.site-footer {
  background: #0b1220;
  color: #94a3b8;
  padding: 3.25rem 0 2rem;
  margin-top: 0;
  /* room for floating messengers */
  padding-bottom: calc(2rem + 56px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem 1.25rem;
  margin-bottom: 2rem;
}
.footer-about {
  color: #94a3b8;
  max-width: 22rem;
  font-size: .92rem;
  margin: 0;
  line-height: 1.55;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font);
  font-size: .95rem;
  margin-bottom: .85rem;
  letter-spacing: 0;
}
.site-footer a { color: #94a3b8; }
.site-footer a:hover { color: #fff; }
.footer-links { display: grid; gap: .5rem; font-size: .92rem; }
.footer-hours { color: #64748b; font-size: .88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}
.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .35rem .5rem;
  align-items: center;
}
.footer-dot { opacity: .5; }

/* Floating messengers */
.float-msg {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.float-msg a {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff !important;
  font-weight: 800;
  font-size: .72rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.float-msg a:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}
.float-msg a.wa { background: #25d366; }
.float-msg a.tg { background: #2aabee; }
.float-msg a.mx { background: #4f46e5; letter-spacing: .02em; font-size: .65rem; }
.float-msg a.tel { background: var(--ink); font-size: 1rem; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .card, .price-card, .btn, .float-msg a {
    transition: none !important;
    transform: none !important;
  }
  .reveal { opacity: 1; }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(11, 18, 32, .55);
  backdrop-filter: blur(4px);
}
.modal.is-open { display: flex; }
.modal__dialog {
  width: min(100%, 480px);
  background: #fff;
  border-radius: 20px;
  padding: 1.4rem 1.4rem 1.25rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.modal__dialog h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
  justify-content: flex-end;
}
.domain-input-row {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
  margin: .85rem 0;
}
.domain-input-row input {
  flex: 1 1 160px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .75rem .9rem;
}
.domain-input-row span { color: var(--muted); font-weight: 600; font-size: .9rem; }

/* Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .75rem; }
.mb-2 { margin-bottom: 1.25rem; }
.mt-2 { margin-top: 1.25rem; }
.mt-3 { margin-top: 2rem; }
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

@media (max-width: 980px) {
  .hero__grid,
  .feature-row,
  .feature-row--reverse .feature-row__media,
  .law-band,
  .cta-block,
  .footer-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .feature-row--reverse .feature-row__media { order: 0; }
  .grid-3, .steps, .stats, .how-track, .reviews-slider, .about-values { grid-template-columns: 1fr 1fr; }
  .how-line { display: none; }
  .news-home-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .news-tile--feature {
    grid-column: auto;
    grid-row: auto;
  }
  .about-hero__grid,
  .about-contact,
  .about-idea__grid {
    grid-template-columns: 1fr;
  }
  .about-hero__stats { grid-template-columns: repeat(3, 1fr); }
  .cta-block__actions { justify-content: flex-start; }
  .header-phone { display: none !important; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 1rem; right: 1rem;
    top: calc(var(--header-h) + 4px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .85rem 1rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    z-index: 40;
  }
  .nav.is-open { display: flex; }
  .site-header { position: sticky; }
  .site-header__inner { position: relative; min-height: 68px; }
  .logo__name { font-size: 1.05rem; }
  .site-footer { padding-bottom: calc(2.5rem + 220px); }
}

@media (max-width: 640px) {
  .grid-3, .grid-2, .steps, .stats, .form-grid, .how-track, .reviews-slider, .about-values { grid-template-columns: 1fr; }
  .about-hero__stats { grid-template-columns: 1fr; }
  .news-tile { grid-template-columns: 96px 1fr; }
  .news-tile--feature {
    grid-template-columns: 1fr;
    grid-template-rows: 160px 1fr;
  }
  .how-cta { flex-direction: column; align-items: stretch; }
  .how-cta .btn { width: 100%; }
  .hero { padding: 2.2rem 0 2.5rem; }
  .section { padding: 3rem 0; }
  .header-actions .btn { display: none; }
  .float-msg { right: .7rem; bottom: .7rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .site-main > .section:last-child { padding-bottom: 3.5rem; }
}

/* ===== Registration + onboarding ===== */
.reg-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .reg-layout { grid-template-columns: minmax(240px, 320px) 1fr; gap: 2rem; }
}
.reg-steps { display: grid; gap: .75rem; margin-bottom: 1.1rem; }
.reg-step {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .85rem 1rem; border-radius: 14px;
  background: #fff; border: 1px solid var(--line);
}
.reg-step__num {
  width: 2rem; height: 2rem; border-radius: 10px; display: grid; place-items: center;
  font-weight: 800; font-size: .85rem; color: #fff;
  background: linear-gradient(145deg, #94a3b8, #64748b); flex: 0 0 auto;
}
.reg-step.is-active .reg-step__num { background: linear-gradient(145deg, #14b8a6, #0f766e); }
.reg-step strong { display: block; font-size: .92rem; color: var(--ink); }
.reg-step span { font-size: .8rem; color: var(--muted); }
.reg-help h3 { font-size: 1.05rem; }
.reg-form__title { font-size: 1.2rem; margin: 0 0 .35rem; }
.reg-form__title--mt { margin-top: 1.4rem; }
.reg-form__lead { font-size: .9rem; color: var(--muted); margin: 0 0 1rem; }

.type-pick { display: grid; gap: .65rem; margin-bottom: 1rem; }
.type-card {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .9rem 1rem; border-radius: 16px;
  border: 2px solid var(--line); background: #fff;
  cursor: pointer; transition: border-color .15s, box-shadow .15s, transform .15s;
}
.type-card:hover { border-color: #99f6e4; box-shadow: var(--shadow-sm); }
.type-card.is-on {
  border-color: #14b8a6;
  background: linear-gradient(135deg, #f0fdfa, #fff);
  box-shadow: 0 10px 28px rgba(20, 184, 166, .12);
}
.type-card input { position: absolute; opacity: 0; pointer-events: none; }
.type-card__icon {
  width: 2.6rem; height: 2.6rem; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; color: #fff; background: linear-gradient(145deg, #0ea5e9, #0369a1);
  flex: 0 0 auto;
}
.type-card__icon--mint { background: linear-gradient(145deg, #34d399, #059669); }
.type-card__icon--violet { background: linear-gradient(145deg, #a78bfa, #7c3aed); }
.type-card__body strong { display: block; font-size: .98rem; color: var(--ink); margin-bottom: .2rem; }
.type-card__body span { font-size: .82rem; color: var(--muted); line-height: 1.4; }

.school-kinds {
  margin: 0 0 1.15rem; padding: .85rem 1rem; border-radius: 14px;
  background: linear-gradient(135deg, #ecfeff, #f0f9ff); border: 1px solid #bae6fd;
}
.school-kinds__label { font-size: .78rem; font-weight: 800; color: #0c4a6e; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .04em; }
.school-kinds__chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.school-kinds__chips span {
  font-size: .75rem; font-weight: 700; padding: .28rem .55rem; border-radius: 999px;
  background: #fff; border: 1px solid #7dd3fc; color: #0369a1;
}

/* Onboarding */
.onb { padding: 2rem 0 3.5rem; background: linear-gradient(180deg, #ecfdf5 0%, #f8fafc 28%, #fff 100%); }
.onb__wrap { max-width: 1040px; }
.onb-hero { margin-bottom: 1.5rem; }
.onb-hero__badge {
  display: inline-flex; padding: .3rem .7rem; border-radius: 999px;
  font-size: .75rem; font-weight: 800; color: #0f766e;
  background: #ccfbf1; border: 1px solid #99f6e4; margin-bottom: .75rem;
}
.onb-hero h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: .4rem; }
.onb-hero p { max-width: 40rem; color: var(--muted); }
.onb-progress { display: flex; gap: .4rem; margin-top: 1rem; max-width: 12rem; }
.onb-progress span { height: 6px; flex: 1; border-radius: 99px; background: #e2e8f0; }
.onb-progress span.is-done { background: #14b8a6; }
.onb-progress span.is-on { background: linear-gradient(90deg, #14b8a6, #0ea5e9); }

.onb-grid { display: grid; gap: 1.25rem; }
@media (min-width: 900px) {
  .onb-grid { grid-template-columns: 1.35fr .75fr; align-items: start; }
}
.onb-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 1.35rem 1.4rem 1.5rem; box-shadow: var(--shadow);
}
.onb-form .field { margin-bottom: 1rem; }
.onb-form label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: .35rem; color: var(--ink); }
.onb-form label .opt { font-weight: 600; color: var(--muted); font-size: .8rem; }
.onb-form input[type="text"], .onb-form input[type="email"] {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .7rem .85rem; background: #f8fafc;
}
.onb-form input:focus { outline: none; border-color: #14b8a6; background: #fff; box-shadow: 0 0 0 3px rgba(20,184,166,.15); }
.domain-input-row--lg {
  border: 1px solid var(--line); border-radius: 12px; padding: .15rem .75rem .15rem .15rem;
  background: #f8fafc; display: flex; align-items: center; gap: .25rem;
}
.domain-input-row--lg input {
  border: 0 !important; background: transparent !important; box-shadow: none !important;
  flex: 1; min-width: 0; padding: .65rem .7rem;
}
.domain-input-row--lg span { font-weight: 700; color: var(--muted); white-space: nowrap; }
.onb-domain-actions { display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; margin-top: .5rem; }
.btn--sm { padding: .4rem .75rem; font-size: .82rem; }

.kind-grid { display: flex; flex-wrap: wrap; gap: .4rem; }
.kind-chip {
  cursor: pointer; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; padding: .35rem .7rem; font-size: .8rem; font-weight: 700; color: var(--ink-soft);
  transition: .15s ease;
}
.kind-chip input { position: absolute; opacity: 0; pointer-events: none; }
.kind-chip:hover { border-color: #99f6e4; }
.kind-chip.is-on { background: #0f766e; border-color: #0f766e; color: #fff; }

.onb-side { display: grid; gap: .85rem; }
.onb-side__card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.onb-side__card--soft { background: linear-gradient(160deg, #ecfdf5, #f0f9ff); border-color: #a7f3d0; }
.onb-side__card h3 { font-size: 1rem; margin-bottom: .55rem; }
.onb-check { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.onb-check li {
  position: relative; padding-left: 1.4rem; font-size: .88rem; color: var(--ink-soft); line-height: 1.4;
}
.onb-check li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: #0f766e; font-weight: 800;
}

/* Price grid 3 columns */
.price-grid--3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .price-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.price-card__badge--mint {
  background: linear-gradient(135deg, #34d399, #059669) !important;
  color: #fff !important;
}

/* Getsite: pick type when no ?type= */
.reg-pick-banner {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 1rem;
}
.reg-pick-banner h2 { margin-bottom: .35rem; }
.reg-pick-banner > p { color: var(--muted); margin-bottom: 1.25rem; }
.reg-pick-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .reg-pick-grid { grid-template-columns: repeat(3, 1fr); }
}
.reg-pick {
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  padding: 1.25rem 1rem; border-radius: 18px;
  border: 2px solid var(--line); background: #fff;
  text-decoration: none !important; color: inherit !important;
  transition: .15s ease; box-shadow: var(--shadow-sm);
}
.reg-pick:hover { border-color: #14b8a6; transform: translateY(-2px); box-shadow: var(--shadow); }
.reg-pick__icon {
  width: 3rem; height: 3rem; border-radius: 14px; display: grid; place-items: center;
  font-weight: 800; color: #fff; background: linear-gradient(145deg, #0ea5e9, #0369a1);
}
.reg-pick__icon--mint { background: linear-gradient(145deg, #34d399, #059669); }
.reg-pick__icon--violet { background: linear-gradient(145deg, #a78bfa, #7c3aed); }
.reg-pick strong { font-size: 1.02rem; }
.reg-pick span { font-size: .82rem; color: var(--muted); }

.reg-type-badge {
  display: inline-flex; padding: .25rem .65rem; border-radius: 999px;
  font-size: .72rem; font-weight: 800; color: #0f766e;
  background: #ccfbf1; margin-bottom: .5rem;
}

.onb-kinds-note {
  margin: 0 0 1rem; padding: .85rem 1rem; border-radius: 14px;
  background: linear-gradient(135deg, #ecfeff, #f0f9ff);
  border: 1px solid #bae6fd; font-size: .86rem; line-height: 1.5; color: #0c4a6e;
}
.onb-kinds-note strong { display: block; margin-bottom: .25rem; color: #0f766e; }

/* Getsite typed: form-first registration hero */
.reg-hero {
  padding: 1.35rem 0 0.5rem;
  background: linear-gradient(180deg, #ecfdf5 0%, #f8fafc 70%, var(--cloud) 100%);
  border-bottom: 1px solid rgba(153, 246, 228, .45);
}
.reg-hero__crumbs {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  font-size: .82rem; color: var(--muted); margin-bottom: .85rem;
}
.reg-hero__crumbs a { color: var(--muted); }
.reg-hero__crumbs a:hover { color: var(--teal); }
.reg-hero__row {
  display: grid; gap: 1.1rem; align-items: end;
}
@media (min-width: 860px) {
  .reg-hero__row { grid-template-columns: 1.4fr .7fr; gap: 2rem; }
}
.reg-hero h1 {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  margin: .35rem 0 .45rem;
}
.reg-hero__lead {
  max-width: 40rem;
  margin: 0;
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.reg-hero__progress { max-width: 16rem; }
.reg-progress-bar {
  display: flex; gap: .4rem; margin-bottom: .4rem;
}
.reg-progress-bar span {
  height: 6px; flex: 1; border-radius: 99px; background: #e2e8f0;
}
.reg-progress-bar span.is-on {
  background: linear-gradient(90deg, #14b8a6, #0ea5e9);
}
.reg-progress-labels {
  display: flex; justify-content: space-between; gap: .5rem;
  font-size: .72rem; font-weight: 700; color: var(--muted);
}
.reg-progress-labels .is-on { color: #0f766e; }

.section--reg-first {
  padding-top: 1.5rem !important;
  background: linear-gradient(180deg, var(--cloud) 0%, #fff 55%);
}
.page-getsite--typed .reg-form {
  box-shadow: 0 20px 50px rgba(15, 118, 110, .1);
  border-color: #99f6e4;
}
.reg-form .field label {
  display: block; font-weight: 700; font-size: .88rem; margin-bottom: .35rem;
}
.reg-form .field input {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .72rem .85rem; background: #f8fafc;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.reg-form .field input:focus {
  outline: none; border-color: #14b8a6; background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .15);
}
.reg-form__legal { margin-top: .55rem; display: block; }
.reg-help .school-kinds__chips { margin: .75rem 0 1rem; }
.reg-help__back { display: inline-block; margin-top: .25rem; }
.reg-help__hr {
  border: 0; border-top: 1px solid var(--line); margin: 1rem 0;
}

/* Price cards equal height on 3-col */
.price-grid--3 .price-card { min-height: 100%; }
.price-grid--3 .price-card__desc { min-height: 4.2em; }
@media (max-width: 899px) {
  .price-grid--3 .price-card__desc { min-height: 0; }
}

/* Onboarding polish */
.page-onboarding .onb-card {
  border-color: #99f6e4;
  box-shadow: 0 20px 50px rgba(15, 118, 110, .1);
}
.page-onboarding .onb-form input[type="text"]:focus {
  border-color: #14b8a6;
}

/* Yandex Geosuggest dropdown */
.city-suggest-field { position: relative; }
.city-suggest-list {
  position: absolute;
  z-index: 40;
  left: 0; right: 0;
  top: calc(100% - .15rem);
  margin: 0;
  padding: .35rem;
  max-height: 16rem;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(11, 18, 32, .12);
}
.city-suggest-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: .55rem .7rem;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
}
.city-suggest-item:hover,
.city-suggest-item.is-active {
  background: #ecfdf5;
}
.city-suggest-item__title {
  font-weight: 700;
  font-size: .92rem;
}
.city-suggest-item__sub {
  font-size: .78rem;
  color: var(--muted);
}

/* ===== Marketing polish v15 (careful, non-breaking) ===== */

/* Focus accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 2px;
}

/* Layout helpers (replace inline styles) */
.grid-2--start { align-items: start; }
.faq--narrow { max-width: 760px; margin-inline: auto; }
.form-card--compact { padding: 1rem 1.15rem; }
.form-card--search {
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  overflow: visible;
}
.form-card--search .form-grid {
  overflow: visible;
}
.form-card--search .city-suggest-field {
  position: relative;
  z-index: 5;
  overflow: visible;
}
.form-card--search .city-suggest-list {
  z-index: 80;
}
.form-card--search .field--full,
.catalog-search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
}
.catalog-result-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1rem;
  margin: 0 0 1.15rem;
  padding: .85rem 1.1rem;
  border-radius: 14px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #0f766e;
  font-size: .92rem;
  font-weight: 600;
}
.catalog-result-bar__count strong {
  font-size: 1.05rem;
  color: #0b1220;
}
.catalog-result-bar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.catalog-chip {
  display: inline-flex;
  align-items: center;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #99f6e4;
  color: #0f766e;
  font-size: .8rem;
  font-weight: 700;
}
.footer-brand { margin-bottom: 1rem; }
.modal__actions--center { justify-content: center; }

/* Ghost button on dark surfaces (CTA) */
.btn--ghost-light {
  background: rgba(255, 255, 255, .06) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .28) !important;
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, .12) !important;
  border-color: rgba(255, 255, 255, .45) !important;
  color: #fff !important;
}

/* FAQ accordion polish */
.faq details {
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq details:hover {
  border-color: #b6cce0;
  box-shadow: 0 8px 20px rgba(11, 18, 32, .05);
}
.faq details[open] {
  border-color: #99f6e4;
  box-shadow: 0 10px 28px rgba(15, 118, 110, .08);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: .15rem;
}
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  transition: transform .15s ease, background .15s ease;
}
.faq details[open] summary::after {
  content: "�";
  background: #0f766e;
  border-color: #0f766e;
  color: #fff;
}
.faq__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.5rem;
  padding-top: .25rem;
}

/* Contact */
.contact-panel .contact-item strong + a,
.contact-panel .contact-item strong + span {
  display: block;
  margin-top: .15rem;
}
.captcha-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px dashed #c5d6e4;
}
.captcha-field img,
.captcha-field canvas {
  border-radius: 8px;
}
.captcha-field input {
  max-width: 12rem;
}

/* Catalog tiles */
.site-tile {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.site-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #b6cce0;
}
.site-tile__preview {
  overflow: hidden;
  position: relative;
}
.site-tile__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-tile__body .btn {
  align-self: flex-start;
}

/* Reviews page cards */
.review-card {
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #b6cce0;
}
.review-card blockquote {
  position: relative;
  padding-top: .15rem;
  quotes: none;
}
/* Decorative accent (no unicode glyph — was rendering as "?") */
.review-card blockquote::before {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #14b8a6, #0ea5e9);
  margin-bottom: .7rem;
}
.review-card__text {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.45;
}
.review-card__name { font-weight: 700; color: var(--ink-soft); }
.review-card__date {
  color: var(--muted);
  font-size: .86rem;
}
.review-card__date::before {
  content: "·";
  margin-right: .35rem;
  color: var(--muted);
}
.review-card .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
}

/* Filters polish */
.filters a, .filters button {
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .12s ease;
}
.filters a:hover {
  transform: translateY(-1px);
}
.filters a.is-active {
  background: linear-gradient(180deg, #1aa89a, var(--teal));
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 118, 110, .22);
}

/* CTA polish */
.cta-block {
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, .28), transparent 70%);
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }

/* 273-FZ steps */
.law-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  list-style: decimal;
}
.law-steps li {
  margin-bottom: .55rem;
  padding-left: .25rem;
  line-height: 1.5;
}
.law-note {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  line-height: 1.5;
}
.law-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.25rem;
}

/* Empty states on catalog / reviews */
.card--empty {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-style: dashed;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.card--empty h3 { margin-bottom: .4rem; }
.card--empty p { max-width: 28rem; margin: 0 auto 1.1rem; }
.card--empty .btn { margin: 0 .25rem; }

/* Pager active teal (align with brand) */
.pager__item.is-active span {
  background: linear-gradient(180deg, #1aa89a, var(--teal));
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 8px 16px rgba(15, 118, 110, .22);
}

/* Page hero slight polish */
.page-hero h1 {
  letter-spacing: -0.025em;
}

@media (max-width: 760px) {
  .faq summary { align-items: flex-start; }
  .cta-block::before { width: 180px; height: 180px; right: -40px; top: -60px; }
}
