/* АктивПрофи — светлая гамма как мокапы v2 (studio_bg_light + navy/teal) */
:root {
  --bg: #f4fafb;
  --bg-soft: #e8f3f5;
  --bg-elev: #ffffff;
  --lime: #00a2a4;
  --lime-dim: #07a9b1;
  --cyan: #0d8f91;
  --white: #ffffff;
  --ink: #001830;
  --muted: #5a6d7c;
  --glass-border: rgba(0, 24, 48, 0.1);
  --navy-brand: #001830;
  --navy-mid: #0c2844;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", system-ui, sans-serif;
  --max: 1180px;
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ——— Top bar ——— */
.topbar {
  position: fixed;
  z-index: 50;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.topbar-pill {
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 0.55rem 0.65rem 0.55rem 0.85rem;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 32px rgba(0, 24, 48, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-brand);
}

.brand-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  max-width: 14rem;
  line-height: 1.25;
}

.top-nav {
  display: none;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-nav a {
  color: var(--navy-mid);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.top-nav a:hover { color: var(--lime); text-decoration: none; }

@media (min-width: 900px) {
  .top-nav { display: flex; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-lime {
  background: var(--lime);
  color: var(--white);
}

.btn-lime:hover { background: var(--lime-dim); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--navy-brand);
  border-color: rgba(0, 24, 48, 0.25);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--navy-brand);
}

.btn-dark-pill {
  background: var(--navy-brand);
  color: var(--white);
  padding: 0.7rem 1.15rem;
  font-size: 0.85rem;
}

.btn-dark-pill:hover { background: var(--navy-mid); color: var(--white); }

.btn-lime-pill {
  background: var(--lime);
  color: var(--navy-brand);
  padding: 0.7rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-lime-pill:hover {
  filter: brightness(1.05);
  color: var(--navy-brand);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--navy-brand);
  text-decoration: none;
  padding: 0.75rem 0.25rem;
}

.btn-text:hover {
  color: var(--lime);
  text-decoration: none;
}

/* ——— Hero (светлый, как холст мокапа) ——— */
.hero {
  position: relative;
  min-height: auto;
  padding: 7.5rem 0 2.5rem;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(ellipse 55% 45% at 78% 35%, rgba(0, 162, 164, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 35% at 12% 15%, rgba(7, 169, 177, 0.1), transparent 55%),
    linear-gradient(180deg, #ecf6f8 0%, #f8fcfd 45%, #e0eef2 100%);
}

.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(90deg, transparent 24%, rgba(0, 162, 164, 0.08) 24% 24.1%, transparent 24.1%),
    linear-gradient(0deg, transparent 62%, rgba(0, 24, 48, 0.05) 62% 62.1%, transparent 62.1%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.hero-kicker {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy-brand);
}

.hero-kicker .lime { color: var(--lime); }

.hero h1 {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 14ch;
  color: var(--navy-brand);
}

.hero h1 .accent { color: var(--lime); }

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--navy-mid);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-bottom: 0;
}

.hero-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36ch;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  min-height: 400px;
  background:
    linear-gradient(160deg, rgba(0, 162, 164, 0.12), transparent 50%),
    linear-gradient(200deg, #ffffff, #e8f3f5);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 24, 48, 0.08);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 2.5rem 1.5rem 3.5rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 10%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 162, 164, 0.12), transparent 45%),
    linear-gradient(135deg, transparent 40%, rgba(0, 162, 164, 0.08) 40% 41%, transparent 41%),
    linear-gradient(45deg, transparent 55%, rgba(0, 24, 48, 0.05) 55% 56%, transparent 56%);
  pointer-events: none;
}

.hero-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  z-index: 1;
  max-width: 16rem;
}

.hero-visual img.logo-big {
  position: relative;
  z-index: 1;
  width: min(280px, 78%);
  filter: drop-shadow(0 12px 28px rgba(0, 24, 48, 0.12));
  animation: float 5s ease-in-out infinite;
}

.hero-callout {
  position: absolute;
  z-index: 2;
  right: 1.1rem;
  bottom: 1.2rem;
  max-width: 15.5rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 162, 164, 0.45);
  box-shadow: 0 10px 24px rgba(0, 24, 48, 0.08);
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--navy-mid);
}

