:root {
  --color-primary: #173a2c;
  --color-primary-strong: #10281f;
  --color-accent: #f4bf2a;
  --color-accent-strong: #dca308;
  --color-bg: #eff2ef;
  --color-bg-alt: #f6f7f5;
  --color-text: #183428;
  --color-text-muted: #4b5f56;
  --color-border: rgba(34, 48, 42, 0.18);
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;
  --shadow-soft: 0 14px 30px rgba(11, 30, 22, 0.14);
  --container-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #eef1ee 0%, #f6f8f5 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

html,
body {
  max-width: 100%;
}

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

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Sora", "Source Sans 3", sans-serif;
}

h1,
h2,
h3,
p,
label,
legend,
span,
a,
button {
  overflow-wrap: anywhere;
}

.container {
  width: min(var(--container-max), calc(100% - 2.4rem));
  max-width: calc(100vw - 2.4rem);
  margin: 0 auto;
}

.container.narrow {
  max-width: 860px;
}

.section {
  padding: 84px 0;
}

.section--hero {
  min-height: 100svh;
  padding-top: 120px;
  padding-bottom: 96px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(70% 85% at 86% 16%, rgba(70, 126, 99, 0.36) 0%, rgba(70, 126, 99, 0) 50%),
    radial-gradient(82% 110% at 0% 100%, rgba(93, 146, 117, 0.32) 0%, rgba(93, 146, 117, 0) 58%),
    linear-gradient(180deg, #173d2e 0%, #10281f 100%);
  position: relative;
  overflow: hidden;
}

.section--hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(244, 191, 42, 0.16) 0%, rgba(244, 191, 42, 0) 70%);
  top: -240px;
  left: -180px;
  filter: blur(16px);
  pointer-events: none;
}

.section--hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(244, 191, 42, 0.12) 0%, rgba(244, 191, 42, 0) 72%);
  filter: blur(20px);
  pointer-events: none;
}

