/* =========================
   Compounding Club — styles
   ========================= */

:root {
  --bg: #fbfaf7;
  --bg-2: #f4f1ea;
  --surface: #ffffff;
  --ink: #0f1612;
  --ink-2: #2c3a33;
  --muted: #5a6a62;
  --line: #e6e2d8;
  --line-2: #ecead9;

  --green: #0f7a44;
  --green-2: #0c5f36;
  --green-soft: #e6f4ea;
  --green-tint: #f1f9f3;
  --accent: #15a05a;

  --dark: #0b1410;
  --dark-2: #142019;

  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(15,22,18,.04), 0 2px 8px rgba(15,22,18,.04);
  --shadow-md: 0 6px 24px rgba(15,22,18,.06), 0 2px 6px rgba(15,22,18,.04);
  --shadow-lg: 0 20px 60px rgba(15,22,18,.12), 0 6px 18px rgba(15,22,18,.06);

  --container: 1180px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* Reset */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-2); }

.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.kicker--light { color: #9ee7b8; }

.section { padding: 96px 0; }
.section__head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.05rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--green-tint);
  border: 1px solid var(--line-2);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow__dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(15,122,68,.15);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(15,122,68,.15); }
  50% { box-shadow: 0 0 0 8px rgba(15,122,68,.05); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--sm { padding: 9px 16px; font-size: .87rem; border-radius: 10px; }
.btn--lg { padding: 16px 24px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.1), 0 6px 20px rgba(15,22,18,.18);
}
.btn--primary:hover { background: var(--green-2); transform: translateY(-1px); box-shadow: 0 2px 4px rgba(0,0,0,.1), 0 10px 28px rgba(12,95,54,.28); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); }
.btn--dark {
  background: var(--ink); color: #fff; padding: 14px 22px;
}
.btn--dark:hover { background: var(--green-2); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,247,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(251,250,247,.95); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em;
}
.brand__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
}
.brand__name span { color: var(--green); }
.brand--light { color: #fff; }
.brand--light .brand__mark { background: var(--green); }
.brand--light .brand__name span { color: #9ee7b8; }

.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: .92rem; color: var(--ink-2); font-weight: 500;
  position: relative;
  padding: 6px 2px;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--green);
  transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; gap: 10px; }
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
}
.nav__burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  margin: 4px auto;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a {
  padding: 12px 8px;
  border-bottom: 1px solid var(--line-2);
  font-weight: 500;
}
.nav__mobile a:last-child { border: none; margin-top: 8px; }
.nav__mobile.is-open { display: flex; }