.hero-callout strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy-brand);
  font-weight: 700;
}

.hero-trust {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 1.15rem 0 0;
  display: grid;
  gap: 0.85rem;
  border-top: 1px solid rgba(0, 162, 164, 0.22);
  color: var(--navy-mid);
  font-size: 0.92rem;
  font-weight: 600;
}

@media (min-width: 800px) {
  .hero-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.35rem;
  }

  .hero-trust li {
    padding: 0 1rem;
    border-left: 1px solid rgba(0, 162, 164, 0.25);
  }

  .hero-trust li:first-child {
    padding-left: 0;
    border-left: none;
  }
}

.hero-manifesto {
  margin: 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--navy-brand);
  color: #fff;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  box-shadow: 0 8px 20px rgba(0, 24, 48, 0.18);
}

.hero-manifesto-sub {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-mid);
  line-height: 1.35;
  max-width: 14rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.chip {
  position: absolute;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-brand);
  box-shadow: 0 6px 16px rgba(0, 24, 48, 0.06);
  max-width: 11.5rem;
  line-height: 1.25;
  z-index: 2;
}

.chip::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(0, 162, 164, 0.6);
  vertical-align: middle;
}

.chip-1 { top: 10%; left: 5%; }
.chip-2 { top: 18%; right: 4%; }
.chip-3 { bottom: 16%; left: 4%; }
.chip-4 { bottom: 10%; right: 5%; }

@media (max-width: 560px) {
  .hero-callout {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }

  .chip {
    font-size: 0.72rem;
    max-width: 9.5rem;
    padding: 0.35rem 0.65rem;
  }
  .chip-1 { top: 6%; left: 2%; }
  .chip-2 { top: 12%; right: 2%; }
  .chip-3 { bottom: 12%; left: 2%; }
  .chip-4 { bottom: 6%; right: 2%; }
}

/* ——— Sections ——— */
.section {
  padding: 5rem 0;
  position: relative;
  background: var(--bg);
  color: var(--ink);
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  margin-bottom: 2.25rem;
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-brand);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .features { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}

.feature {
  padding: 1.4rem 1.35rem;
  border-radius: 20px;
  background: var(--bg-elev);
  border: 1px solid var(--glass-border);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.feature:hover {
  border-color: rgba(0, 162, 164, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 24, 48, 0.06);
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-family: var(--display);
  font-weight: 600;
  color: var(--navy-brand);
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature .tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pains {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .pains { grid-template-columns: repeat(3, 1fr); }
}

.pain {
  padding: 1.5rem;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 24, 48, 0.04);
}

.pain-num {
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--lime);
  margin-bottom: 1rem;
}

.pain h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  font-family: var(--display);
  font-weight: 600;
  color: var(--navy-brand);
}

.pain p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.pain a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-brand);
  text-decoration: none;
  border-bottom: 2px solid var(--lime);
  align-self: flex-start;
}

.pain a:hover { color: var(--lime); }

.scenarios {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .scenarios { grid-template-columns: repeat(3, 1fr); }
}

.seg-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.seg-pill {
  font: inherit;
  cursor: pointer;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--white);
  color: var(--navy-brand);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.seg-pill:hover {
  border-color: rgba(0, 162, 164, 0.55);
}

.seg-pill.is-active {
  background: var(--navy-brand);
  border-color: var(--navy-brand);
  color: var(--white);
}

.feature[hidden],
.case-link[hidden] {
  display: none !important;
}

.scenario {
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(0, 162, 164, 0.3);
  background: rgba(0, 162, 164, 0.06);
}

.scenario h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--navy-brand);
}

.scenario p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.flow span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-mid);
}

