:root {
  --blue-900: #0b2545;
  --blue-800: #12386b;
  --blue-700: #1b4b8f;
  --blue-600: #2563c9;
  --blue-500: #2f74f0;
  --blue-400: #5f9bf7;
  --blue-300: #9fc2fb;
  --blue-100: #dbe9fd;
  --blue-50:  #eef4fe;

  --amber: #ffb020;
  --amber-soft: #ffca4a;

  --ink: #0c1a2e;
  --body: #3a4658;
  --muted: #6b7688;
  --line: #e3e9f1;
  --bg: #ffffff;
  --bg-soft: #f4f8fd;

  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 14px 40px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 30px 70px rgba(11, 37, 69, 0.18);

  --max: 1140px;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.55rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-600); }
img, svg { max-width: 100%; }
ul { margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 56px 0; }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead { font-size: 1.16rem; color: var(--muted); }

.section__head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section__head .lead { margin-bottom: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 99, 201, 0.32);
}
.btn--primary,
.btn--primary:link,
.btn--primary:visited,
.btn--primary:hover,
.btn--primary:focus { color: #fff !important; }
.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 99, 201, 0.42);
}
.btn--accent {
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: #4a2c00;
  box-shadow: 0 12px 26px rgba(255, 176, 32, 0.34);
}
.btn--accent,
.btn--accent:link,
.btn--accent:visited,
.btn--accent:hover,
.btn--accent:focus { color: #4a2c00 !important; }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255, 176, 32, 0.46); }
.btn--ghost {
  background: #fff;
  color: var(--blue-800);
  border-color: var(--blue-100);
}
.btn--ghost:hover { border-color: var(--blue-400); color: var(--blue-700); }
.btn--light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--light:hover { background: rgba(255,255,255,.24); color:#fff; }
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }
.btn--block { width: 100%; }

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  height: 74px;
}
.brand { display: inline-flex; align-items: center; font-weight: 800; color: var(--ink); font-size: 1.22rem; letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand__logo { height: 40px; width: auto; flex: none; display: block; }

.nav__menu { display: flex; justify-content: center; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav__links a { color: var(--body); font-weight: 600; font-size: .98rem; }
.nav__links a:hover { color: var(--blue-600); }
.nav__cta { justify-self: end; }
.nav__cta-mobile { display: none; }

.header .nav__cta .btn {
  padding: 9px 18px;
  font-size: .9rem;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(37, 99, 201, .22);
}
.header .nav__cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 201, .3);
}

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .22s ease, opacity .22s ease;
}
.nav__burger span::before { transform: translate(-50%, -7px); }
.nav__burger span::after  { transform: translate(-50%, 7px); }
.nav__burger.is-active span { background: transparent; }
.nav__burger.is-active span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav__burger.is-active span::after  { transform: translate(-50%, 0) rotate(-45deg); }