/* HERO */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  height: 600px; width: 600px;
  background: radial-gradient(circle at center, rgba(21,160,90,.10), transparent 60%);
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.hero__title em {
  font-style: italic;
  color: var(--green);
  font-family: 'Fraunces', serif;
  font-weight: 600;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex; gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.trust-strip li {
  display: flex; flex-direction: column; gap: 2px;
}
.trust-strip strong { font-size: 1.15rem; font-weight: 700; }
.trust-strip span { font-size: .8rem; color: var(--muted); }

/* Hero visual */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.hero__blob--1 {
  width: 280px; height: 280px;
  background: rgba(21,160,90,.18);
  top: 10%; left: -10%;
}
.hero__blob--2 {
  width: 220px; height: 220px;
  background: rgba(255, 200, 90, .18);
  bottom: 0; right: -5%;
}

.phone {
  position: relative;
  width: 290px;
  height: 580px;
  background: #0c1410;
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px #1c2a23;
  z-index: 2;
  transform: rotate(-3deg);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: rotate(-3deg) translateY(0); }
  50%     { transform: rotate(-3deg) translateY(-10px); }
}
.phone__notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.phone__screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 30px;
  overflow: hidden;
  padding: 46px 18px 24px;
}
.dash__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px;
}
.dash__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin: 0 0 4px; }
.dash__value { font-size: 1.45rem; font-weight: 700; margin: 0; font-family: 'Fraunces', serif; }
.dash__delta { font-size: .78rem; margin: 4px 0 0; font-weight: 500; }
.dash__delta.up { color: var(--green); }
.dash__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-size: .7rem; font-weight: 600;
}
.dash__chart {
  width: 100%; height: 110px;
  margin: 0 0 14px;
}
.dash__rows { display: flex; flex-direction: column; gap: 6px; }
.dash__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(15,22,18,.03);
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 500;
}
.dash__row .tag {
  font-size: .58rem;
  background: var(--ink);
  color: #fff;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: .05em;
}
.dash__row .up { color: var(--green); font-weight: 600; }
.dash__row .down { color: #c1432f; font-weight: 600; }

/* WhatsApp floating card */
.wa-card {
  position: absolute;
  bottom: 10%;
  right: -10px;
  width: 260px;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  transform: rotate(4deg);
  animation: float2 7s ease-in-out infinite;
  border: 1px solid var(--line);
}
@keyframes float2 {
  0%,100% { transform: rotate(4deg) translateY(0); }
  50%     { transform: rotate(4deg) translateY(-8px); }
}
.wa-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line-2); }
.wa-card__icon {
  width: 32px; height: 32px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
}
.wa-card__title { font-size: .82rem; font-weight: 600; margin: 0; }
.wa-card__meta { font-size: .7rem; color: var(--muted); margin: 2px 0 0; }
.wa-card__msg {
  background: #f3f8f4;
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 6px;
  font-size: .78rem;
  color: var(--ink-2);
}
.wa-card__msg.msg--alt { background: #fef9ec; }
.msg__name { font-size: .68rem; font-weight: 700; color: var(--green); margin: 0 0 2px; }
.wa-card__msg p { margin: 0; line-height: 1.4; }

/* LOGOS */
.logos {
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.logos__label {
  text-align: center;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 18px;
}
.logos__row {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.logos__row span {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--muted);
  font-size: 1.1rem;
  letter-spacing: -.01em;
  opacity: .75;
  transition: opacity .2s var(--ease);
}
.logos__row span:hover { opacity: 1; color: var(--ink); }

/* PAIN */
.pain { background: var(--bg); }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.pain__icon {
  width: 46px; height: 46px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.pain__card p { color: var(--muted); }

.pain__close {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.3;
}
.pain__close span { color: var(--green); font-style: italic; }

/* ABOUT */
.about { background: linear-gradient(to bottom, var(--bg), var(--bg-2)); }
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--green-soft);
}
.about__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: #fff;
  color: var(--green);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  padding: 24px 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}
.about__stats li { display: flex; flex-direction: column; }
.about__stats strong {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--green);
}
.about__stats span { font-size: .82rem; color: var(--muted); }

.about__quote {
  margin: 24px 0 0;
  padding: 18px 22px;
  border-left: 3px solid var(--green);
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}

