/* ==========================================================================
   Public site
   Signature device: the signal line — a trace that starts jagged and settles
   into a steady climb. It's the shape of the thing this product sells.
   ========================================================================== */

/* --- ambient background --------------------------------------------------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(60vw 45vw at 78% -8%, rgba(31, 76, 85, .30), transparent 62%),
    radial-gradient(46vw 40vw at 6% 24%, rgba(232, 185, 107, .06), transparent 60%),
    radial-gradient(70vw 60vw at 50% 108%, rgba(79, 182, 193, .18), transparent 65%);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .35;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* --- header ---------------------------------------------------------------
   Dark glass, tinted with the palette — built for a white/light logo. */
.site-head {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  background: rgba(10, 39, 49, .38);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.site-head.is-stuck {
  background: rgba(10, 39, 49, .8);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, .5);
}
.site-head__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 14.5px;
  color: var(--mist);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--teal);
  transition: width .32s var(--ease);
}
.nav a:hover { color: var(--paper); }
.nav a:hover::after { width: 100%; }

.head-actions { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.5px;
  background: var(--paper);
  transition: transform .35s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 76px 0 auto;
  z-index: 89;
  background: rgba(10, 39, 49, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--pad) 30px;
  display: none;
  transform: translateY(-14px);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .3s;
}
.drawer.is-open { transform: none; opacity: 1; }
.drawer a {
  display: block;
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
.drawer .btn { margin-top: 22px; width: 100%; }

/* --- hero ----------------------------------------------------------------- */
.hero { padding: 148px 0 90px; position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.hero h1 {
  font-size: clamp(44px, 7.2vw, 92px);
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--teal) 12%, var(--amber) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: block;
  animation: rise 1s var(--ease) both;
  animation-delay: var(--d, 0ms);
}
@keyframes rise { from { transform: translateY(105%); } }

.hero__sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--mist); max-width: 46ch; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero__proof { display: flex; flex-wrap: wrap; gap: 34px; }
.proof__n {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -.03em;
  line-height: 1;
}
.proof__l { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--mist-dim); margin-top: 7px; }

/* the signature: a counselor & beneficiary in conversation, done in glass */
.hero-scene {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 480px;
  height: 480px;
  margin-inline: auto;
  padding: 20px;
  overflow: visible;
  contain: layout;
}

.blob {
  position: absolute;
  filter: blur(58px);
  border-radius: 60% 40% 70% 30% / 55% 45% 55% 45%;
  animation: blob-morph 13s ease-in-out infinite, blob-float 10s ease-in-out infinite;
  z-index: 0;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 55% 45% 55% 45%; }
  50%      { border-radius: 40% 60% 35% 65% / 50% 60% 40% 50%; }
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(16px, -20px); }
}
.blob--1 {
  width: 320px; height: 320px; top: -30px; left: -30px;
  background: radial-gradient(circle at 30% 30%, var(--teal-bright), var(--teal) 60%, transparent 80%);
  opacity: .5;
}
.blob--2 {
  width: 260px; height: 260px; bottom: -30px; right: -10px;
  background: radial-gradient(circle at 60% 40%, var(--amber), transparent 75%);
  opacity: .3;
  animation-duration: 15s, 11.5s;
}
.blob--3 {
  width: 220px; height: 220px; top: 38%; right: 6%;
  background: radial-gradient(circle, var(--teal-deep), transparent 75%);
  opacity: .4;
  animation-duration: 17s, 13s;
}