.hero {
  position: relative;
  padding: 76px 0 92px;
  background:
    radial-gradient(120% 120% at 85% -10%, var(--blue-100) 0%, transparent 55%),
    radial-gradient(90% 90% at -10% 20%, var(--blue-50) 0%, transparent 50%),
    #fff;
  overflow: hidden;
  text-align: center;
}
.hero__inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--blue-600); }
.hero__lead { font-size: 1.24rem; color: var(--body); margin: 0 auto 34px; max-width: 640px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__note { margin-top: 20px; font-size: .95rem; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.hero__note svg { width: 18px; height: 18px; color: var(--blue-500); flex: none; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--blue-100);
  padding: 8px 8px 8px 16px; border-radius: 999px;
  font-weight: 600; font-size: .92rem; color: var(--blue-800);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero__badge b { color: var(--blue-600); }
.hero__badge .pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--blue-500);
  box-shadow: 0 0 0 0 rgba(47,116,240,.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(47,116,240,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(47,116,240,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,116,240,0); }
}

.hero__blob { position: absolute; z-index: 1; opacity: .5; filter: blur(4px); }
.hero__blob--1 { top: -40px; right: -60px; width: 320px; }
.hero__blob--2 { bottom: -80px; left: -70px; width: 280px; }

.stats { margin-top: 64px; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat__num { font-size: 2.1rem; font-weight: 800; color: var(--blue-700); letter-spacing: -.02em; }
.stat__label { font-size: .95rem; color: var(--muted); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
  margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--blue-800), var(--blue-600));
  position: relative;
}
.checklist { list-style: none; margin: 24px 0 0; }
.checklist li { position: relative; padding: 9px 0 9px 38px; color: var(--body); }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232563c9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* Calculadora */
.calc { display: grid; grid-template-columns: 1.15fr 1fr; gap: 30px; align-items: stretch; }
.calc__controls {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.calc__field { margin-bottom: 30px; }
.calc__field:last-child { margin-bottom: 0; }
.calc__label { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.calc__label span { font-weight: 700; color: var(--ink); font-size: 1rem; }
.calc__value { font-weight: 800; color: var(--blue-700); font-size: 1.2rem; letter-spacing: -.01em; }
.calc__range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 999px;
  background: var(--blue-100); outline: none; cursor: pointer;
}
.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border: 3px solid #fff; box-shadow: 0 3px 10px rgba(37,99,201,.45);
  cursor: pointer;
}
.calc__range::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue-600); border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(37,99,201,.45); cursor: pointer;
}
.calc__minmax { display: flex; justify-content: space-between; margin-top: 8px; font-size: .82rem; color: var(--muted); }
.calc__panel {
  border-radius: var(--radius-lg);
  padding: 36px 32px; color: #fff;
  background:
    radial-gradient(120% 130% at 90% 0%, rgba(255,176,32,.22) 0%, transparent 52%),
    linear-gradient(160deg, var(--blue-900), var(--blue-700));
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.calc__panel-top { font-size: .95rem; color: rgba(255,255,255,.75); letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }
.calc__quota { font-size: clamp(2.2rem, 6vw, 3rem); font-weight: 800; letter-spacing: -.02em; margin: 6px 0 2px; }
.calc__quota-sub { color: rgba(255,255,255,.75); font-size: .95rem; }
.calc__rows { margin: 24px 0; border-top: 1px solid rgba(255,255,255,.16); }
.calc__row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .98rem; }
.calc__row span { color: rgba(255,255,255,.8); }
.calc__row b { font-weight: 800; }
.calc__row .amber { color: var(--amber-soft); }
.calc__panel .btn { margin-top: auto; }
.calc__disclaimer { font-size: .78rem; color: rgba(255,255,255,.55); margin: 14px 0 0; text-align: center; }

.rate-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  align-self: flex-start; margin-bottom: 18px;
}
.rate-pill b { color: var(--amber-soft); }

