:root {
  --green-900: #0d3b2e;
  --green-800: #12503c;
  --green-700: #17694d;
  --green-600: #1f8a63;
  --green-500: #27a06f;
  --green-400: #45bd88;
  --green-300: #7fd6ac;
  --green-100: #d9f2e5;
  --green-50:  #eef8f2;

  --lime: #b6e94f;

  --ink: #10221c;
  --body: #384a43;
  --muted: #6d817a;
  --line: #e0ebe5;
  --bg: #ffffff;
  --bg-soft: #f4f9f6;

  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(13, 59, 46, 0.06);
  --shadow-md: 0 14px 40px rgba(13, 59, 46, 0.10);
  --shadow-lg: 0 30px 70px rgba(13, 59, 46, 0.16);

  --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(--green-700); text-decoration: none; }
a:hover { color: var(--green-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(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-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(--green-600), var(--green-500));
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 138, 99, 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(31, 138, 99, 0.42);
}
.btn--ghost {
  background: #fff;
  color: var(--green-800);
  border-color: var(--green-100);
}
.btn--ghost:hover { border-color: var(--green-400); color: var(--green-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(--green-600); }
.nav__cta { justify-self: end; }
.nav__cta-mobile { display: none; }

.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(--green-100) 0%, transparent 55%),
    radial-gradient(90% 90% at -10% 20%, var(--green-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(--green-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(--green-500); flex: none; }

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

.hero__chart {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 78%;
  z-index: 0;
  pointer-events: none;
  opacity: .9;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 42%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 42%);
}
.hero__chart svg { width: 100%; height: 100%; display: block; }
.hero__chart .grid-line { stroke: var(--green-100); stroke-width: 1; opacity: .7; }
.hero__chart .area { fill: url(#heroArea); }
.hero__chart .line {
  fill: none; stroke: url(#heroLine); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 2400; stroke-dashoffset: 2400;
  animation: draw 2.6s ease forwards .2s;
}
.hero__chart .line--soft {
  fill: none; stroke: var(--green-300); stroke-width: 2;
  vector-effect: non-scaling-stroke; opacity: .5;
  stroke-dasharray: 2400; stroke-dashoffset: 2400;
  animation: draw 3s ease forwards .1s;
}
.hero__chart .dot { fill: var(--green-500); }
.hero__chart .dot-halo { fill: var(--green-500); opacity: .28; animation: pulseDot 2.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.hero__chart .candle-up { fill: var(--green-400); opacity: .55; }
.hero__chart .candle-down { fill: #e6a4a0; opacity: .5; }
.hero__chart .wick { stroke: var(--green-300); stroke-width: 1.4; opacity: .55; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: .28; }
  50%      { transform: scale(1.9); opacity: .08; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__chart .line, .hero__chart .line--soft { animation: none; stroke-dashoffset: 0; }
  .hero__chart .dot-halo { animation: none; }
}

.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(--green-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(--green-100); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--green-50); color: var(--green-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(--green-800), var(--green-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(--green-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='%231f8a63' 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;
}

.live-card { padding: 26px; color: #fff; }
.live-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.live-tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.16); padding: 6px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700; letter-spacing: .06em; }
.live-tag .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: pulse 1.8s infinite; }
.live-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 13px 16px; margin-bottom: 11px;
}
.live-row b { font-weight: 700; }
.live-row small { display: block; opacity: .75; font-size: .78rem; }
.live-row .up { color: var(--lime); font-weight: 800; }
.live-row .val { text-align: right; }

.mentor { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.mentor__card {
  background: linear-gradient(160deg, var(--green-800), var(--green-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(--lime); 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(--green-50); border: 1px solid var(--green-100);
  color: var(--green-800); font-weight: 600; font-size: .88rem;
  padding: 7px 14px; border-radius: 999px;
}
.mentor__badges svg { width: 16px; height: 16px; color: var(--green-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(--green-50); color: var(--green-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(--green-600), var(--green-500));
  color: #fff; font-weight: 800; display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(31,138,99,.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(--green-900); color: #fff;
  padding: 10px 20px; border-radius: 999px; font-weight: 700;
}
.price-pill b { color: var(--lime); font-size: 1.15rem; }

.testimonials__viewport { overflow: hidden; }
.testimonials__track {
  display: flex;
  gap: 22px;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.testimonial {
  flex: 0 0 100%;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm);
}
.testimonial__stars { color: #f2b705; letter-spacing: 3px; margin-bottom: 12px; font-size: 1.05rem; }
.testimonial__text { color: var(--body); font-size: 1.05rem; margin-bottom: 20px; }
.testimonial__who { display: flex; align-items: center; gap: 13px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 800;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
}
.testimonial__who b { color: var(--ink); display: block; }
.testimonial__who small { color: var(--muted); }

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.testimonials__nav {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  display: grid; place-items: center; color: var(--green-700);
  transition: border-color .2s, color .2s;
}
.testimonials__nav:hover { border-color: var(--green-400); color: var(--green-600); }
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--green-100); cursor: pointer; padding: 0; }
.testimonials__dot.is-active { background: var(--green-500); width: 24px; border-radius: 999px; }

.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(--green-100); }
.tcard__quote { font-size: 3.4rem; line-height: .6; color: var(--green-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(--green-700); background: var(--green-50); border: 1px solid var(--green-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(--green-100); background: var(--green-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; }

.testimonials__dot.is-active { background: var(--green-500); width: 24px; border-radius: 999px; }

.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(--green-200, var(--green-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='%231f8a63' 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(182,233,79,.18) 0%, transparent 50%),
    linear-gradient(150deg, var(--green-900), var(--green-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(--green-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(--green-900); color: rgba(255,255,255,.8); font-size: .8rem; text-align: center; padding: 7px 16px; }

.page-hero { background: linear-gradient(150deg, var(--green-800), var(--green-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(--green-50); border: 1px solid var(--green-100);
  border-left: 4px solid var(--green-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(--green-400);
  box-shadow: 0 0 0 4px rgba(69,189,136,.16);
}
.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-form__ok {
  background: var(--green-50); border: 1px solid var(--green-100);
  color: var(--green-800); padding: 14px 16px; border-radius: 12px; font-weight: 600;
}
.contact-success { text-align: center; padding: 8px 4px; }
.contact-success__icon {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--green-50); color: var(--green-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(--green-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(--green-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(--green-500); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--green-100);
}
.timeline__time {
  display: inline-block; font-weight: 700; font-size: .82rem;
  color: var(--green-700); background: var(--green-50);
  border: 1px solid var(--green-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(--green-800), var(--green-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(--green-50); color: var(--green-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(--green-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='%231f8a63' 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(--green-600), var(--green-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; }
  .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%; }

  .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: 24px 0 30px;
    min-height: calc(100vh - 150px);
    min-height: calc(100dvh - 150px);
    display: flex;
    align-items: center;
  }
  .hero__inner { width: 100%; }
  .hero h1 { font-size: 1.8rem; 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: 300px; margin-left: auto; margin-right: auto;
  }
  .hero__note svg { margin-top: 3px; }
  .stats { margin-top: 32px; }
  .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; }
}