.tariffs {
  display: grid;
  gap: 1.15rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .tariffs { grid-template-columns: repeat(3, 1fr); }
}

.tariff {
  padding: 1.6rem 1.4rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 8px 24px rgba(0, 24, 48, 0.04);
}

.tariff.popular {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px rgba(0, 162, 164, 0.25), 0 16px 40px rgba(0, 162, 164, 0.12);
  position: relative;
}

.badge {
  position: absolute;
  top: -0.7rem;
  right: 1.2rem;
  background: var(--lime);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tariff h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--navy-brand);
}

.tariff .for {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.tariff .price {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--cyan);
}

.tariff .term {
  margin: -0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.tariff ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}

.tariff li { margin-bottom: 0.4rem; }
.tariff .btn { margin-top: 0.5rem; width: 100%; }

.reviews {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .reviews { grid-template-columns: 1fr 1fr; }
}

.review {
  padding: 1.4rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--glass-border);
}

.review p {
  margin: 0 0 1rem;
  color: var(--navy-mid);
  font-size: 0.95rem;
}

.review strong { display: block; color: var(--navy-brand); }
.review span { color: var(--muted); font-size: 0.85rem; }

.cases-carousel {
  margin-top: 0.25rem;
}

.cases-carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.cases-carousel-counter {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-mid);
}

.cases-carousel-nav {
  display: flex;
  gap: 0.5rem;
}

.cases-carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--white);
  color: var(--navy-brand);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}

.cases-carousel-btn:hover:not(:disabled) {
  border-color: rgba(0, 162, 164, 0.5);
  transform: translateY(-1px);
}

.cases-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cases-carousel-viewport {
  overflow: hidden;
}

.cases-carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0 1rem;
}

.cases-carousel-track::-webkit-scrollbar {
  display: none;
}

.cases-carousel-track .case-link {
  flex: 0 0 calc(100% - 2.5rem);
  scroll-snap-align: start;
}

@media (min-width: 700px) {
  .cases-carousel-track .case-link {
    flex-basis: calc(50% - 0.5rem);
  }
}

@media (min-width: 1000px) {
  .cases-carousel-track .case-link {
    flex-basis: calc(33.333% - 0.67rem);
  }
}

.case-link {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0 0 1.25rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--lime);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  min-height: 100%;
  box-shadow: 0 8px 24px rgba(0, 24, 48, 0.04);
  overflow: hidden;
}

.case-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: var(--bg);
  margin: 0 0 0.35rem;
}

.case-link small,
.case-link strong,
.case-link .desc,
.case-link .result,
.case-link .meta {
  padding-left: 1.3rem;
  padding-right: 1.3rem;
}

.case-link small { padding-top: 0.35rem; }

.case-link .result {
  margin: 0;
  color: var(--navy-mid);
  font-size: 0.88rem;
  line-height: 1.4;
}

.case-link .result span {
  color: var(--cyan);
  font-weight: 700;
}

.case-link .meta .price {
  font-size: 0.88rem;
  line-height: 1.35;
}

.case-link:hover {
  border-color: rgba(0, 162, 164, 0.5);
  border-top-color: var(--lime);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 24, 48, 0.08);
}

.case-link small {
  display: block;
  color: var(--lime);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-link strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-brand);
}

.case-link .desc {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
  margin: 0;
}

.case-link .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 162, 164, 0.2);
}

.case-link .price {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cyan);
}

.case-link .cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-brand);
}

.cases-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.adjacent-task {
  margin-top: 1.75rem;
  padding: 1.5rem 1.4rem;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--glass-border);
}

.adjacent-task .eyebrow {
  margin: 0 0 0.4rem;
}

.adjacent-task h3 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-brand);
  line-height: 1.3;
}

.adjacent-task p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 52rem;
}

.adjacent-task .btn {
  display: inline-flex;
}

.modules {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .modules { grid-template-columns: 1fr 1fr; }
}