.glass-card {
  position: relative;
  z-index: 2;
  width: min(380px, 88%);
  padding: 30px 26px 26px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 44px 80px -40px rgba(0, 0, 0, .6);
  opacity: 0;
  animation: card-in .9s var(--ease) .15s forwards, card-float 7s ease-in-out 1.2s infinite;
}
@keyframes card-in { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes card-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.glass-card__figures {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  height: 148px;
  position: relative;
  margin-bottom: 20px;
}
.avatar-figure { width: 74px; opacity: 0; animation: figure-in .6s var(--ease) forwards; }
.avatar-figure--a { animation-delay: .5s; }
.avatar-figure--b { animation-delay: .7s; }
@keyframes figure-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.avatar-figure__head {
  width: 52px; height: 52px; border-radius: 50%;
  margin: 0 auto 8px;
  background: linear-gradient(155deg, var(--teal-bright), var(--teal));
  box-shadow: 0 12px 26px -14px rgba(0, 0, 0, .55);
}
.avatar-figure__body {
  width: 74px; height: 82px;
  border-radius: 40px 40px 12px 12px;
  background: linear-gradient(180deg, var(--teal), var(--teal-deep));
}
.avatar-figure--b .avatar-figure__head { background: linear-gradient(155deg, #F2DDB3, var(--amber)); }
.avatar-figure--b .avatar-figure__body { background: linear-gradient(180deg, var(--amber), #A97A3B); }

.speech-bubble {
  align-self: flex-start;
  margin-bottom: 62px;
  padding: 11px 15px;
  border-radius: 16px 16px 16px 4px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, .5);
  opacity: 0;
  animation: chip-in .6s ease .9s forwards;
}
.speech-bubble .typing i { background: var(--teal-deep); }

.glass-card__meta { text-align: center; }
.glass-card__meta b { display: block; font-family: var(--font-display); font-size: 16.5px; font-weight: 600; letter-spacing: -.02em; color: var(--paper); }

.hero-chip {
  position: absolute;
  z-index: 3;
  padding: 11px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, .6);
  opacity: 0;
  animation: chip-in .7s var(--ease) forwards, chip-float 5s ease-in-out infinite;
}
.hero-chip span { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; color: var(--mist-dim); margin-bottom: 4px; }
.hero-chip b { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--paper); white-space: nowrap; }
@keyframes chip-in { to { opacity: 1; } }
@keyframes chip-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.hero-chip--1 { top: 20px; left: -18px; animation-delay: 1.6s, 2.3s; }
.hero-chip--2 { top: 210px; right: -30px; animation-delay: 1.9s, 2.6s; }
.hero-chip--3 { bottom: 18px; left: 10px; animation-delay: 2.2s, 2.9s; }

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%; height: 90px;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-scene { height: 400px; max-width: 400px; }
  .hero-chip--1 { left: 0; }
  .hero-chip--2 { right: 0; top: 180px; }
  .hero-chip--3 { left: 0; }
}
@media (max-width: 460px) {
  .hero-chip { padding: 8px 12px; }
  .hero-chip b { font-size: 13px; }
  .glass-card { padding: 24px 20px 22px; }
}

/* --- marquee -------------------------------------------------------------- */
.ticker {
  border-block: 1px solid var(--line-soft);
  padding: 15px 0;
  overflow: hidden;
  background: rgba(255,255,255,.014);
}
.ticker__track { display: flex; gap: 46px; width: max-content; animation: slide 34s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.ticker__item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--mist-dim);
  white-space: nowrap;
}
.ticker__item i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); display: block; }

/* --- sections ------------------------------------------------------------- */
.sec { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.sec--panel { background: linear-gradient(180deg, transparent, rgba(22, 63, 73, .55) 12%, rgba(22, 63, 73, .55) 88%, transparent); }

.sec__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec__head h2 { font-size: clamp(30px, 4.4vw, 52px); margin-bottom: 16px; }
.sec__head.center { margin-inline: auto; text-align: center; }
.sec__head.center .eyebrow { justify-content: center; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }

/* why cards */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why {
  padding: 30px 26px 32px;
  border-radius: var(--r-xl);
  background: linear-gradient(170deg, rgba(28,76,87,.5), rgba(10,39,49,.5));
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .1);
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s;
}
.why:hover { transform: translateY(-6px); border-color: rgba(79,182,193,.4); }
.why__ix {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--teal);
  margin-bottom: 26px;
  display: block;
}
.why h3 { font-size: 22px; margin-bottom: 12px; }
.why p { color: var(--mist); font-size: 14.5px; margin: 0; }
.why::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.why:hover::after { transform: scaleX(1); }

/* course cards */
.course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }
.course {
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(22, 63, 73, .4);
  backdrop-filter: blur(16px) saturate(140%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), border-color .45s, background .45s;
}
.course:hover { transform: translateY(-6px); border-color: rgba(79,182,193,.45); background: rgba(28,76,87,.6); }
.course__img { aspect-ratio: 16/9; background: linear-gradient(140deg, var(--panel-2), var(--ink-2)); position: relative; overflow: hidden; }
.course__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.course:hover .course__img img { transform: scale(1.06); }
.course__glyph { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 46px; color: rgba(79,182,193,.22); letter-spacing: -.05em; }
/* no cover image or icon graphic — just the care-team badge, sitting
   inline at the top of the body instead of pinned over a now-absent
   image slot */
.course__care {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; margin-bottom: 12px;
  background: var(--teal-dim); border: 1px solid rgba(79,182,193,.3); color: var(--teal);
}
.course__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.course__body h3 { font-size: 18px; margin-bottom: 6px; }
.course__body p { color: var(--mist); font-size: 14px; margin: 0 0 16px; flex: 1; }
.course__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.chip {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--mist);
}
.chip--teal { color: var(--teal); border-color: rgba(79,182,193,.32); background: var(--teal-dim); }
.chip--amber { color: var(--amber); border-color: rgba(232,185,107,.3); background: var(--amber-dim); }
.course__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.price { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -.03em; }
.price small { font-size: 13px; color: var(--mist-dim); font-weight: 400; text-decoration: line-through; margin-left: 7px; }
.price span { display: block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--mist-dim); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { padding: 30px 26px 34px 0; border-right: 1px solid var(--line); position: relative; }
.step:last-child { border-right: 0; }
.step:not(:first-child) { padding-left: 26px; }
.step__n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: .2em;
  display: block;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--mist); font-size: 14px; margin: 0; }