/* COURSES */
.courses__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
.course-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.course-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--accent));
}
.course-card__head { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.badge {
  font-size: .72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.badge--green { background: var(--green); color: #fff; }
.badge--soft { background: var(--green-soft); color: var(--green); }
.course-card__title {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.course-card__desc { color: var(--muted); margin-bottom: 22px; }
.course-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.course-card__list li {
  font-size: .92rem;
  color: var(--ink-2);
  display: flex; align-items: flex-start; gap: 8px;
}
.check {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  font-size: .7rem; font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.course-card__price {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.price__now {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}
.price__was {
  text-decoration: line-through;
  color: var(--muted);
  margin-left: 10px;
  font-size: 1rem;
}
.price__tag {
  font-size: .78rem;
  color: var(--green);
  background: var(--green-soft);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
}
.course-card__foot {
  text-align: center;
  margin-top: 14px;
  font-size: .82rem;
  color: var(--muted);
}

.reviews { display: flex; flex-direction: column; gap: 14px; }
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.review:hover { border-color: var(--green); transform: translateY(-2px); }
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review__stars { margin-left: auto; color: #f5b821; font-size: .9rem; letter-spacing: 1px; }
.review__name { font-size: .92rem; font-weight: 600; margin: 0; }
.review__meta { font-size: .76rem; color: var(--muted); margin: 0; }
.review p { font-size: .92rem; color: var(--ink-2); margin: 0; line-height: 1.55; }

.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--accent));
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.avatar--lg { width: 46px; height: 46px; font-size: .95rem; }

/* WEBINAR */
.webinar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #e7ece8;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.webinar::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21,160,90,.25), transparent 70%);
  top: -30%; left: -10%;
  filter: blur(20px);
}
.webinar::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,184,33,.15), transparent 70%);
  bottom: -20%; right: -10%;
  filter: blur(40px);
}
.webinar__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.webinar__copy h2 { color: #fff; }
.webinar__copy p { color: #b6c2bc; font-size: 1.05rem; max-width: 480px; }
.webinar__points {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: flex; flex-direction: column; gap: 12px;
}
.webinar__points li {
  position: relative;
  padding-left: 28px;
  color: #d5dcd8;
  font-size: .95rem;
}
.webinar__points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.webinar__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.webinar__meta > div { display: flex; flex-direction: column; }
.webinar__meta strong { font-size: 1.05rem; color: #fff; font-family: 'Fraunces', serif; }
.webinar__meta span { font-size: .78rem; color: #92a09a; }

.webinar__form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.webinar__form h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.webinar__form-sub { font-size: .88rem; color: var(--muted); margin-bottom: 24px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field > span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.field input {
  padding: 13px 14px;
  font-size: .95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-family: inherit;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15,122,68,.12);
}
.field__phone {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field__phone:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(15,122,68,.12); }
.field__cc {
  display: grid; place-items: center;
  padding: 0 14px;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-2);
}
.field__phone input { border: none; background: transparent; flex: 1; }
.field__phone input:focus { box-shadow: none; }

.webinar__form-foot {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
}
.webinar__success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--green-soft);
  color: var(--green-2);
  border-radius: 10px;
  font-weight: 600;
  font-size: .92rem;
}

/* TESTIMONIALS */
.testimonials { background: var(--bg); }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.t-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.t-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.t-card__name { font-size: .95rem; font-weight: 600; margin: 0; }
.t-card__role { font-size: .8rem; color: var(--muted); margin: 0; }
.t-card blockquote {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  flex: 1;
}
.t-card__stars {
  color: #f5b821;
  letter-spacing: 2px;
  margin-top: 16px;
  font-size: 1rem;
}

/* NEWSLETTER */
.newsletter {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter h2 { margin-bottom: 8px; }
.newsletter p { color: var(--muted); margin: 0; }
.newsletter__form {
  display: flex;
  gap: 10px;
  position: relative;
  flex-wrap: wrap;
}
.newsletter__form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.newsletter__form input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15,122,68,.12);
}
.newsletter__msg {
  width: 100%;
  font-size: .88rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 4px;
}

/* FAQ */
.faq__wrap { max-width: 760px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 22px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq__item[open] { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  transition: transform .25s var(--ease);
  margin-left: 16px;
  line-height: 1;
}
.faq__item[open] .faq__chev { transform: rotate(45deg); }
.faq__item p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: #b6c2bc;
  padding: 72px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .brand { margin-bottom: 14px; }
.footer__brand p { color: #92a09a; font-size: .92rem; max-width: 280px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: #b6c2bc;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.socials a:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #fff;
  margin-bottom: 14px;
}
.footer__cols a {
  display: block;
  padding: 5px 0;
  font-size: .9rem;
  color: #92a09a;
  transition: color .15s var(--ease);
}
.footer__cols a:hover { color: var(--accent); }

.disclaimer {
  padding-top: 32px;
  font-size: .78rem;
  color: #6f7d77;
  line-height: 1.65;
}
.disclaimer p { color: #6f7d77; margin: 0 0 10px; }
.disclaimer strong { color: #b6c2bc; }

/* STICKY MOBILE CTA */
.sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 40;
  background: var(--ink);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* REVEAL animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== RESPONSIVE ============== */

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { min-height: 480px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 360px; margin: 0 auto; }
  .courses__grid { grid-template-columns: 1fr; gap: 24px; }
  .webinar__grid { grid-template-columns: 1fr; gap: 40px; }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .hero { padding: 32px 0 64px; }
  .hero__sub { font-size: 1rem; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-strip li { padding: 8px 0; }
  .pain__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .course-card { padding: 26px 22px; }
  .course-card__list { grid-template-columns: 1fr; }
  .course-card__price { flex-direction: column; gap: 10px; align-items: flex-start; }
  .webinar__form { padding: 26px 22px; }
  .t-grid { grid-template-columns: 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .logos__row { gap: 24px; }
  .logos__row span { font-size: .95rem; }
  .phone { width: 240px; height: 480px; }
  .wa-card { width: 220px; right: -10px; bottom: 6%; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__visual { min-height: 420px; }
  .phone { width: 220px; height: 440px; }
  .wa-card { width: 200px; padding: 10px; }
  .webinar__meta { flex-direction: column; gap: 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