.module {
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px dashed rgba(0, 162, 164, 0.4);
  background: rgba(0, 162, 164, 0.05);
  font-size: 0.9rem;
}

.module strong { color: var(--navy-brand); }
.module span { color: var(--muted); }

.consult-steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .consult-steps { grid-template-columns: repeat(3, 1fr); }
}

.consult-step {
  padding: 1.4rem 1.3rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 24px rgba(0, 24, 48, 0.04);
}

.consult-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--navy-brand);
  color: var(--white);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.consult-step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--navy-brand);
}

.consult-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.consult-cta {
  margin: 1.5rem 0 0;
  text-align: center;
}

.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
}

.faq-item {
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  padding: 0.15rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 700;
  color: var(--navy-brand);
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-weight: 700;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-item a { color: var(--cyan); }

.form-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.founder {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 1.5rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 24px rgba(0, 24, 48, 0.04);
}

@media (min-width: 800px) {
  .founder {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem 2.25rem;
  }
}

.founder-badge {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--navy-brand);
  color: var(--lime-dim);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.founder h2 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.founder-lead {
  margin: 0 0 0.85rem;
  max-width: 40rem;
  color: var(--navy-mid);
  line-height: 1.55;
}

.founder-lead + .founder-lead {
  margin-top: -0.25rem;
}

.founder-points {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.founder-points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.founder-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--lime);
}

.footer-extra {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 18rem;
  line-height: 1.4;
}

.contact {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .contact { grid-template-columns: 1.1fr 0.9fr; }
}

.form-card,
.contact-card {
  padding: 1.6rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 24px rgba(0, 24, 48, 0.04);
}

.contact-card {
  background: var(--navy-brand);
  color: var(--white);
  border-color: transparent;
}

.contact-card p { color: rgba(255, 255, 255, 0.75); margin: 0 0 0.75rem; }
.contact-card a:not(.btn):not(.phone-big) { color: var(--lime-dim); }

.form {
  display: grid;
  gap: 0.85rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-brand);
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--bg);
  color: var(--ink);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 1px;
}

.form textarea { min-height: 100px; resize: vertical; }

.form button { width: fit-content; }

.form-status {
  margin: -0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--navy-brand);
}

.check {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 0.65rem !important;
  align-items: flex-start;
  font-weight: 400 !important;
  font-size: 0.78rem !important;
  color: var(--muted);
}

.check input { margin-top: 0.2rem; width: auto; }

.phone-big {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--lime-dim);
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem 0 1rem;
}

.phone-big:hover { color: #7fe0e2; text-decoration: none; }

.contact-email {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lime-dim);
  text-decoration: none;
  word-break: break-all;
}

.contact-email:hover {
  color: #7fe0e2;
  text-decoration: none;
}

.contact-card .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-card .btn-ghost:hover {
  border-color: var(--lime);
  color: var(--white);
}

.social-block {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.social-label {
  margin: 0 0 0.65rem !important;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55) !important;
}

.social-block .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
}

.footer-social .social-label {
  color: rgba(255, 255, 255, 0.45) !important;
  margin-bottom: 0.35rem !important;
}

.footer {
  padding: 2.5rem 0 3rem;
  background: var(--navy-brand);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 0.85rem;
}

.footer a { color: rgba(255, 255, 255, 0.65); }
.footer a:hover { color: var(--lime-dim); }

.compact-page {
  min-height: 100vh;
}

.legal-page {
  min-height: 100vh;
  padding-top: 5rem;
  background:
    radial-gradient(ellipse 45% 30% at 82% 8%, rgba(0, 162, 164, 0.12), transparent 65%),
    var(--bg);
}

.legal-page h1,
.legal-page h2 {
  max-width: 820px;
  color: var(--navy-brand);
}

.legal-page h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.legal-page h2 {
  margin: 2rem 0 0.5rem;
  font-size: 1.25rem;
}

.legal-page p {
  max-width: 860px;
  color: var(--muted);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
  border-block: 1px solid var(--glass-border);
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-100%); }
}
