@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,700&display=swap');

:root {
  --ink: #102e35;
  --deep: #092a31;
  --mint: #b9e2ce;
  --lime: #d2f168;
  --paper: #f6f5f0;
  --muted: #63767a;
  --sand-1: #e9e6dc;
  --sand-2: #e2ded1;
  --teal-accent: #508b76;
  --teal-dark: #3e6c66;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
}

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

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   Typography Utilities & Shared Headings
   ========================================================================== */
.eyebrow {
  letter-spacing: 0.16em;
  color: var(--teal-dark);
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-label {
  letter-spacing: 0.16em;
  color: #568779;
  margin-bottom: 48px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(70px, 9vw, 140px) clamp(24px, 7vw, 140px);
}

.hero h1,
.statement h2,
.program h2,
.offer h2,
.teacher h2,
.proof h2,
.gains-title h2,
.news-content h2,
.faq h2,
.quote-block blockquote {
  letter-spacing: -0.065em;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 800;
  line-height: 0.96;
}

.hero h1 em,
.statement h2 em,
.program h2 em {
  font-style: normal;
  font-weight: 800;
  color: var(--teal-accent);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--deep);
  color: #ffffff;
  border: 1px solid var(--deep);
  letter-spacing: 0.04em;
  padding: 16px 26px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.button:hover {
  background: var(--mint);
  color: var(--deep);
  border-color: var(--mint);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(9, 42, 49, 0.15);
}

.button span {
  margin-left: 14px;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button-small {
  padding: 10px 18px;
  font-size: 12px;
}

.button-light {
  background: var(--deep);
  color: #ffffff;
  width: 100%;
  padding: 18px 24px;
  font-size: 14px;
}

.button-light:hover {
  background: #ffffff;
  color: var(--deep);
  border-color: #ffffff;
}

.text-link {
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, border-color 0.2s;
}

.text-link:hover {
  opacity: 0.75;
}

.text-link span {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateY(2px);
}

/* ==========================================================================
   Header / Topbar
   ========================================================================== */
.topbar {
  z-index: 100;
  background: rgba(246, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 46, 53, 0.15);
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  position: sticky;
  top: 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 36px;
}

.brand img {
  height: 34px;
  width: auto;
}

.nav {
  gap: 32px;
  margin-left: auto;
  margin-right: 36px;
  display: flex;
  align-items: center;
}

.nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-accent);
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--teal-dark);
}

.nav a:hover::after {
  width: 100%;
}

.menu {
  background: transparent;
  border: 0;
  display: none;
  cursor: pointer;
  padding: 8px;
}

.menu i {
  background: var(--ink);
  width: 24px;
  height: 2px;
  display: block;
  margin: 4px 0;
  transition: all 0.2s;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 80px);
  display: grid;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid rgba(16, 46, 53, 0.12);
}

.hero-copy {
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 5vw, 80px) 80px;
  display: flex;
}

