:root {
  --navy-950: #061027;
  --navy-900: #08152f;
  --navy-800: #10234b;
  --blue-600: #265eaa;
  --blue-500: #3479ca;
  --cyan-400: #38b7cf;
  --violet-500: #7c65d8;
  --violet-300: #b9a9f5;
  --ink: #111c35;
  --muted: #5d677a;
  --line: #dbe3ef;
  --ice: #edf4fa;
  --white: #ffffff;
  --green: #1e9866;
  --shadow: 0 24px 70px rgba(7, 22, 50, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f9fbfd;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
}

.nav-shell {
  width: min(100% - 3rem, 1280px);
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav .nav-cta {
  padding: 0.75rem 1rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.93fr);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--navy-950);
}

.hero-copy {
  padding: 190px max(3rem, calc((100vw - 1280px) / 2)) 105px;
  padding-right: clamp(3rem, 6vw, 7.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--violet-300);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2rem;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--blue-600);
}

.eyebrow.light {
  color: #8fdded;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero h1 em {
  display: block;
  color: #97b9ec;
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero-actions {
  margin-top: 2.35rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  min-height: 52px;
  padding: 0.78rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 0;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-action:focus-visible,
.cover-link:focus-visible,
.experience-fullscreen:focus-visible,
.main-nav a:focus-visible,
.floating-crisis:focus-visible {
  outline: 3px solid rgba(56, 183, 207, 0.55);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--violet-500));
  box-shadow: 0 14px 34px rgba(52, 121, 202, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(52, 121, 202, 0.4);
}

.button-quiet {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-dark {
  color: var(--white);
  background: var(--navy-900);
}

.hero-assurances {
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-assurances li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--cyan-400);
  border-radius: 50%;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-950) 0%, rgba(6, 16, 39, 0.94) 34%, rgba(6, 16, 39, 0.18) 64%, rgba(6, 16, 39, 0.05) 100%),
    linear-gradient(0deg, rgba(6, 16, 39, 0.58), transparent 52%);
}

.hero-quote {
  position: absolute;
  right: 7%;
  bottom: 8%;
  max-width: 300px;
  margin: 0;
  padding: 1rem 1.2rem;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(6, 16, 39, 0.66);
  border-left: 3px solid var(--violet-500);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
}

.route-section,
.valuation-section,
.services-section,
.ebook-section {
  width: min(100% - 3rem, 1180px);
  margin: 0 auto;
}

.route-section {
  padding: 112px 0 125px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.experience-copy h2,
.services-heading h2,
.levels-heading h2,
.promise-section h2,
.ebook-copy h2,
.closing-section h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
}

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

.route-card {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  box-shadow: 0 18px 54px rgba(16, 35, 75, 0.1);
}