.mentor { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.mentor__card {
  background: linear-gradient(160deg, var(--blue-800), var(--blue-600));
  border-radius: var(--radius-lg); padding: 34px; color: #fff;
  box-shadow: var(--shadow-lg); text-align: center;
}
.mentor__photo {
  width: 150px; height: 150px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,.25); background: #fff;
  margin: 0 auto 18px; display: block;
  object-fit: cover; object-position: center;
}
.mentor__card h3 { color: #fff; margin-bottom: 2px; }
.mentor__role { color: var(--amber-soft); font-weight: 600; font-size: .95rem; }
.mentor__socials { display: flex; justify-content: center; gap: 20px; margin-top: 18px; font-size: .9rem; }
.mentor__socials b { color: #fff; display: block; font-size: 1.2rem; }
.mentor__socials span { opacity: .8; }
.mentor__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.mentor__badges span {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  color: var(--blue-800); font-weight: 600; font-size: .88rem;
  padding: 7px 14px; border-radius: 999px;
}
.mentor__badges svg { width: 16px; height: 16px; color: var(--blue-600); }

.learn-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.learn-item { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.learn-item:last-child { border-bottom: none; }
.learn-item__ico {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: var(--blue-50); color: var(--blue-600);
  display: grid; place-items: center;
}
.learn-item__ico svg { width: 20px; height: 20px; }
.learn-item b { color: var(--ink); display: block; }
.learn-item span { color: var(--muted); font-size: .94rem; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 26px 28px;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -18px; left: 26px;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: #fff; font-weight: 800; display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(37,99,201,.35);
}
.step h3 { margin-top: 10px; }
.step p { color: var(--muted); margin: 0; }

.price-pill {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--blue-900); color: #fff;
  padding: 10px 20px; border-radius: 999px; font-weight: 700;
}
.price-pill b { color: var(--amber-soft); font-size: 1.15rem; }

.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.tcard__quote { font-size: 3.4rem; line-height: .6; color: var(--blue-100); font-weight: 800; height: 26px; }
.tcard__tag {
  align-self: flex-start;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--blue-700); background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 4px 11px; border-radius: 999px; margin-bottom: 14px;
}
.tcard__stars { color: #f2b705; letter-spacing: 2px; font-size: 1rem; margin-bottom: 12px; }
.tcard__text { color: var(--body); font-size: 1rem; margin: 0 0 22px; }
.tcard__who { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.tcard__photo {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  border: 2px solid var(--blue-100); background: var(--blue-50);
  object-fit: cover; object-position: center;
}
.tcard__who b { color: var(--ink); display: block; font-size: .98rem; }
.tcard__who small { color: var(--muted); font-size: .86rem; }

.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 14px; overflow: hidden; }
.faq__item.is-open { border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-size: 1.06rem; font-weight: 700; color: var(--ink);
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: inherit;
}
.faq__q::after {
  content: ""; flex: none; width: 22px; height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563c9' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; transition: transform .25s ease;
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__item.is-open .faq__a { max-height: 400px; }
.faq__a p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

.cta-band {
  background:
    radial-gradient(120% 130% at 90% 0%, rgba(255,176,32,.20) 0%, transparent 50%),
    linear-gradient(150deg, var(--blue-900), var(--blue-700));
  color: #fff; border-radius: var(--radius-lg);
  padding: 60px 40px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto 28px; font-size: 1.12rem; }

.footer { background: var(--blue-900); color: rgba(255,255,255,.78); padding: 62px 0 30px; margin-top: 0; }
.footer a { color: rgba(255,255,255,.78); }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand__logo { height: 36px; }
.footer__about { max-width: 340px; font-size: .96rem; }
.footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; font-size: .96rem; }
.footer__disclaimer {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px; font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.6;
}
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 20px; font-size: .85rem; }

.riskbar { background: var(--blue-900); color: rgba(255,255,255,.8); font-size: .8rem; text-align: center; padding: 7px 16px; }

.page-hero { background: linear-gradient(150deg, var(--blue-800), var(--blue-600)); color: #fff; padding: 62px 0; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,.85); margin: 0; }
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; margin: 0 0 1rem; }
.prose ul li { margin-bottom: .5rem; }
.prose .updated { color: var(--muted); font-size: .9rem; }
.callout {
  background: var(--blue-50); border: 1px solid var(--blue-100);
  border-left: 4px solid var(--blue-500);
  border-radius: 12px; padding: 18px 22px; margin: 24px 0;
}
.callout p:last-child { margin: 0; }

.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; color: var(--ink); font-size: .95rem; }
.field input, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(95,155,247,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field__msg { display: none; color: #c0392b; font-size: .86rem; }
.field--error input, .field--error textarea { border-color: #e0a4a0; box-shadow: 0 0 0 4px rgba(224,164,160,.18); }
.field--error .field__msg { display: block; }
.contact-success { text-align: center; padding: 8px 4px; }
.contact-success__icon {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-600);
  display: grid; place-items: center; animation: popIn .4s ease;
}
.contact-success__icon svg { width: 36px; height: 36px; }
.contact-success h3 { margin-bottom: 8px; }
.contact-success p { color: var(--muted); margin-bottom: 18px; }
@keyframes popIn { 0% { transform: scale(.6); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.contact-info .info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .info-item svg { width: 24px; height: 24px; color: var(--blue-600); flex: none; margin-top: 3px; }
.contact-info .info-item b { display: block; color: var(--ink); }
.contact-info .info-item span { color: var(--muted); }

.timeline { max-width: 720px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px;
  width: 2px; background: var(--blue-100);
}
.timeline__item { position: relative; padding: 0 0 30px 60px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: 12px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-500); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue-100);
}
.timeline__time {
  display: inline-block; font-weight: 700; font-size: .82rem;
  color: var(--blue-700); background: var(--blue-50);
  border: 1px solid var(--blue-100); padding: 3px 11px; border-radius: 999px;
  margin-bottom: 8px;
}
.timeline__item h3 { font-size: 1.12rem; margin: 0 0 5px; }
.timeline__item p { color: var(--muted); margin: 0; }

.compare { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.compare__col {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
}
.compare__col--accent { background: linear-gradient(165deg, var(--blue-800), var(--blue-600)); color: #fff; border: none; }
.compare__col--accent h3, .compare__col--accent p { color: #fff; }
.compare__head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.compare__ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: grid; place-items: center; background: var(--blue-50); color: var(--blue-600);
}
.compare__col--accent .compare__ico { background: rgba(255,255,255,.16); color: #fff; }
.compare__ico svg { width: 24px; height: 24px; }
.compare__list { list-style: none; margin: 16px 0 0; }
.compare__list li { position: relative; padding: 8px 0 8px 28px; font-size: .98rem; }
.compare__list li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%232563c9' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.compare__col--accent .compare__list li::before {
  background-color: rgba(255,255,255,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.error-page { text-align: center; padding: 90px 0; }
.error-page__code {
  font-size: clamp(5rem, 18vw, 10rem); font-weight: 800; line-height: .9;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 6px;
}
.error-page h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.error-page p { color: var(--muted); max-width: 460px; margin: 0 auto 28px; }
.error-page__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.error-page__links { margin-top: 30px; font-size: .95rem; }
.error-page__links a { margin: 0 10px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .calc { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .tcards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__menu {
    position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px 22px 22px; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__menu.is-open { display: block; }
  .nav__links {
    flex-direction: column; align-items: stretch; gap: 4px;
  }
  .nav__links a { padding: 10px 0; }
  .nav__cta-mobile { display: block; margin-top: 12px; }
  .nav__cta-mobile .btn {
    width: 100%;
    padding: 11px 20px;
    font-size: .92rem;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(37, 99, 201, .22);
  }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .grid, .grid--2, .grid--4, .steps { grid-template-columns: 1fr; }
  .tcards { grid-template-columns: 1fr; }
  .mentor { grid-template-columns: 1fr; gap: 34px; }
  .learn-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .cta-band { padding: 46px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }

  .hero { padding: 46px 0 56px; }
  .stats { margin-top: 40px; }
}
@media (max-width: 560px) {
  .brand__logo { height: 32px; }
  .hero { padding: 34px 0 40px; }
  .hero h1 { font-size: 1.9rem; margin-bottom: 12px; }
  .hero__badge { font-size: .82rem; padding: 6px 8px 6px 13px; margin-bottom: 18px; }
  .hero__lead { font-size: 1.08rem; margin-bottom: 26px; }
  .hero__note {
    display: flex; justify-content: center; text-align: center;
    align-items: flex-start; gap: 7px; margin-top: 18px;
    font-size: .9rem; max-width: 320px; margin-left: auto; margin-right: auto;
  }
  .hero__note svg { margin-top: 3px; }
  .stats { margin-top: 32px; }
  .calc__controls, .calc__panel { padding: 26px 22px; }
  .section { padding: 48px 0; }
  .section--tight { padding: 34px 0; }
  .section__head { margin-bottom: 34px; }
}
@media (max-width: 460px) {
  body { font-size: 16px; }
  .stats__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__cta { flex-direction: column; gap: 10px; }
}

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(11,37,69,.12);
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform .28s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.sticky-cta__text { display: grid; gap: 2px; }
.sticky-cta__text b { color: var(--ink); font-size: .98rem; }
.sticky-cta__text span { color: var(--muted); font-size: .82rem; }
.sticky-cta .btn { padding: 12px 22px; font-size: .95rem; white-space: nowrap; }
@media (min-width: 861px) { .sticky-cta { display: none !important; } }
@media (max-width: 460px) {
  .sticky-cta__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .sticky-cta .btn { width: 100%; }
}