.hero h1 {
  font-size: clamp(44px, 5.4vw, 84px);
  max-width: 820px;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.hero-description {
  color: #365158;
  max-width: 520px;
  margin: 36px 0 34px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  align-items: center;
  gap: 28px;
  display: flex;
  flex-wrap: wrap;
}

.hero-visual {
  background: var(--deep);
  color: #ffffff;
  flex-direction: column;
  justify-content: space-between;
  min-height: 580px;
  padding: clamp(36px, 4vw, 68px);
  display: flex;
  position: relative;
  overflow: hidden;
}

.orb {
  border: 1px solid rgba(210, 241, 104, 0.5);
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
}

.orb-one {
  width: 640px;
  height: 640px;
  top: -180px;
  right: -260px;
  animation: pulse-slow 8s infinite alternate ease-in-out;
}

.orb-two {
  background: rgba(185, 226, 206, 0.08);
  width: 380px;
  height: 380px;
  bottom: -220px;
  right: 120px;
}

@keyframes pulse-slow {
  0% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  100% { transform: scale(1.04) rotate(4deg); opacity: 1; }
}

.circle-label {
  background: var(--lime);
  width: 146px;
  height: 146px;
  color: var(--deep);
  text-align: center;
  letter-spacing: 0.13em;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  display: flex;
  position: absolute;
  top: 12%;
  right: 14%;
  transform: rotate(10deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.circle-label:hover {
  transform: rotate(0deg) scale(1.05);
}

.headline-stack {
  letter-spacing: -0.09em;
  z-index: 1;
  flex-direction: column;
  margin-top: 70px;
  font-family: var(--font-main);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 800;
  line-height: 0.86;
  display: flex;
  text-transform: uppercase;
}

.headline-stack span:nth-child(2),
.headline-stack span:nth-child(4) {
  color: var(--mint);
  margin-left: 14%;
}

.headline-stack span:nth-child(3) {
  margin-left: 6%;
}

.hero-note {
  z-index: 1;
  max-width: 290px;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #e0ece9;
}

.hero-visual::after {
  content: "";
  border: 1px solid var(--lime);
  width: 84px;
  height: 84px;
  box-shadow: 0 0 0 13px #092a31, 0 0 0 14px var(--mint);
  border-radius: 50%;
  position: absolute;
  bottom: 8%;
  right: 7%;
}

/* ==========================================================================
   Ticker Marquee
   ========================================================================== */
.ticker-wrapper {
  background: var(--lime);
  color: var(--deep);
  height: 62px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(16, 46, 53, 0.12);
}

.ticker {
  white-space: nowrap;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 24s linear infinite;
  padding-left: 20px;
}

.ticker span {
  display: inline-block;
}

.ticker b {
  font-size: 18px;
  opacity: 0.7;
}

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

/* ==========================================================================
   01 — A Lacuna
   ========================================================================== */
.news-section {
  grid-template-columns: 20% 1fr;
  gap: 30px;
  display: grid;
  background: var(--paper);
}

.news-content h2 {
  max-width: 660px;
  margin: 0 0 60px;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 0.95;
}

.news-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  display: grid;
}

.news-list {
  border-top: 1px solid rgba(16, 46, 53, 0.25);
}

.news-list p {
  letter-spacing: -0.035em;
  border-bottom: 1px solid rgba(16, 46, 53, 0.25);
  margin: 0;
  padding: 18px 0;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.1vw, 28px);
  color: var(--ink);
  font-style: italic;
}

.news-answer {
  max-width: 420px;
  font-size: 20px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-answer p {
  margin: 0 0 24px;
  color: var(--ink);
  font-weight: 500;
}

.news-answer .small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.news-image {
  border-top: 1px solid rgba(16, 46, 53, 0.25);
  grid-template-columns: minmax(260px, 0.7fr) 1fr;
  align-items: end;
  gap: 40px;
  margin-top: 72px;
  padding-top: 32px;
  display: grid;
}

.news-image img {
  object-fit: cover;
  width: 100%;
  max-height: 330px;
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(16, 46, 53, 0.08);
}

.news-image p {
  color: #3d5a60;
  max-width: 440px;
  margin: 0;
  padding-bottom: 12px;
  font-size: 17px;
  line-height: 1.5;
}

.news-image p span {
  color: #568779;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 800;
  display: block;
  text-transform: uppercase;
}

/* ==========================================================================
   A Formação (Statement)
   ========================================================================== */
.statement {
  background: var(--mint);
  color: var(--deep);
  border-top: 1px solid rgba(16, 46, 53, 0.1);
  border-bottom: 1px solid rgba(16, 46, 53, 0.1);
}

.statement h2 {
  max-width: 1150px;
  font-size: clamp(40px, 5.5vw, 82px);
  color: var(--deep);
}

.statement h2 em {
  color: var(--deep);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: rgba(9, 42, 49, 0.3);
  text-underline-offset: 8px;
}

.statement-body {
  max-width: 480px;
  margin: 48px 0 0 auto;
  font-size: 18.5px;
  line-height: 1.55;
  color: #1a4249;
  font-weight: 500;
}

/* ==========================================================================
   02 — O Que Muda (Gains)
   ========================================================================== */
.gains {
  background: var(--deep);
  color: #f8f7f1;
}

.gains .section-label {
  color: var(--mint);
}

.gains-title {
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 70px;
  display: flex;
}

.gains-title h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 800;
  color: #ffffff;
}

.gains-title p {
  color: #c1d1cf;
  max-width: 340px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.gain-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.gain {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 25px 25px 0;
  padding: 32px 28px 40px 0;
  position: relative;
  transition: transform 0.2s ease;
}

.gain:hover {
  transform: translateY(-3px);
}

.gain:nth-child(3n) {
  margin-right: 0;
}

.gain span {
  letter-spacing: 0.12em;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.gain i {
  color: var(--mint);
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
}

.gain h3 {
  letter-spacing: -0.04em;
  margin: 22px 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.gain p {
  color: #c1d1cf;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

/* ==========================================================================
   03 — Programa
   ========================================================================== */
.program {
  background: var(--sand-1);
}

.program-intro {
  grid-template-columns: 20% 1fr;
  gap: 30px;
  margin-bottom: 60px;
  display: grid;
}

.program h2 {
  font-size: clamp(38px, 5vw, 72px);
}

.program-list {
  border-top: 1px solid rgba(16, 46, 53, 0.25);
  margin-left: 20%;
}

.program-item {
  border-bottom: 1px solid rgba(16, 46, 53, 0.25);
  grid-template-columns: 80px 1fr 30px;
  gap: 20px;
  padding: 28px 0;
  display: grid;
  align-items: start;
  cursor: pointer;
  transition: background 0.2s;
}

.program-item:hover {
  background: rgba(16, 46, 53, 0.03);
}

.program-item > span {
  letter-spacing: 0.14em;
  padding-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal-dark);
}

.program-item h3 {
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  font-size: 25px;
  font-weight: 700;
  color: var(--ink);
}

.program-item p {
  color: #466167;
  max-width: 540px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.program-item b {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  transition: transform 0.2s;
  padding-top: 4px;
}

.program-item:hover b {
  transform: translate(2px, -2px);
}

/* ==========================================================================
   Frase Central (Quote Block)
   ========================================================================== */
.quote-block {
  background: var(--lime);
  color: var(--deep);
  padding: clamp(70px, 9vw, 140px) clamp(24px, 8vw, 120px);
}

.quote-inner {
  max-width: 1060px;
  margin: auto;
}

.quote-mark {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 130px;
  line-height: 0.4;
  color: var(--deep);
  opacity: 0.85;
}

.quote-block blockquote {
  letter-spacing: -0.065em;
  margin: 28px 0 42px;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.98;
  font-weight: 800;
  color: var(--deep);
}

.quote-block span {
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--deep);
  opacity: 0.9;
}

/* ==========================================================================
   Quem Conduz (Felipe Chad)
   ========================================================================== */
.teacher {
  background: var(--paper);
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  display: grid;
}

.teacher-photo {
  aspect-ratio: 4 / 5;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  box-shadow: 16px 16px 0 var(--lime);
  border-radius: 2px;
}

.teacher-photo img {
  object-fit: cover;
  object-position: center 15%;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.teacher-photo:hover img {
  transform: scale(1.03);
}

.photo-caption {
  color: #ffffff;
  letter-spacing: -0.08em;
  font-family: var(--font-main);
  font-size: 34px;
  font-weight: 900;
  line-height: 0.8;
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.teacher h2 {
  margin-bottom: 32px;
  font-size: clamp(36px, 4.4vw, 64px);
}

.teacher-copy > p:not(.eyebrow) {
  color: #3d5a60;
  max-width: 580px;
  font-size: 16.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.teacher-copy > p strong {
  color: var(--ink);
  font-weight: 700;
}

.teacher-credentials {
  border-top: 1px solid #bcc6c2;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 36px;
  padding-top: 20px;
  display: flex;
}

.teacher-credentials span {
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

/* ==========================================================================
   Credibilidade (A 3P Capital)
   ========================================================================== */
.proof {
  background: var(--sand-2);
}

.proof h2 {
  max-width: 820px;
  font-size: clamp(38px, 4.8vw, 70px);
}

.proof > p:not(.eyebrow) {
  color: #3d5a60;
  max-width: 520px;
  margin: 36px 0 68px auto;
  font-size: 17px;
  line-height: 1.55;
}

.proof-numbers {
  border-top: 1px solid rgba(16, 46, 53, 0.25);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.proof-numbers div {
  padding-top: 24px;
}

.proof-numbers strong {
  letter-spacing: -0.065em;
  font-family: var(--font-main);
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 800;
  display: block;
  color: var(--ink);
}

.proof-numbers span {
  color: #557075;
  max-width: 200px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  display: block;
}

/* ==========================================================================
   Oferta & Inscrição
   ========================================================================== */
.offer {
  background: var(--deep);
  color: #ffffff;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  display: grid;
}

.offer .eyebrow {
  color: var(--mint);
}

.offer h2 {
  font-size: clamp(38px, 4.8vw, 70px);
}

.offer > div > p:not(.eyebrow) {
  color: #c1d1cf;
  max-width: 580px;
  margin: 32px 0 0;
  font-size: 17px;
  line-height: 1.6;
}

.offer-card {
  background: var(--mint);
  color: var(--deep);
  flex-direction: column;
  align-items: flex-start;
  padding: 42px;
  display: flex;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.offer-card p {
  letter-spacing: 0.16em;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-card strong {
  letter-spacing: -0.08em;
  margin: 14px 0 4px;
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 800;
  line-height: 1;
}

.offer-card > span {
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #1a4249;
}

.offer-card small {
  opacity: 0.8;
  margin-top: 16px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--deep);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: var(--paper);
  border-top: 1px solid rgba(16, 46, 53, 0.12);
}

.faq-intro {
  grid-template-columns: 20% 1fr;
  gap: 30px;
  margin-bottom: 50px;
  display: grid;
}

.faq-intro h2 {
  font-size: clamp(36px, 4.5vw, 64px);
}

.faq-list {
  border-top: 1px solid rgba(16, 46, 53, 0.25);
  margin-left: 20%;
}

.faq-item {
  border-bottom: 1px solid rgba(16, 46, 53, 0.25);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  cursor: pointer;
}

.faq-question span.icon {
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question span.icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  color: #3d5a60;
  font-size: 15.5px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--paper);
  border-top: 1px solid rgba(16, 46, 53, 0.15);
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 36px clamp(24px, 5vw, 80px);
  display: flex;
}

footer p, footer > span {
  color: #587075;
  font-size: 12px;
}

footer p {
  margin-left: auto;
}

/* ==========================================================================
   Modal Lead Capture
   ========================================================================== */
.modal-backdrop {
  z-index: 999;
  background: rgba(9, 42, 49, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  place-items: center;
  padding: 24px;
  display: none;
  position: fixed;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-backdrop.active {
  display: grid;
  opacity: 1;
}

.form-modal {
  background: var(--paper);
  width: min(540px, 100%);
  padding: 44px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .form-modal {
  transform: translateY(0);
}

.close {
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 32px;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  cursor: pointer;
  padding: 6px;
  transition: opacity 0.2s;
}

.close:hover {
  opacity: 0.6;
}

.form-modal h2 {
  letter-spacing: -0.06em;
  margin: 0 0 10px;
  font-size: clamp(34px, 4.5vw, 46px);
  font-weight: 800;
  color: var(--ink);
}

.form-modal > p:not(.eyebrow),
.success > p:not(.eyebrow) {
  color: #456066;
  font-size: 15px;
  line-height: 1.5;
}

.form-modal form {
  gap: 18px;
  margin-top: 28px;
  display: grid;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-modal label {
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
}

.form-modal input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #a9b5b0;
  outline: none;
  width: 100%;
  margin-top: 6px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-modal input:focus {
  border-bottom-color: var(--deep);
}

.form-modal form .button {
  margin-top: 12px;
}

.success-message {
  display: none;
  padding: 20px 0;
  text-align: center;
}

.success-message.active {
  display: block;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 20px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 900px) {
  .topbar {
    height: 68px;
  }
  .topbar .button-small {
    display: none;
  }
  .menu {
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    display: flex;
  }
  .nav {
    background: var(--paper);
    border-bottom: 1px solid rgba(16, 46, 53, 0.15);
    margin: 0;
    padding: 24px 28px;
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .nav.open {
    flex-direction: column;
    gap: 18px;
    display: flex;
    align-items: flex-start;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    padding-top: 70px;
    padding-bottom: 60px;
  }
  .hero-visual {
    min-height: 440px;
  }
  .circle-label {
    width: 120px;
    height: 120px;
    top: 8%;
    right: 10%;
  }
  .headline-stack {
    margin-top: 40px;
  }
  .section-pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .news-section,
  .program-intro,
  .faq-intro {
    grid-template-columns: 1fr;
  }
  .section-label {
    margin-bottom: 25px;
  }
  .news-content h2 {
    margin-bottom: 40px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .news-image {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 42px;
  }
  .news-image img {
    max-height: 360px;
  }
  .statement h2 br,
  .program h2 br {
    display: none;
  }
  .gains-title {
    display: block;
  }
  .gains-title p {
    margin-top: 20px;
  }
  .gain-grid {
    grid-template-columns: 1fr;
  }
  .gain, .gain:nth-child(3n) {
    margin-right: 0;
  }
  .gain i {
    right: 0;
  }
  .program-list,
  .faq-list {
    margin-left: 0;
  }
  .program-item {
    grid-template-columns: 50px 1fr 20px;
  }
  .program-item h3 {
    font-size: 22px;
  }
  .teacher {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .teacher-photo {
    max-height: 480px;
    box-shadow: 10px 10px 0 var(--lime);
  }
  .proof > p:not(.eyebrow) {
    margin-left: 0;
  }
  .proof-numbers {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .offer {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .offer-card {
    padding: 32px;
  }
  footer {
    flex-wrap: wrap;
  }
  footer p {
    order: 3;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero-visual {
    min-height: 380px;
  }
  .headline-stack {
    font-size: 46px;
  }
  .quote-block blockquote {
    font-size: 36px;
  }
  .form-modal {
    padding: 32px 20px;
  }
  .brand, .brand img {
    height: 30px;
  }
}