.route-self {
  background: linear-gradient(145deg, #ffffff 20%, #eaf3fc 100%);
}

.route-family {
  background: linear-gradient(145deg, #ffffff 20%, #f1edff 100%);
}

.route-image {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-900);
}

.route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.route-card-body {
  min-height: 310px;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.route-topline {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.route-number {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-grid;
  place-items: center;
  color: var(--blue-600);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
}

.route-label {
  margin: 0;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-card h3,
.valuation-card h3,
.ebook-copy h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.18;
}

.route-card p:not(.route-label) {
  max-width: 470px;
  margin: 0.8rem 0 1.4rem;
  color: var(--muted);
}

.text-action {
  width: max-content;
  padding: 0.35rem 0;
  position: relative;
  z-index: 2;
  color: var(--navy-900);
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(16, 35, 75, 0.35);
  font-weight: 600;
  cursor: pointer;
}

.experience-section {
  padding: 120px max(1.5rem, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 18%, rgba(124, 101, 216, 0.2), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.experience-copy {
  max-width: 440px;
}

.experience-lead {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.experience-details {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.experience-details div {
  padding: 1.15rem 0.65rem;
}

.experience-details div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.experience-details strong,
.experience-details span {
  display: block;
}

.experience-details strong {
  color: #a9c8f5;
  font-size: 1.05rem;
}

.experience-details span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
}

.experience-note {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.experience-shell {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: #f6f9fc;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 1.2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.experience-cover {
  min-height: 620px;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 30%, rgba(56, 183, 207, 0.12), transparent 35%),
    linear-gradient(160deg, #ffffff, #eaf1fb);
}

.experience-cover.is-hidden {
  display: none;
}

.experience-mark {
  width: 126px;
  height: 165px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.experience-mark img {
  width: 270px;
  max-width: none;
  height: auto;
  position: absolute;
  left: -71px;
  top: 0;
}

.cover-kicker {
  margin: 0 0 0.7rem;
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-cover h3 {
  max-width: 530px;
  margin: 0 0 1.8rem;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  line-height: 1.12;
}

.cover-link {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-underline-offset: 3px;
}

#experience-frame {
  width: 100%;
  min-height: 620px;
  display: none;
  border: 0;
  background: var(--white);
}

#experience-frame.is-loaded {
  display: block;
}

.experience-fullscreen {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  color: var(--white);
  background: rgba(6, 16, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.65rem;
  box-shadow: 0 10px 26px rgba(6, 16, 39, 0.24);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.experience-shell.is-active .experience-fullscreen {
  display: inline-flex;
}

.valuation-section {
  padding: 120px 0;
}

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

.valuation-card {
  min-height: 410px;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow: 0 15px 45px rgba(16, 35, 75, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.valuation-card.is-recommended {
  border-color: var(--violet-500);
  box-shadow: 0 22px 60px rgba(67, 62, 147, 0.17);
  transform: translateY(-4px);
}

.valuation-icon {
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1.8rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--violet-500));
  border-radius: 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.valuation-card > p:not(.route-label) {
  color: var(--muted);
}

.valuation-actions {
  margin-top: auto;
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.whatsapp-link {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

.form-note {
  max-width: 800px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.services-section {
  padding: 120px 0 130px;
}

.services-heading {
  max-width: 810px;
}

.services-heading > p:last-child {
  max-width: 690px;
  margin: 1.35rem 0 0;
  color: var(--muted);
}

.services-photo {
  width: min(100%, 860px);
  margin: 3.5rem auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
}

.services-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.services-photo figcaption {
  max-width: 510px;
  padding: 1.1rem 1.35rem;
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(8, 21, 47, 0.92);
  border-left: 3px solid var(--cyan-400);
  border-radius: 0.2rem 0.7rem 0.7rem 0.2rem;
  font-size: 0.88rem;
}

.service-path {
  margin-top: 3rem;
}

.service-entry {
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  background: linear-gradient(135deg, #eef5fc, #f7f5ff);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.service-step {
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.service-title-line h3,
.service-title-line h4 {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.18;
}

.price-tag {
  flex: 0 0 auto;
  padding: 0.45rem 0.7rem;
  color: var(--blue-600);
  background: var(--ice);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.price-tag.free {
  color: #146744;
  background: #e2f5eb;
}

.service-entry p {
  max-width: 760px;
  margin: 0.8rem 0 1rem;
  color: var(--muted);
}

.service-entry a {
  color: var(--blue-600);
  font-size: 0.88rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

.service-decision {
  max-width: 760px;
  margin: 2.2rem auto;
  padding: 0.4rem 0 0.4rem 1.35rem;
  border-left: 3px solid var(--violet-500);
}

.service-decision span,
.service-decision strong {
  display: block;
}

.service-decision span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-decision strong {
  margin-top: 0.25rem;
  color: var(--navy-900);
  font-size: 1.08rem;
}

.extra-services {
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: #f1f5fa;
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.extra-services-heading {
  max-width: 760px;
  margin-bottom: 1.2rem;
  grid-column: 1 / -1;
}

.extra-services-heading h3 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.extra-services-heading p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.extra-service-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  box-shadow: 0 12px 34px rgba(16, 35, 75, 0.06);
}

.extra-service-card p {
  margin: 1rem 0;
  color: var(--muted);
}

.extra-service-card > strong {
  display: block;
  color: var(--blue-600);
  font-size: 0.88rem;
  line-height: 1.55;
}

.service-program {
  margin-top: 1rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), #243e78);
  border-radius: 1rem;
}

.service-step.light {
  color: var(--cyan-400);
}

.service-program h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.12;
}

.service-program p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.service-program a {
  padding: 0.8rem 1rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.levels-section {
  padding: 120px max(1.5rem, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 82% 0%, rgba(124, 101, 216, 0.24), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.levels-heading {
  max-width: 760px;
}

.levels-heading > p:last-child {
  max-width: 640px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.level-card {
  padding: clamp(1.7rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
}

.level-card-main {
  background: rgba(255, 255, 255, 0.11);
  border-color: var(--violet-300);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.level-badge {
  width: max-content;
  margin: -0.7rem 0 1.25rem;
  padding: 0.35rem 0.65rem;
  color: var(--navy-950);
  background: var(--violet-300);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.level-topline span,
.level-price span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.level-topline strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.85rem;
  line-height: 1.2;
}

.level-card > p {
  color: rgba(255, 255, 255, 0.66);
}

.level-card ul {
  margin: 0.4rem 0 2rem;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
}

.level-card li + li {
  margin-top: 0.5rem;
}

.level-price {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.level-price strong {
  display: block;
  margin-top: 0.25rem;
  color: #bed8ff;
  font-size: 1.2rem;
}

.budget-callout {
  margin-top: 1.2rem;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
}

.budget-callout p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.budget-callout small {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.75rem;
}

.promise-section {
  padding: 120px max(1.5rem, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy-900);
}

.promise-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.promise-statement > p:last-child {
  margin: 0.7rem 0 0;
  color: #a9c8f5;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}

.promise-copy p {
  color: rgba(255, 255, 255, 0.67);
}

.promise-copy blockquote {
  margin: 2rem 0 0;
  padding: 1.4rem 0 1.4rem 1.4rem;
  color: var(--white);
  border-left: 3px solid var(--violet-500);
  font-size: 1.08rem;
}

.method-photo {
  margin: 4.5rem 0 0;
  overflow: hidden;
  border-radius: 1rem;
}

.method-photo img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center 42%;
}

.method-content {
  margin-top: 3.5rem;
}

.method-kicker {
  margin: 0;
  color: var(--cyan-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.method-content h3 {
  margin: 0.45rem 0 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.12;
}

.method-content > p:not(.method-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.66);
}

.method-scroll-note {
  display: none;
}

.method-word {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.55rem;
}

.method-word article {
  min-height: 220px;
  padding: 1rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
}

.method-word article > strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--violet-300);
  font-size: 2.5rem;
  line-height: 1;
}

.method-word span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.875rem;
  line-height: 1.5;
}

.method-word b {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.ebook-section {
  padding: 120px 0;
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.ebook-visual {
  min-height: 460px;
  padding: 3rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(56, 183, 207, 0.2), transparent 24%),
    linear-gradient(145deg, transparent 30%, rgba(124, 101, 216, 0.18)),
    var(--navy-900);
  border-radius: 1.1rem;
}

.ebook-visual::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -26%;
  width: 58%;
  aspect-ratio: 1;
  border: 2px solid rgba(185, 169, 245, 0.58);
  border-radius: 50% 50% 0 0;
}

.ebook-visual img {
  width: 250px;
  height: 250px;
  z-index: 2;
  border-radius: 0.45rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
}

.ebook-label {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ebook-copy h3 {
  margin-top: 0.6rem;
  color: var(--blue-600);
  font-weight: 500;
}

.ebook-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.4rem 0;
  color: var(--muted);
}

.ebook-offer {
  width: max-content;
  margin: 1.5rem 0 2rem;
  padding: 1.1rem 1.25rem;
  background: #edf5ff;
  border-left: 3px solid var(--blue-500);
  border-radius: 0 0.7rem 0.7rem 0;
}

.ebook-offer span,
.ebook-offer small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
}

.ebook-offer strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.85rem;
  line-height: 1.3;
}

.ebook-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.ebook-support {
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

.closing-section {
  padding: 105px max(1.5rem, calc((100vw - 940px) / 2));
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 183, 207, 0.17), transparent 35%),
    linear-gradient(135deg, #162f63, #3f347f);
}

.closing-section .eyebrow {
  justify-content: center;
}

.closing-section p:not(.eyebrow) {
  max-width: 660px;
  margin: 1.2rem auto 2rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 70px max(1.5rem, calc((100vw - 1180px) / 2)) 28px;
  color: rgba(255, 255, 255, 0.65);
  background: #050c1d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 3rem;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 1rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links p,
.footer-contact p {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  text-underline-offset: 3px;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.7rem;
}

.floating-crisis {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 30;
  padding: 0.65rem 0.85rem 0.65rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  background: linear-gradient(135deg, #173a73, #5946a8);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(8, 21, 47, 0.38);
  font-size: 0.78rem;
  text-decoration: none;
}

.floating-crisis > span:first-child {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: #243c78;
  background: var(--white);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
}

.floating-crisis-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.floating-crisis-copy small {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 1rem;
  }

  .main-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-copy {
    padding-right: 2.5rem;
  }

  .experience-section {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    max-width: 700px;
  }

  .levels-grid {
    grid-template-columns: 1fr;
  }

  .level-card {
    min-height: auto;
  }

  .service-program {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .service-program a {
    width: max-content;
    grid-column: 2;
  }

  .method-scroll-note {
    display: block;
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
  }

  .method-word {
    grid-template-columns: repeat(8, 150px);
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scroll-snap-type: x proximity;
  }

  .method-word article {
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    width: min(100% - 2rem, 1280px);
    min-height: 84px;
  }

  .brand img {
    width: 88px;
  }

  .site-header {
    position: absolute;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 125px 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    color: var(--white);
    background: var(--navy-950);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    z-index: -1;
    opacity: 1;
    visibility: visible;
  }

  .main-nav > a:not(.nav-cta),
  .main-nav .nav-cta {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 690px;
    padding: 145px 1.5rem 75px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
    position: relative;
    inset: auto;
    aspect-ratio: 1586 / 992;
    z-index: auto;
  }

  .hero-visual img {
    height: auto;
    aspect-ratio: 1586 / 992;
  }

  .hero-image-wash {
    background: linear-gradient(180deg, var(--navy-950) 0%, transparent 30%, rgba(6, 16, 39, 0.55) 100%);
  }

  .hero-quote {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    max-width: none;
  }

  .route-section,
  .valuation-section,
  .services-section,
  .ebook-section {
    width: min(100% - 2rem, 1180px);
  }

  .route-section,
  .valuation-section,
  .services-section,
  .ebook-section,
  .experience-section,
  .levels-section,
  .promise-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .route-grid,
  .valuation-grid,
  .ebook-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .promise-intro,
  .service-entry,
  .extra-services,
  .service-program {
    grid-template-columns: 1fr;
  }

  .services-photo {
    overflow: visible;
    box-shadow: none;
  }

  .services-photo img {
    border-radius: 0.9rem;
    box-shadow: var(--shadow);
  }

  .services-photo figcaption {
    max-width: none;
    margin: -2rem 0.8rem 0;
    position: relative;
    left: auto;
    bottom: auto;
  }

  .service-title-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .extra-services-heading {
    grid-column: auto;
  }

  .service-program a {
    grid-column: auto;
  }

  .levels-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .budget-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-card,
  .valuation-card {
    min-height: 365px;
  }

  .route-card {
    min-height: 0;
  }

  .experience-section {
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 2.5rem;
  }

  .experience-copy {
    padding: 0 0.5rem;
  }

  .experience-details div {
    padding: 1rem 0.45rem;
  }

  .experience-shell,
  .experience-cover,
  #experience-frame {
    min-height: 680px;
  }

  .promise-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .method-photo {
    margin-top: 3rem;
  }

  .method-photo img {
    height: 310px;
  }

  .method-content {
    margin-top: 2.5rem;
  }

  .ebook-visual {
    min-height: 340px;
  }

  .ebook-visual img {
    width: 215px;
    height: 215px;
  }

  .ebook-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ebook-actions .button {
    width: 100%;
  }

  .footer-main {
    gap: 2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .floating-crisis {
    max-width: calc(100% - 2rem);
    padding: 0.52rem 0.72rem 0.52rem 0.52rem;
  }

  .floating-crisis-copy small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