.section--light {
  background: linear-gradient(180deg, #f5f7f3 0%, #eef2ee 100%);
}

.section--dark {
  background:
    radial-gradient(70% 80% at 0% 0%, rgba(244, 191, 42, 0.12) 0%, rgba(244, 191, 42, 0) 54%),
    linear-gradient(180deg, #173a2c 0%, #10281f 100%);
}

.section--positioning {
  padding: 40px 0;
  background: linear-gradient(180deg, #e7eee8 0%, #dfe8e1 100%);
  border-top: 1px solid rgba(34, 48, 42, 0.12);
  border-bottom: 1px solid rgba(34, 48, 42, 0.12);
}

.hero {
  width: 100%;
  max-width: 940px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  color: var(--color-accent);
  font-family: "Sora", "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero__title {
  color: #f3f7f4;
  font-size: clamp(36px, 5.15vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-wrap: balance;
}

.hero__subtitle {
  margin: 22px auto 0;
  max-width: 880px;
  color: #d8e4de;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.hero__text {
  margin-top: 10px;
  color: #edf4f0;
  font-size: 18px;
  line-height: 1.42;
}

.hero__text:first-of-type {
  margin-top: 28px;
}

.hero__support {
  margin-top: 0.9rem;
  color: #f3f7f4;
  font-size: 17px;
  font-style: italic;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  min-height: 50px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn--primary {
  background: linear-gradient(100deg, #f8cc47 0%, #f4bf2a 52%, #dfa507 100%);
  color: #10281f;
  border: 1px solid rgba(244, 191, 42, 0.52);
  box-shadow: 0 10px 22px rgba(244, 191, 42, 0.18);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(220, 163, 8, 0.24);
}

.btn:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(244, 191, 42, 0.5);
  outline-offset: 4px;
}

.btn--hero {
  width: min(100%, 420px);
  min-width: 0;
  margin-top: 30px;
}

.section-head {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2 {
  color: #1c3429;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-head p {
  margin-top: 12px;
  color: #425c4f;
  font-size: 19px;
  line-height: 1.55;
}

.section-head--on-dark h2 {
  color: #f3f7f4;
}

.section-head--on-dark p {
  color: #d4e1da;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem 1.15rem;
  margin-top: 1rem;
}

.audience-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audience-item p {
  margin-top: 1.05rem;
  color: #243e33;
  line-height: 1.4;
  text-align: center;
  font-weight: 800;
  max-width: 280px;
  min-height: 3.9em;
}

.ph-icon-lg {
  width: 86px;
  height: 86px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(34, 48, 42, 0.18);
  background: linear-gradient(180deg, #edf2ee 0%, #e2e9e3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(11, 30, 22, 0.1);
}

.ph-icon-lg i {
  font-size: 40px;
  color: #173a2c;
  line-height: 1;
}

.positioning-band {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.positioning-band p {
  color: #234438;
  font-size: 21px;
  line-height: 1.55;
}

.positioning-band p + p {
  margin-top: 0.95rem;
}

.positioning-band strong {
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.feature-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(34, 48, 42, 0.12);
  box-shadow: 0 12px 24px rgba(8, 24, 18, 0.14);
  padding: 1.2rem 1.1rem 1rem;
  color: #234437;
  line-height: 1.45;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  gap: 0.72rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 24, 18, 0.18);
}

.feature-icon {
  width: 78px;
  height: 78px;
  border-radius: 10px;
  border: 1px solid rgba(34, 48, 42, 0.16);
  background: linear-gradient(180deg, #eff3f0 0%, #e3eae4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 40px;
  color: #214535;
  line-height: 1;
}

.feature-card h3 {
  color: #17382b;
  font-size: 1.18rem;
  line-height: 1.25;
}

.feature-card p {
  color: #385145;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 48, 42, 0.16);
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: 0 10px 22px rgba(11, 30, 22, 0.08);
}

.ph-icon {
  width: 66px;
  height: 66px;
  border-radius: 10px;
  border: 1px solid rgba(34, 48, 42, 0.2);
  background: linear-gradient(180deg, #e7ece8 0%, #dbe3dd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-icon i {
  font-size: 34px;
  color: #204535;
  line-height: 1;
}

.pillar-card h3 {
  margin-top: 0.75rem;
  font-size: 1.22rem;
  color: #183a2c;
}

.pillar-card p {
  margin-top: 0.35rem;
  color: #385145;
}

.includes-list {
  margin: 0 auto 30px;
  padding: 0;
  list-style: none;
  max-width: 760px;
  display: grid;
  gap: 0.7rem;
}

.includes-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.45rem;
  border: 1px solid rgba(244, 191, 42, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #e3ece7;
  font-weight: 700;
}

.includes-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 0.8rem;
  color: var(--color-accent);
  font-weight: 900;
}

#raio-x .btn {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.note-block {
  margin: -8px auto 28px;
  max-width: 760px;
  text-align: center;
}

.note-block p {
  color: #2e473c;
  font-size: 18px;
  line-height: 1.65;
}

.avoid-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.avoid-grid article {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 48, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(11, 30, 22, 0.08);
  color: #243e33;
  text-align: center;
  font-weight: 800;
  line-height: 1.35;
}

.section--process {
  padding-top: 52px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid article {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 48, 42, 0.16);
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 10px 22px rgba(11, 30, 22, 0.08);
}

.process-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: #173a2c;
  color: #f3f7f4;
  font-weight: 900;
  font-family: "Sora", "Source Sans 3", sans-serif;
}

.process-grid h3 {
  color: #183a2c;
  font-size: 1.08rem;
  line-height: 1.25;
}

.process-grid p {
  margin-top: 0.45rem;
  color: #385145;
}

.mentor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: center;
}

.mentor-copy h2 {
  color: #f3f7f4;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.mentor-copy p {
  margin-top: 0.85rem;
  color: #d4e1da;
  font-size: 19px;
  line-height: 1.58;
}

.about-visual {
  margin: 0;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid rgba(244, 191, 42, 0.24);
  box-shadow: 0 18px 34px rgba(7, 20, 15, 0.34);
}

.final-cta {
  text-align: center;
}

.final-cta__lead {
  color: #1c3429;
  font-family: "Sora", "Source Sans 3", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.final-cta p:not(.final-cta__lead):not(.final-cta__support) {
  margin-top: 14px;
  color: #425c4f;
  font-size: 19px;
  line-height: 1.55;
}

.final-cta__support {
  margin: 18px auto 0;
  max-width: 680px;
  color: #4b5f56;
  font-size: 16px;
  line-height: 1.5;
}

.form-hero {
  min-height: 62svh;
  padding-top: 92px;
  padding-bottom: 72px;
}

.form-section {
  padding-top: 64px;
}

.form-shell {
  max-width: 920px;
}

.application-form,
.success-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid rgba(18, 54, 40, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 4vw, 42px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  margin-top: 1.2rem;
}

.field span,
.field-group legend {
  color: #17362a;
  font-family: "Sora", "Source Sans 3", sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(18, 54, 40, 0.2);
  border-radius: 12px;
  background: #fff;
  color: #183428;
  font: inherit;
  padding: 0.9rem 1rem;
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 128px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(244, 191, 42, 0.18);
}

.field-group {
  min-width: 0;
  margin: 1.2rem 0 0;
  padding: 1rem;
  border: 1px solid rgba(18, 54, 40, 0.14);
  border-radius: 14px;
  background: #f7f8f4;
}

.field-group legend {
  padding: 0 0.35rem;
}

.field-group label {
  min-width: 0;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(18, 54, 40, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #385145;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.field-group label span {
  min-width: 0;
}

.field-group label:has(input:checked) {
  border-color: rgba(244, 191, 42, 0.9);
  background: rgba(244, 191, 42, 0.13);
  box-shadow: 0 8px 18px rgba(12, 31, 23, 0.08);
}

.field-group input {
  flex: 0 0 auto;
  margin-top: 0.28rem;
  accent-color: var(--color-accent);
}

.form-error {
  margin-top: 1rem;
  color: #a32929;
  font-weight: 800;
}

.form-actions {
  margin-top: 1.5rem;
  text-align: center;
}

.form-actions .btn {
  border: none;
  cursor: pointer;
}

.form-actions p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: #53645c;
}

.success-card {
  text-align: center;
}

.success-card[hidden] {
  display: none;
}

.success-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 191, 42, 0.18);
  color: #173a2c;
}

.success-icon i {
  font-size: 44px;
}

.success-card h2 {
  color: #17362a;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.success-card p {
  max-width: 740px;
  margin: 0.85rem auto 0;
  color: #425c4f;
  font-size: 18px;
  line-height: 1.55;
}

.success-card .btn {
  margin-top: 1.4rem;
}

.guided-body {
  min-height: 100svh;
  background:
    radial-gradient(70% 85% at 86% 16%, rgba(70, 126, 99, 0.36) 0%, rgba(70, 126, 99, 0) 50%),
    radial-gradient(82% 110% at 0% 100%, rgba(93, 146, 117, 0.32) 0%, rgba(93, 146, 117, 0) 58%),
    linear-gradient(180deg, #173d2e 0%, #10281f 100%);
}

.guided-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 28px 0;
}

.guided-shell {
  width: min(720px, calc(100% - 28px));
  margin: 0 auto;
}

.guided-brand {
  margin-bottom: 18px;
  text-align: center;
}

.guided-brand a {
  color: #f3f7f4;
  font-family: "Sora", "Source Sans 3", sans-serif;
  font-weight: 800;
}

.guided-brand a::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--color-accent);
}

.guided-progress {
  margin-bottom: 16px;
  color: #dbe7e1;
}

.guided-progress__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 0.92rem;
}

.guided-progress__bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.guided-progress__bar span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(100deg, #f8cc47 0%, #f4bf2a 52%, #dfa507 100%);
  transition: width 0.25s ease;
}

.guided-card {
  width: 100%;
  max-width: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(244, 191, 42, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(80% 70% at 100% 0%, rgba(244, 191, 42, 0.12) 0%, rgba(244, 191, 42, 0) 54%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 56px rgba(6, 19, 14, 0.3);
  outline: none;
}

.guided-eyebrow {
  color: #7a620e;
  font-family: "Sora", "Source Sans 3", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.guided-card h1 {
  color: #17362a;
  font-size: clamp(2rem, 5.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.guided-lead {
  margin-top: 18px;
  color: #425c4f;
  font-size: 1.2rem;
  line-height: 1.5;
}

.guided-support,
.guided-note {
  margin-top: 14px;
  color: #53645c;
  font-size: 1rem;
  font-style: italic;
}

.guided-fields {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.guided-field {
  display: grid;
  gap: 7px;
}

.guided-field span {
  color: #17362a;
  font-family: "Sora", "Source Sans 3", sans-serif;
  font-weight: 800;
}

.guided-field input,
.guided-field textarea {
  width: 100%;
  border: 1px solid rgba(18, 54, 40, 0.2);
  border-radius: 14px;
  background: #fff;
  color: #183428;
  font: inherit;
  padding: 0.95rem 1rem;
  outline: none;
}

.guided-field textarea {
  margin-top: 24px;
  resize: vertical;
  min-height: 170px;
}

.guided-field input:focus,
.guided-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(244, 191, 42, 0.18);
}

.guided-options {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.guided-option {
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(18, 54, 40, 0.15);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #234438;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.guided-option:hover,
.guided-option.is-selected {
  transform: translateY(-1px);
  border-color: rgba(244, 191, 42, 0.9);
  background: rgba(244, 191, 42, 0.14);
  box-shadow: 0 8px 18px rgba(12, 31, 23, 0.08);
}

.guided-error {
  min-height: 1.5em;
  margin-top: 18px;
  color: #a32929;
  font-weight: 800;
}

.guided-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.guided-actions--single {
  justify-content: center;
}

.guided-actions .btn {
  max-width: 100%;
  min-width: 220px;
  border: none;
  cursor: pointer;
}

.guided-back {
  min-height: 50px;
  border: 0;
  background: transparent;
  color: #425c4f;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.review-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.review-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 54, 40, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
}

.review-row span {
  color: #53645c;
  font-weight: 800;
}

.review-row strong {
  color: #17362a;
}

.success-copy {
  margin-top: 14px;
}

.success-copy p {
  margin-top: 0.75rem;
  color: #425c4f;
  font-size: 1.08rem;
  line-height: 1.55;
}

.site-footer {
  background: linear-gradient(180deg, #1d2c25 0%, #17231e 100%);
  border-top: 1px solid rgba(244, 191, 42, 0.18);
}

.footer-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #e4ece7;
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .audience-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .avoid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mentor-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 1.25rem);
    max-width: calc(100vw - 1.25rem);
  }

  .section {
    padding: 58px 0;
  }

  .section--hero {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .hero__eyebrow {
    font-size: 11px;
    line-height: 1.45;
    display: block;
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(32px, 10.4vw, 42px);
    line-height: 1.1;
  }

  .form-hero .hero__title {
    font-size: clamp(28px, 7.4vw, 32px);
  }

  .form-hero .hero,
  .form-shell {
    max-width: 360px;
  }

  .hero__subtitle,
  .hero__text {
    font-size: 17px;
  }

  .btn--hero {
    width: 100%;
    min-width: 0;
  }

  .audience-grid,
  .feature-grid,
  .pillar-grid,
  .avoid-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .audience-item p {
    min-height: 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2,
  .mentor-copy h2,
  .final-cta__lead {
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .section-head p,
  .mentor-copy p,
  .final-cta p:not(.final-cta__lead):not(.final-cta__support) {
    font-size: 17px;
  }

  .positioning-band p {
    font-size: 18px;
  }

  .footer-row {
    justify-content: center;
    text-align: center;
  }

  .guided-page {
    display: block;
    padding: 14px 0;
  }

  .guided-shell {
    width: calc(100% - 24px);
    max-width: 420px;
    margin: 0 auto;
  }

  .guided-card {
    min-height: calc(100svh - 120px);
    padding: 24px 20px;
    border-radius: 20px;
    overflow: hidden;
  }

  .guided-card h1 {
    font-size: clamp(1.75rem, 8.3vw, 2.25rem);
  }

  .guided-lead {
    font-size: 1.05rem;
  }

  .guided-actions {
    align-items: stretch;
  }

  .guided-actions:not(.guided-actions--single) {
    display: grid;
    grid-template-columns: 1fr;
  }

  .guided-actions .btn,
  .guided-back {
    width: 100%;
    min-width: 0;
  }

  .guided-back {
    order: 2;
  }

  .review-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 1rem);
    max-width: calc(100vw - 1rem);
  }

  .hero__title {
    font-size: 30px;
  }
}