.step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  height: 2px; width: 0;
  background: var(--amber);
  transition: width .8s var(--ease);
}
.steps.is-in .step::before { width: 100%; }
.steps.is-in .step:nth-child(2)::before { transition-delay: .18s; }
.steps.is-in .step:nth-child(3)::before { transition-delay: .36s; }
.steps.is-in .step:nth-child(4)::before { transition-delay: .54s; }

/* who we serve */
.serve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.serve {
  display: flex; gap: 20px;
  padding: 26px 26px 26px 24px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  background: rgba(15,33,48,.5);
  transition: background .4s, transform .4s var(--ease);
}
.serve:hover { background: rgba(28,76,87,.8); transform: translateX(4px); }
.serve h3 { font-size: 19px; margin-bottom: 4px; }
.serve__age { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 11px; }
.serve p { color: var(--mist); font-size: 14px; margin: 0; }

/* offers */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.offer { background: var(--ink-2); padding: 32px 26px 34px; transition: background .4s; }
.offer:hover { background: var(--panel); }
.offer__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--teal-dim);
  color: var(--teal);
  margin-bottom: 20px;
}
.offer h3 { font-size: 18px; margin-bottom: 9px; }
.offer p { color: var(--mist); font-size: 14px; margin: 0; }

/* companion strip */
.companion-card {
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(31, 76, 85, .16), rgba(15,48,57,.9) 55%);
  padding: clamp(30px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.chat-demo { display: grid; gap: 12px; }
.bubble {
  padding: 14px 17px;
  border-radius: 16px;
  font-size: 14.5px;
  max-width: 88%;
  border: 1px solid var(--line);
}
.bubble--me { background: var(--teal); color: #032019; margin-left: auto; border-color: transparent; border-bottom-right-radius: 5px; }
.bubble--ai { background: rgba(10,39,49,.7); border-bottom-left-radius: 5px; color: var(--paper); }
.bubble--ai b { color: var(--teal); }
.typing { display: inline-flex; gap: 4px; align-items: center; }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); display: block; animation: blink 1.3s infinite; }
.typing i:nth-child(2) { animation-delay: .2s; }
.typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }

/* quote */
.quote { text-align: center; max-width: 900px; margin-inline: auto; }
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -.035em;
  margin: 0 0 24px;
}
.quote cite { font-family: var(--font-mono); font-style: normal; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--amber); }

/* testimonials */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tst { padding: 26px; border-radius: var(--r); border: 1px solid var(--line); background: rgba(15,33,48,.5); }
.tst p { font-size: 15px; margin: 0 0 20px; }
.tst__who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal-dim); color: var(--teal);
  font-family: var(--font-mono); font-size: 12px;
  border: 1px solid rgba(79,182,193,.3);
  flex: none;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.tst__who b { display: block; font-size: 14px; }
.tst__who span { font-size: 12.5px; color: var(--mist-dim); }

/* faq */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  position: relative;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--teal);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--teal); }
.faq p { color: var(--mist); padding: 0 60px 24px 0; margin: 0; font-size: 15px; }

/* enquiry */
.talk {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(28,76,87,.85), rgba(10,39,49,.9));
  padding: clamp(28px, 4vw, 52px);
}
.talk__contact { display: grid; gap: 18px; margin-top: 28px; }
.talk__contact a { display: flex; gap: 13px; align-items: center; color: var(--mist); font-size: 14.5px; transition: color .2s; }
.talk__contact a:hover { color: var(--teal); }
.talk__contact .avatar { border-radius: 11px; }

/* footer */
.site-foot { border-top: 1px solid var(--line); padding: 64px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 46px; }
.foot-grid h4 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--mist-dim); font-weight: 400; margin-bottom: 16px; }
.foot-grid a, .foot-grid li { color: var(--mist); font-size: 14px; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-grid a:hover { color: var(--teal); }
.foot-bar { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line-soft); font-size: 13px; color: var(--mist-dim); }
.disclaimer { font-size: 12.5px; color: var(--mist-dim); max-width: 60ch; margin-top: 18px; line-height: 1.7; }

/* --- responsive ----------------------------------------------------------- */
@media (max-width: 1080px) {
  .why-grid, .offer-grid, .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-bottom: 1px solid var(--line); }
  .step:nth-child(2) { border-right: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav, .head-actions .btn--ghost { display: none; }
  .burger { display: block; }
  .drawer { display: block; }
  .hero__grid, .split, .companion-card, .talk { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .serve-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .why-grid, .offer-grid, .steps { grid-template-columns: 1fr; }
  .offer-grid { border-radius: var(--r); }
  .step { border-right: 0; padding-left: 0 !important; }
  /* testimonials become a swipeable slider on small screens — more "wow" than a stack */
  .tst-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 10px;
    margin: 0 calc(var(--pad) * -1);
    padding-left: var(--pad);
    padding-right: var(--pad);
    scrollbar-width: none;
  }
  .tst-grid::-webkit-scrollbar { display: none; }
  .tst-grid .tst { flex: 0 0 84%; scroll-snap-align: center; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero__proof { gap: 22px; }
  .proof__n { font-size: 25px; }
  .course-grid { grid-template-columns: 1fr; }
  .faq p { padding-right: 20px; }
}
