:root {
  --ink: #016937;
  --muted: rgba(1, 105, 55, 0.78);
  --line: rgba(1, 105, 55, 0.16);
  --paper: #ffffff;
  --white: #ffffff;
  --green: #016937;
  --green-deep: #016937;
  --orange: #ff6100;
  --shadow: 0 18px 42px rgba(1, 105, 55, 0.07);
  --soft: rgba(1, 105, 55, 0.035);
  --header-height: 64px;
  --content-max: 1280px;
  --scene-pad-top: 92px;
  --scene-pad-bottom: 54px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Yu Gothic Medium", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 19;
  pointer-events: none;
  background: rgba(1, 105, 55, 0);
  transition: background 0.25s ease;
}

body.menu-open::before {
  background: rgba(1, 105, 55, 0.42);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(1, 74, 42, 0.96);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(1, 55, 31, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  gap: 18px;
}

.brand {
  display: grid;
  gap: 2px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.nav-cta {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 13px;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 58px;
  height: 58px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 48, 27, 0.22);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span + span {
  margin-top: 0;
}

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

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

.menu-panel {
  position: fixed;
  inset: 64px 0 0 auto;
  width: min(420px, 100%);
  background: linear-gradient(180deg, rgba(1, 105, 55, 0.99), rgba(1, 105, 55, 0.99));
  color: var(--white);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -28px 0 80px rgba(1, 105, 55, 0.26);
}

.menu-panel[aria-hidden="false"] {
  transform: translateX(0);
}

.menu-panel-inner {
  display: grid;
  gap: 2px;
  min-height: calc(100svh - 64px);
  align-content: start;
  padding: 34px;
}

.menu-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.menu-panel a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 600;
}

.menu-panel a::after {
  content: "→";
  color: var(--orange);
  font-size: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-panel a:hover,
.menu-panel a:focus-visible,
.menu-panel a[aria-current="page"] {
  color: var(--white);
}

.menu-panel a:hover::after,
.menu-panel a:focus-visible::after,
.menu-panel a[aria-current="page"]::after {
  opacity: 1;
  transform: translateX(0);
}

.menu-panel a[aria-current="page"] {
  color: var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
}

.button.secondary {
  color: var(--green);
  background: var(--white);
  border-color: rgba(1, 105, 55, 0.22);
}

.button.accent {
  color: var(--white);
  background: var(--orange);
}

.hero .button.secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(1, 105, 55, 0.22);
}

.hero .button.secondary:hover {
  background: var(--white);
  border-color: rgba(1, 105, 55, 0.38);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  background:
    radial-gradient(circle at 72% 48%, rgba(255, 97, 0, 0.16) 0%, rgba(255, 97, 0, 0.07) 18%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.91) 0%, rgba(255, 255, 255, 0.80) 36%, rgba(255, 255, 255, 0.42) 62%, rgba(1, 74, 42, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.04) 48%, rgba(255, 255, 255, 0.40) 100%),
    url("https://images.unsplash.com/photo-1528072164453-f4e8ef0d475a?auto=format&fit=crop&w=1800&q=84") 64% center / cover;
}

.snap-section {
  position: relative;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-inner {
  display: flex;
  align-items: center;
  width: min(var(--content-max), calc(100% - 32px));
  min-height: 100svh;
  margin: 0 auto;
  padding: var(--scene-pad-top) 0 var(--scene-pad-bottom);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
  color: var(--green);
  text-shadow: none;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.snap-section.is-active .hero-copy,
.snap-section.is-active .scene-copy,
.snap-section.is-active .flow-line,
.snap-section.is-active .trust-head,
.snap-section.is-active .people-grid,
.snap-section.is-active .assurance-grid,
.snap-section.is-active .free-map,
.snap-section.is-active .condition-board,
.snap-section.is-active .life-mini-route,
.snap-section.is-active .final-cta {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.hero-display {
  margin: 0 0 10px;
  max-width: 820px;
  color: rgba(1, 105, 55, 0.36);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 86px);
  font-weight: 400;
  line-height: 0.84;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(31px, 3.6vw, 50px);
  max-width: 720px;
  font-weight: 600;
  line-height: 1.18;
}

h2 {
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 600;
  line-height: 1.26;
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

.lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}


.hero-note {
  max-width: 620px;
  margin: 14px 0 0;
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.76);
  padding: 10px 13px;
  color: rgba(1, 74, 42, 0.88);
  font-size: 12.8px;
  font-weight: 700;
  line-height: 1.62;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  border: 1px solid rgba(1, 105, 55, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(1, 105, 55, 0.06);
  padding: 6px 11px;
  color: rgba(1, 105, 55, 0.88);
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  display: none;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.56;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  margin: 12px auto 0;
  background: rgba(1, 105, 55, 0.34);
}

.scene-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 18;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.scene-dots a {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(1, 105, 55, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.scene-dots a.is-current {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 97, 0, 0.14);
}

.scene-inner {
  display: grid;
  align-content: center;
  width: min(var(--content-max), calc(100% - 32px));
  min-height: 100svh;
  margin: 0 auto;
  padding: var(--scene-pad-top) 0 var(--scene-pad-bottom);
}

.scene-copy {
  max-width: 760px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scene-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.scene-concept {
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.70)),
    url("https://images.unsplash.com/photo-1523482580672-f109ba8cb9be?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: var(--green);
}

.scene-entry {
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: var(--green-deep);
}

.scene-entry .eyebrow {
  color: var(--orange);
}

.scene-entry .scene-copy p:not(.eyebrow),
.scene-concept .scene-copy p:not(.eyebrow),
.scene-free .scene-copy p:not(.eyebrow),
.scene-fit .scene-copy p:not(.eyebrow),
.scene-life .scene-copy p:not(.eyebrow) {
  color: var(--muted);
}

.concept-alert {
  max-width: 700px;
  margin-top: 18px !important;
  border: 1px solid rgba(255, 97, 0, 0.22);
  border-left: 5px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(255, 97, 0, 0.08));
  box-shadow: 0 16px 38px rgba(1, 105, 55, 0.07);
  padding: 13px 16px;
  color: var(--green) !important;
  font-size: 13.5px !important;
  font-weight: 700;
  line-height: 1.65 !important;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.12s, transform 0.7s ease 0.12s;
}

.flow-line article {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid rgba(1, 105, 55, 0.14);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(246, 252, 249, 0.88));
  box-shadow: 0 16px 38px rgba(1, 105, 55, 0.07);
  backdrop-filter: blur(8px);
}

.flow-line article::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 97, 0, 0.08);
}

.flow-line article::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0.72;
  transform: scaleX(0.28);
  transform-origin: left;
}

.flow-line span,
.entry-grid span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
}

.flow-line h3 {
  margin-top: 16px;
  color: var(--green);
  font-size: clamp(22px, 2vw, 29px);
}

.flow-line p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.flow-line article:first-child,
.free-steps article:nth-child(2),
.life-route article:first-child {
  border-color: rgba(255, 97, 0, 0.24);
  box-shadow: 0 18px 42px rgba(1, 105, 55, 0.08);
}

.flow-line article:first-child::after,
.life-route article:first-child::after {
  opacity: 1;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(128px, 1fr);
  gap: 10px;
  margin-top: 22px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.12s, transform 0.7s ease 0.12s;
}

.entry-grid a {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 128px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(1, 105, 55, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(1, 105, 55, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.entry-grid a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.entry-grid a:first-child {
  min-height: 128px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(1, 105, 55, 0.04), rgba(1, 105, 55, 0.76)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1100&q=82") center / cover;
}

.entry-grid a:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: rgba(255, 97, 0, 0.48);
  box-shadow: 0 18px 40px rgba(1, 105, 55, 0.1);
}

.entry-grid a:first-child:hover {
  background:
    linear-gradient(180deg, rgba(1, 105, 55, 0.06), rgba(1, 105, 55, 0.78)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1100&q=82") center / cover;
}

.entry-grid a:hover::after {
  transform: scaleX(1);
}

.entry-grid strong {
  margin-top: 10px;
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 600;
}

.entry-grid small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.entry-grid a:first-child small {
  color: rgba(255, 255, 255, 0.82);
}


.scene-free,
.scene-fit,
.scene-life {
  overflow: hidden;
  color: var(--green);
}

.scene-free {
  background:
    radial-gradient(circle at 84% 24%, rgba(255, 97, 0, 0.12), rgba(255, 255, 255, 0) 32%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    url("/study-assets/img/backgrounds/bondi-beach-aerial.jpg") center / cover;
}

.scene-fit {
  background:
    radial-gradient(circle at 82% 30%, rgba(1, 105, 55, 0.11), rgba(255, 255, 255, 0) 36%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.73)),
    url("/study-assets/img/backgrounds/uluru.jpg") center / cover;
}

.scene-life {
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 97, 0, 0.11), rgba(255, 255, 255, 0) 34%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    url("/study-assets/img/backgrounds/whitehaven-beach-aerial.jpg") center / cover;
}

.compact-scene {
  gap: 24px;
}

.free-steps,
.fit-grid,
.life-route,
.scene-footnote,
.final-cta {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.12s, transform 0.7s ease 0.12s;
}

.free-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.free-steps article,
.fit-card,
.life-route article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(1, 105, 55, 0.13);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 249, 0.88));
  box-shadow: 0 16px 38px rgba(1, 105, 55, 0.075);
  backdrop-filter: blur(10px);
}

.free-steps article::before,
.fit-card::before,
.life-route article::before,
.assurance-grid div::before {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 97, 0, 0.07);
}

.free-steps article {
  min-height: 168px;
  padding: 18px;
}

.free-steps span,
.life-route span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.free-steps h3 {
  margin-top: 20px;
  color: var(--green);
  font-size: 20px;
}

.free-steps p,
.life-route p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.scene-footnote {
  max-width: 900px;
  margin: 0;
  border: 1px solid rgba(255, 97, 0, 0.20);
  border-left: 5px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(1, 105, 55, 0.055);
  padding: 13px 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

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

.fit-card {
  padding: 22px;
}

.fit-positive {
  border-top: 4px solid var(--green);
}

.fit-caution {
  border-top: 4px solid var(--orange);
}

.fit-label {
  margin: 0 0 14px;
  color: var(--green-deep);
  font-size: 19px;
  font-weight: 700;
}

.fit-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.fit-positive li::before {
  background: var(--green);
}

.life-route {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.life-route article {
  position: relative;
  min-height: 166px;
  padding: 18px;
}

.life-route article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  z-index: 2;
  width: 16px;
  height: 2px;
  background: var(--orange);
}

.life-route strong {
  display: block;
  margin-top: 28px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.35;
}

.taka-card .person-photo img {
  object-position: 50% 34%;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: end;
  margin-top: 16px;
  border: 1px solid rgba(255, 97, 0, 0.20);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 97, 0, 0.08));
  padding: 18px 20px;
  box-shadow: 0 16px 34px rgba(1, 105, 55, 0.07);
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  grid-column: 1;
}

.final-cta h2 {
  font-size: clamp(23px, 2.2vw, 31px);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.final-cta .hero-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin-top: 0;
  justify-content: end;
}

.visual-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
}

.visual-panel strong {
  font-size: 18px;
}

.visual-panel span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 68px 0;
  background: var(--paper);
}

.section.white {
  background: var(--white);
}

.guide-strip {
  position: relative;
  z-index: 10;
  background: var(--green);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(1, 105, 55, 0.14);
}

.compact-guide {
  display: none;
}

.guide-inner {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  width: min(1280px, 100%);
  margin: 0 auto;
  overflow-x: auto;
}

.guide-item {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 112px;
  padding: 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-weight: 600;
}

.guide-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
}

.guide-mark {
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}

.feature-stage {
  background:
    linear-gradient(90deg, rgba(1, 105, 55, 0.9), rgba(1, 105, 55, 0.7)),
    url("https://images.unsplash.com/photo-1517100204524-88d854f6097d?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--white);
}

.feature-stage .section-head p,
.feature-stage .card p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-stage .card {
  min-height: 220px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.feature-stage .card:nth-child(2) {
  transform: translateY(28px);
}

.feature-stage .card:nth-child(3) {
  transform: translateY(-14px);
}

.display-title {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 21px;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  border-left: 4px solid var(--green);
  background: rgba(1, 105, 55, 0.075);
  padding: 12px 15px;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
}

.notice {
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.notice p {
  margin: 10px 0 0;
  color: var(--muted);
}

.trust-section {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 0.90)),
    url("https://images.unsplash.com/photo-1523482580672-f109ba8cb9be?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.trust-section.snap-section {
  overflow: hidden;
}

.trust-section.snap-section .section-inner {
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: var(--scene-pad-top) 0 var(--scene-pad-bottom);
}

.trust-head {
  max-width: 760px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.people-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 16px;
  align-items: stretch;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.person-card,
.partner-bio {
  border: 1px solid rgba(1, 105, 55, 0.14);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 249, 0.92));
  box-shadow: 0 18px 44px rgba(1, 105, 55, 0.075);
  padding: 20px;
}

.person-card {
  display: grid;
  gap: 18px;
}

.koala-card {
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
}

.partner-card {
  gap: 16px;
}

.partner-logo img {
  width: min(190px, 62%);
  max-height: 46px;
  object-fit: contain;
}

.person-row,
.partner-bio-row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.person-photo {
  width: 112px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(1, 105, 55, 0.10);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(1, 105, 55, 0.10);
}

.person-photo img,
.partner-bio-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-photo {
  padding: 10px;
  background: rgba(255, 97, 0, 0.09);
}

.logo-photo img {
  border-radius: 8px;
}

.person-role {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.person-copy h3,
.partner-bio h3 {
  font-size: 22px;
  line-height: 1.35;
}

.person-copy p:not(.person-role),
.partner-bio p:not(.person-role) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.18s, transform 0.7s ease 0.18s;
}

.assurance-grid div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(1, 105, 55, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 12px 28px rgba(1, 105, 55, 0.055);
  padding: 14px 16px;
}

.assurance-grid span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.assurance-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.42;
}

.assurance-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.58;
}


.counselor-section {
  background: #ffffff;
}

.counselor-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(1, 105, 55, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, rgba(1, 105, 55, 0.035));
  box-shadow: 0 18px 52px rgba(1, 105, 55, 0.08);
  padding: 28px;
}

.counselor-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.counselor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
}

.counselor-copy h2 {
  max-width: 720px;
}

.counselor-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.mini-note {
  margin-top: 18px;
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  background: rgba(255, 97, 0, 0.08);
  padding: 12px 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}


.representative-section {
  background: #ffffff;
}

.representative-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(1, 105, 55, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, rgba(1, 105, 55, 0.035));
  box-shadow: 0 16px 42px rgba(1, 105, 55, 0.07);
  padding: 28px;
}

.representative-copy h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.25;
}

.representative-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.representative-note {
  margin-top: 14px;
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  background: rgba(255, 97, 0, 0.08);
  padding: 12px 14px;
  color: var(--green) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.representative-photo {
  width: 220px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.representative-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.partner-section,
.pre-form-section {
  background: var(--soft);
}

.partner-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.partner-profile p:not(.eyebrow),
.pre-form-section .section-head p {
  color: var(--muted);
}

.compact-list {
  margin-top: 20px;
}

.partner-bio-logo {
  width: min(210px, 70%);
  max-height: 54px;
  object-fit: contain;
  margin-bottom: 18px;
}

.partner-bio-photo {
  border-radius: 8px;
  background: var(--white);
}

.pre-form-grid {
  margin-top: 0;
}

.fee-reassurance-section {
  background: var(--white);
}

.fee-reassurance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: start;
  border: 1px solid rgba(1, 105, 55, 0.13);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, rgba(255, 97, 0, 0.06));
  padding: 28px;
  box-shadow: 0 16px 36px rgba(1, 105, 55, 0.06);
}

.fee-reassurance-panel h2 {
  max-width: 640px;
}

.fee-reassurance-panel p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.fee-points {
  display: grid;
  gap: 10px;
}

.fee-points p {
  margin: 0;
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.74);
  padding: 13px 15px;
}

.fee-points strong,
.fee-points span {
  display: block;
}

.fee-points strong {
  color: var(--green-deep);
  font-size: 14px;
}

.fee-points span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}


.journey-section {
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: var(--green);
}

.journey-head {
  max-width: 760px;
}

.journey-head p:not(.eyebrow) {
  color: var(--muted);
}

.journey-cards,
.experience-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 14px;
  margin-top: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.journey-cards::-webkit-scrollbar,
.experience-track::-webkit-scrollbar {
  display: none;
}

.journey-card,
.experience-card {
  position: relative;
  scroll-snap-align: start;
  min-height: 210px;
  border-radius: 8px;
  padding: 22px;
}

.journey-card {
  border: 1px solid rgba(1, 105, 55, 0.13);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(1, 105, 55, 0.07);
  backdrop-filter: blur(10px);
}

.journey-card.accent-card {
  color: var(--white);
  border-color: rgba(255, 97, 0, 0.34);
  background: rgba(255, 97, 0, 0.92);
  box-shadow: 0 16px 36px rgba(255, 97, 0, 0.20);
}

.journey-card span,
.experience-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.journey-card.accent-card span,
.journey-card.accent-card p {
  color: rgba(255, 255, 255, 0.86);
}

.journey-card h3,
.experience-card h3 {
  margin-top: 54px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.3;
}

.journey-card p,
.experience-card p {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.journey-card p {
  color: var(--muted);
}


.card-visual {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(1, 105, 55, 0.06);
  box-shadow: inset 0 0 0 1px rgba(1, 105, 55, 0.12);
}

.journey-card.accent-card .card-visual {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.card-visual::before,
.card-visual::after,
.card-visual i {
  content: "";
  position: absolute;
  display: block;
}

.passport-visual::before {
  left: 22px;
  top: 15px;
  width: 30px;
  height: 42px;
  border-radius: 5px;
  background: var(--orange);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.passport-visual::after {
  left: 30px;
  top: 27px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
}

.map-visual::before {
  inset: 20px 15px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.88), rgba(255,255,255,0.45));
  clip-path: polygon(0 8%, 32% 0, 68% 10%, 100% 2%, 100% 88%, 68% 100%, 32% 90%, 0 98%);
}

.map-visual::after {
  left: 37px;
  top: 17px;
  width: 12px;
  height: 12px;
  border-radius: 999px 999px 999px 0;
  background: var(--orange);
  transform: rotate(-45deg);
}

.route-visual::before {
  left: 17px;
  top: 38px;
  width: 38px;
  height: 2px;
  background: rgba(1, 105, 55, 0.62);
}

.journey-card.accent-card .route-visual::before {
  background: rgba(255, 255, 255, 0.82);
}

.route-visual::after,
.route-visual i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
  top: 33px;
}

.route-visual::after { left: 15px; }
.route-visual i { right: 15px; }

.sunrise-visual::before {
  left: 18px;
  top: 34px;
  width: 36px;
  height: 18px;
  border-radius: 36px 36px 0 0;
  background: var(--orange);
}

.journey-card.accent-card .sunrise-visual::before {
  background: #ffffff;
}

.sunrise-visual::after {
  left: 14px;
  top: 53px;
  width: 44px;
  height: 2px;
  background: rgba(1, 105, 55, 0.56);
  box-shadow: 0 7px 0 rgba(1, 105, 55, 0.18);
}

.journey-card.accent-card .sunrise-visual::after {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 7px 0 rgba(255, 255, 255, 0.38);
}

.swipe-note {
  display: none;
  margin: 14px 0 0;
  color: rgba(1, 105, 55, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.journey-card,
.experience-card,
.entry-grid a,
.people-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

@media (hover: hover) {
  .journey-card:hover,
  .experience-card:hover,
  .entry-grid a:hover,
  .people-card:hover {
    transform: translateY(-4px);
  }
}

.consult-experience-section {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    url("https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.experience-card {
  border: 1px solid rgba(1, 105, 55, 0.13);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(1, 105, 55, 0.07);
}

.experience-card p {
  color: var(--muted);
}

.reveal-on-scroll {
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.heading-line {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-ready .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.journey-card:nth-child(2),
.experience-card:nth-child(2) {
  transition-delay: 0.08s;
}

.journey-card:nth-child(3),
.experience-card:nth-child(3) {
  transition-delay: 0.16s;
}

.journey-card:nth-child(4),
.experience-card:nth-child(4) {
  transition-delay: 0.24s;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 58px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.page-hero .section-inner {
  max-width: 820px;
}

.page-hero p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.page-hero h1 {
  font-size: clamp(31px, 3.5vw, 50px);
  max-width: 780px;
}


.page-note {
  display: inline-flex;
  margin-top: 18px !important;
  border: 1px solid rgba(1, 105, 55, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 14px;
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 700;
}

.cta-band {
  background: var(--green-deep);
  color: var(--white);
  padding: 58px 0;
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 36px 0 88px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.mobile-cta {
  display: none;
}


.form-section {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.form-intro p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.notice.compact {
  margin-top: 22px;
  padding: 18px;
}

.notice.compact p {
  margin: 0;
  font-size: 14px;
}

.counseling-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.counseling-form label,
.counseling-form fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
  font-weight: 700;
}

.counseling-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.counseling-form input,
.counseling-form select,
.counseling-form textarea {
  width: 100%;
  border: 1px solid rgba(1, 105, 55, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 13px;
  font: inherit;
  line-height: 1.35;
}

.counseling-form textarea {
  resize: vertical;
  min-height: 140px;
}

.counseling-form input:focus,
.counseling-form select:focus,
.counseling-form textarea:focus {
  outline: 2px solid rgba(255, 97, 0, 0.36);
  border-color: var(--orange);
}

.counseling-form legend {
  margin-bottom: 8px;
  font-weight: 700;
}

.choice {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted);
  font-weight: 600 !important;
}

.choice input {
  width: auto;
  min-width: 18px;
  margin-top: 5px;
  accent-color: var(--orange);
}

.hidden-field {
  display: none;
}

.form-submit {
  width: 100%;
  min-height: 54px;
  font-size: 16px;
}

.button.secondary.dark {
  color: var(--green-deep);
  background: var(--white);
  border-color: var(--line);
}

.thanks-hero {
  min-height: 62svh;
  display: grid;
  align-items: center;
}

@media (max-width: 880px) {
  html {
    scroll-snap-type: y mandatory;
  }

  body {
    line-height: 1.62;
  }

  .nav {
    min-height: 64px;
  }

  .nav-links,
  .nav-quick {
    display: none;
  }

  .menu-toggle {
    width: 54px;
    height: 54px;
  }

  .hero {
    min-height: 100svh;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.60) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.80), rgba(1, 74, 42, 0.16)),
      url("https://images.unsplash.com/photo-1528072164453-f4e8ef0d475a?auto=format&fit=crop&w=1800&q=84") 62% center / cover;
  }

  .snap-section {
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-inner {
    align-items: end;
    min-height: 100svh;
    padding: 82px 0 92px;
  }

  .hero-display {
    margin-bottom: 10px;
    color: rgba(1, 105, 55, 0.34);
    font-size: clamp(34px, 12vw, 52px);
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(30px, 8.8vw, 39px);
    line-height: 1.2;
  }

  h2 {
    font-size: clamp(25px, 6.4vw, 32px);
    line-height: 1.28;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .lead {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.72;
  }

  .hero-note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero .hero-actions {
    display: none;
  }

  .scene-inner {
    min-height: 100svh;
    align-content: center;
    padding: 78px 0 88px;
  }

  .scene-copy {
    max-width: 100%;
  }

  .scene-copy p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.62;
  }

  .concept-alert {
    margin-top: 12px !important;
    padding: 10px 12px;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
  }

  .flow-line,
  .entry-grid,
  .free-steps,
  .fit-grid,
  .life-route {
    gap: 8px;
    margin-top: 22px;
  }

  .flow-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-line article {
    min-height: 132px;
    padding: 12px 10px;
  }

  .flow-line article::after {
    left: 10px;
    right: 10px;
  }

  .flow-line span,
  .entry-grid span {
    font-size: 24px;
  }

  .flow-line h3 {
    margin-top: 8px;
    font-size: 17px;
  }

  .flow-line p {
    margin-top: 6px;
    font-size: 10.8px;
    line-height: 1.5;
  }

  .entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(96px, 1fr);
  }

  .entry-grid a,
  .entry-grid a:first-child {
    grid-row: auto;
    min-height: 96px;
    padding: 13px;
    color: var(--green-deep);
    border-color: rgba(1, 105, 55, 0.18);
    background: rgba(255, 255, 255, 0.9);
  }

  .entry-grid a:first-child:hover {
    background: rgba(255, 255, 255, 0.96);
  }

  .entry-grid strong {
    margin-top: 8px;
    font-size: 18px;
  }

  .entry-grid small,
  .entry-grid a:first-child small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10.5px;
    line-height: 1.45;
  }

  .snap-section .hero-copy,
  .snap-section .scene-copy,
  .snap-section .flow-line,
  .snap-section .entry-grid,
  .snap-section .trust-head,
  .snap-section .people-grid,
  .snap-section .assurance-grid,
  .snap-section .free-steps,
  .snap-section .fit-grid,
  .snap-section .life-route,
  .snap-section .scene-footnote,
  .snap-section .final-cta {
    opacity: 1;
    transform: none;
  }

  .trust-section.snap-section .section-inner {
    min-height: 100svh;
    align-content: center;
    padding: 78px 0 88px;
  }

  .trust-head {
    margin-bottom: 14px;
  }

  .scene-dots {
    right: 10px;
  }

  .grid.three,
  .grid.two,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-stage .card:nth-child(2),
  .feature-stage .card:nth-child(3) {
    transform: none;
  }

  .cta-band {
    padding: 44px 0 100px;
  }

  .cta-band .section-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 16px;
  }

  .cta-band .button {
    width: 100%;
  }

  .page-note {
    align-items: flex-start;
    border-radius: 8px;
    padding: 10px 12px;
    line-height: 1.55;
  }

  .form-layout,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .form-intro {
    position: static;
  }

  .counseling-form {
    padding: 18px;
  }

  .form-section {
    padding-bottom: 96px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    width: auto;
    max-width: 100vw;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
  }

  .mobile-cta .button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 9px 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .mobile-cta .button.secondary {
    color: var(--green-deep);
    background: var(--white);
    border-color: var(--line);
  }

  .people-grid,
  .partner-profile,
  .assurance-grid,
  .counselor-panel,
  .representative-panel,
  .fee-reassurance-panel {
    grid-template-columns: 1fr;
  }

  .counselor-panel {
    gap: 18px;
    padding: 18px;
  }

  .counselor-copy {
    order: 1;
  }

  .counselor-photo {
    order: 2;
    aspect-ratio: 16 / 10;
  }

  .counselor-copy h2 {
    font-size: 25px;
    line-height: 1.32;
  }

  .koala-card,
  .person-row,
  .partner-bio-row {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
  }

  .person-card,
  .partner-bio,
  .assurance-grid div {
    padding: 16px;
  }

  .person-photo {
    width: 74px;
  }

  .partner-logo img,
  .partner-bio-logo {
    max-width: 180px;
  }

  .person-copy h3,
  .partner-bio h3 {
    font-size: 18px;
  }

  .person-copy p:not(.person-role),
  .partner-bio p:not(.person-role) {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .representative-panel,
  .fee-reassurance-panel {
    gap: 18px;
    padding: 18px;
  }

  .representative-photo {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1;
    justify-self: start;
  }

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

  .free-steps article {
    min-height: 112px;
    padding: 12px;
  }

  .free-steps span,
  .life-route span {
    font-size: 20px;
  }

  .free-steps h3 {
    margin-top: 8px;
    font-size: 15.5px;
  }

  .free-steps p,
  .life-route p,
  .fit-card li,
  .scene-footnote {
    font-size: 10.8px;
    line-height: 1.48;
  }

  .scene-footnote {
    padding: 9px 11px;
  }

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

  .fit-card {
    padding: 12px;
  }

  .fit-label {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .fit-card ul {
    gap: 6px;
  }

  .fit-card li {
    padding-left: 14px;
  }

  .fit-card li::before {
    top: 0.72em;
    width: 6px;
    height: 6px;
  }

  .life-route {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .life-route article {
    min-height: auto;
    padding: 9px 12px;
  }

  .life-route strong {
    display: inline;
    margin-top: 0;
    margin-left: 8px;
    font-size: 14px;
  }

  .life-route p {
    margin: 3px 0 0 30px;
  }

  .life-route article:not(:last-child)::after {
    left: 21px;
    right: auto;
    top: auto;
    bottom: -7px;
    width: 2px;
    height: 12px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 16px;
  }

  .final-cta .eyebrow,
  .final-cta h2,
  .final-cta p,
  .final-cta .hero-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .final-cta .hero-actions {
    display: none;
  }

  .people-grid {
    gap: 10px;
  }

  .assurance-grid {
    gap: 8px;
  }

  .assurance-grid div {
    padding: 12px;
  }

  .assurance-grid strong {
    font-size: 13.5px;
  }

  .assurance-grid p {
    margin-top: 3px;
    font-size: 10.8px;
    line-height: 1.45;
  }

  .final-cta {
    margin-top: 10px;
    padding: 13px;
  }

  .final-cta h2 {
    font-size: 22px;
  }

  .final-cta p:not(.eyebrow) {
    font-size: 11.5px;
    line-height: 1.55;
  }


  .journey-cards,
  .experience-track {
    grid-auto-columns: minmax(236px, 82vw);
    margin-right: -16px;
    padding-right: 16px;
  }

  .journey-card,
  .experience-card {
    min-height: 190px;
    padding: 18px;
  }

  .journey-card h3,
  .experience-card h3 {
    margin-top: 34px;
    font-size: 22px;
  }

  .representative-copy h2 {
    font-size: 27px;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(29px, 8.8vw, 38px);
  }

  .lead,
  .page-hero p {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .nav-cta {
    display: none;
  }

  .menu-panel {
    width: 100%;
  }

  .scene-dots,
  .scroll-cue {
    display: none;
  }

  .trust-line {
    display: none;
  }

  .scene-copy p:not(.eyebrow),
  .lead {
    font-size: 13px;
  }

  .entry-grid strong {
    font-size: 17px;
  }

  .entry-grid small {
    font-size: 11px;
    line-height: 1.5;
  }
}


/* Four-scene top LP refinement */
.hero {
  background:
    radial-gradient(circle at 82% 34%, rgba(255, 97, 0, 0.14), rgba(255, 255, 255, 0) 29%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.58) 36%, rgba(255, 255, 255, 0.20) 64%, rgba(1, 105, 55, 0.10) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.18)),
    url("/study-assets/img/backgrounds/gold-coast-skyline-beach.jpg") 62% center / cover;
}

.hero-display {
  color: rgba(1, 105, 55, 0.38);
  font-size: clamp(40px, 6.3vw, 92px);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.74);
}

.scene-map {
  overflow: hidden;
  color: var(--green);
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 97, 0, 0.11), rgba(255, 255, 255, 0) 31%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.70)),
    url("/study-assets/img/backgrounds/whitehaven-beach-aerial.jpg") center / cover;
}

.scene-fit {
  background:
    radial-gradient(circle at 84% 28%, rgba(255, 97, 0, 0.10), rgba(255, 255, 255, 0) 34%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.72)),
    url("/study-assets/img/backgrounds/uluru.jpg") center / cover;
}

.scene-trust {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 97, 0, 0.09), rgba(255, 255, 255, 0) 32%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.80)),
    url("/study-assets/img/backgrounds/bondi-beach-aerial.jpg") center / cover;
}

.scene-map .scene-copy p:not(.eyebrow),
.scene-fit .scene-copy p:not(.eyebrow) {
  color: var(--muted);
}

.scene-map-inner {
  gap: 22px;
}

.compact-flow {
  margin-top: 0;
}

.compact-flow article {
  min-height: 146px;
}

.free-map,
.condition-board,
.life-mini-route {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.18s, transform 0.7s ease 0.18s;
}

.free-map {
  display: grid;
  grid-template-columns: minmax(190px, 0.52fr) repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.free-map-title,
.free-map article,
.condition-card,
.life-mini-route {
  border: 1px solid rgba(1, 105, 55, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(1, 105, 55, 0.07);
}

.free-map-title {
  display: grid;
  align-content: center;
  padding: 18px;
  background: var(--green);
  color: var(--white);
}

.free-map-title .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.free-map-title h3 {
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.28;
}

.free-map article {
  padding: 18px;
}

.free-map article span,
.condition-card span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 97, 0, 0.12);
  padding: 5px 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.free-map article strong,
.condition-card strong {
  display: block;
  color: var(--green);
  font-size: 17px;
  line-height: 1.45;
}

.free-map article p,
.condition-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.condition-board {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 12px;
}

.condition-card {
  position: relative;
  overflow: hidden;
  min-height: 196px;
  padding: 20px;
}

.condition-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 4px;
  background: var(--orange);
  transform-origin: left;
  transform: scaleX(0.34);
}

.condition-card.is-main {
  background:
    linear-gradient(155deg, rgba(1, 105, 55, 0.88), rgba(1, 74, 42, 0.78)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1100&q=82") center / cover;
}

.condition-card.is-main span {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.condition-card.is-main strong,
.condition-card.is-main p {
  color: var(--white);
}

.condition-card.is-main p {
  color: rgba(255, 255, 255, 0.82);
}

.life-mini-route {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
}

.life-mini-route p {
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.life-mini-route div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.life-mini-route span {
  border-radius: 999px;
  background: rgba(1, 105, 55, 0.08);
  padding: 7px 11px;
  color: var(--green);
  font-size: 12.5px;
  font-weight: 700;
}

.trust-section.snap-section .section-inner {
  padding-top: 82px;
  padding-bottom: 34px;
}

.trust-head {
  margin-bottom: 18px;
}

.people-grid {
  gap: 14px;
}

.person-card {
  padding: 18px;
}

.assurance-grid {
  gap: 10px;
  margin-top: 12px;
}

.final-cta {
  margin-top: 12px;
}

@media (max-width: 880px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.48) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(1, 74, 42, 0.12)),
      url("/study-assets/img/backgrounds/gold-coast-skyline-beach.jpg") 62% center / cover;
  }

  .scene-map-inner {
    gap: 12px;
  }

  .compact-flow article {
    min-height: 118px;
  }

  .free-map {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .free-map-title,
  .free-map article {
    padding: 12px;
  }

  .free-map-title h3 {
    font-size: 18px;
  }

  .free-map article strong,
  .condition-card strong {
    font-size: 14.5px;
  }

  .free-map article p,
  .condition-card p {
    font-size: 10.8px;
    line-height: 1.48;
  }

  .condition-board {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .condition-card {
    min-height: auto;
    padding: 12px;
  }

  .condition-card span {
    margin-bottom: 6px;
    padding: 4px 8px;
    font-size: 10.8px;
  }

  .life-mini-route {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .life-mini-route div {
    gap: 6px;
  }

  .life-mini-route span {
    padding: 5px 8px;
    font-size: 10.5px;
  }

  .trust-section.snap-section .section-inner {
    padding-top: 76px;
    padding-bottom: 88px;
  }
}

@media (max-width: 520px) {
  .hero-display {
    color: rgba(1, 105, 55, 0.32);
  }

  .scene-map .flow-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Microcopy and line-break polish */
.hero-copy,
.scene-copy,
.free-map,
.condition-board,
.life-mini-route,
.trust-head,
.people-grid,
.assurance-grid,
.final-cta {
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-copy h1,
.scene-copy h2,
.trust-head h2,
.final-cta h2,
.free-map-title h3,
.person-copy h3,
.assurance-grid strong,
.condition-card strong {
  text-wrap: balance;
}

.hero-copy .lead {
  max-width: 590px;
  line-height: 1.82;
}

.scene-copy p:not(.eyebrow) {
  max-width: 610px;
  line-height: 1.82;
}

.free-map article strong,
.condition-card strong,
.person-copy h3 {
  line-height: 1.48;
}

.free-map article p,
.condition-card p,
.person-copy p:not(.person-role),
.assurance-grid p {
  line-height: 1.78;
}

@media (min-width: 881px) {
  .scene-map .scene-copy,
  .scene-fit .scene-copy,
  .trust-head {
    max-width: 720px;
  }

  .condition-card p {
    max-width: 25em;
  }
}

@media (max-width: 880px) {
  .hero-copy,
  .scene-copy,
  .trust-head,
  .final-cta {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .hero-copy h1,
  .scene-copy h2,
  .trust-head h2,
  .final-cta h2 {
    line-height: 1.32;
  }

  .hero-copy .lead,
  .scene-copy p:not(.eyebrow),
  .trust-head p,
  .final-cta p:not(.eyebrow) {
    line-height: 1.75;
  }
}

@media (max-width: 520px) {
  .hero-copy h1,
  .scene-copy h2,
  .trust-head h2 {
    max-width: 12.5em;
  }

  .hero-copy .lead,
  .scene-copy p:not(.eyebrow),
  .trust-head p,
  .final-cta p:not(.eyebrow) {
    max-width: 23em;
  }

  .hero-note {
    line-height: 1.7;
  }
}


/* Lower page readability polish */
.page-hero {
  padding: 96px 0 54px;
}

.page-hero .section-inner {
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(30px, 3.15vw, 46px);
  line-height: 1.32;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 660px;
  line-height: 1.85;
}

.page-note {
  line-height: 1.55;
  white-space: normal;
}

.split h2,
.form-intro h2,
.representative-copy h2,
.partner-profile h2,
.section-head h2,
.cta-band h2 {
  line-height: 1.36;
  text-wrap: balance;
}

.card h3,
.person-card h3,
.partner-bio h3,
.experience-card h3 {
  line-height: 1.38;
  text-wrap: balance;
}

.card p,
.list li,
.notice p,
.form-intro p:not(.eyebrow),
.representative-copy p,
.partner-profile p,
.partner-bio p,
.fee-points span,
.experience-card p {
  line-height: 1.82;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.grid.two .card {
  min-height: 148px;
}

.notice.compact {
  background: rgba(255, 255, 255, 0.88);
}

.pre-form-grid div,
.fee-points p {
  border-color: rgba(1, 105, 55, 0.14);
}

.counseling-form label span {
  line-height: 1.6;
}

@media (max-width: 820px) {
  .page-hero {
    padding: 88px 0 44px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.34;
  }

  .page-hero p {
    font-size: 13.5px;
  }

  .split,
  .form-layout {
    gap: 24px;
  }

  .grid.two .card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .page-hero {
    padding: 82px 0 38px;
  }

  .page-hero .eyebrow {
    font-size: 12px;
  }

  .page-hero h1 {
    font-size: clamp(27px, 8.1vw, 35px);
    line-height: 1.36;
  }

  .page-note {
    display: block;
    border-radius: 8px;
  }

  .card,
  .notice,
  .counseling-form {
    padding: 18px;
  }
}

/* GC Koala reasons page */
.reasons-page {
  background: #ffffff;
}

.reasons-page main {
  overflow: hidden;
}


.reasons-hero {
  position: relative;
  min-height: min(650px, calc(100svh - 78px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}

.reasons-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 34%, rgba(255, 255, 255, 0.74) 51%, rgba(255, 255, 255, 0.14) 78%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.reasons-hero-photo {
  position: absolute;
  inset: 0;
  background: url("/study-assets/img/backgrounds/gold-coast-aerial-angus-gray.jpg") 63% center / cover no-repeat;
}

.reasons-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  padding-top: 72px;
  padding-bottom: 72px;
}

.reasons-hero-copy {
  min-width: 0;
  width: min(620px, 53%);
}

.reasons-hero-copy h1 {
  max-width: 620px;
  margin-top: 14px;
  color: var(--green-deep);
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.28;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.reasons-hero-copy h1 span {
  display: block;
}

.reasons-hero-lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.reasons-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.reasons-hero-line {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.reasons-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.reasons-trust-chips span {
  border: 1px solid rgba(1, 105, 55, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 13px;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
}

.reasons-hero-signature {
  position: absolute;
  right: 0;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 14px 10px 10px;
  box-shadow: 0 12px 30px rgba(0, 55, 32, 0.12);
  color: var(--green-deep);
  font-size: 11px;
}

.reasons-hero-signature img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  object-fit: cover;
}

.reasons-hero-signature strong {
  display: block;
  font-size: 12px;
}

.reasons-intro-section {
  background: #ffffff;
  padding-top: 58px;
  padding-bottom: 58px;
}

.reasons-section-head {
  max-width: 760px;
}

.reasons-section-head-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 40px;
  align-items: start;
}

.reasons-section-head h2,
.support-model-heading h2,
.coverage-copy h2 {
  margin-top: 10px;
  color: var(--green-deep);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: balance;
}

.reasons-section-head > p:not(.eyebrow),
.reasons-section-head-split > p,
.support-model-heading > p,
.coverage-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.reason-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(1, 105, 55, 0.14);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(1, 105, 55, 0.06);
}

.reason-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reason-number {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1;
}

.reason-kicker {
  margin: 0;
  color: rgba(1, 73, 40, 0.66);
  font-size: 11px;
  font-weight: 900;
}

.reason-card h3 {
  margin: 22px 0 0;
  color: var(--green-deep);
  font-size: 21px;
  line-height: 1.4;
}

.reason-card > p:not(.reason-kicker) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.78;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.reason-proof {
  min-height: 96px;
  margin-top: auto;
  padding-top: 22px;
}

.reason-proof-flow,
.reason-proof-life {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reason-proof-flow span,
.reason-proof-life span {
  display: grid;
  min-width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(1, 105, 55, 0.18);
  border-radius: 50%;
  background: #f4f8f5;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 900;
}

.reason-proof-life span {
  min-width: 46px;
  height: 46px;
}

.reason-proof-flow i,
.reason-proof-life i {
  flex: 1 1 18px;
  height: 1px;
  background: rgba(1, 105, 55, 0.34);
}

.reason-proof-coverage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 0;
}

.reason-proof-coverage div {
  border-left: 3px solid var(--orange);
  background: #f4f8f5;
  padding: 11px 12px;
}

.reason-proof-coverage dt {
  color: rgba(1, 73, 40, 0.68);
  font-size: 9px;
  font-weight: 800;
}

.reason-proof-coverage dd {
  margin: 5px 0 0;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.reason-proof-person {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.reason-proof-person img {
  width: 82px;
  height: 96px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center 28%;
}

.reason-proof-person span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.reason-proof-person strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-deep);
  font-size: 13px;
}

.proof-section {
  background: #f4f8f5;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
  margin-top: 34px;
}

.proof-profile {
  border: 1px solid rgba(1, 105, 55, 0.13);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(1, 105, 55, 0.06);
  overflow: hidden;
}

.proof-taka {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: stretch;
}

.proof-photo {
  min-height: 360px;
  overflow: hidden;
  background: #eef4f0;
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.proof-copy {
  padding: 26px;
}

.proof-copy h3 {
  margin: 6px 0 0;
  color: var(--green-deep);
  font-size: 24px;
  line-height: 1.35;
}

.proof-copy > p:not(.person-role):not(.proof-quote) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.82;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.proof-quote {
  margin: 18px 0 0;
  border-left: 4px solid var(--orange);
  background: rgba(255, 97, 0, 0.06);
  padding: 11px 13px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.taka-story {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.taka-story li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(1, 105, 55, 0.11);
  padding-top: 8px;
}

.taka-story span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.taka-story strong {
  color: var(--green-deep);
  font-size: 11.5px;
  line-height: 1.5;
}

.proof-partner-brand {
  display: flex;
  min-height: 88px;
  align-items: center;
  border-bottom: 1px solid rgba(1, 105, 55, 0.1);
  padding: 20px 26px;
}

.proof-partner-brand img {
  width: min(230px, 72%);
  max-height: 50px;
}

.proof-partner-body {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: start;
}

.proof-partner-photo {
  width: 108px;
  aspect-ratio: 4 / 5;
  margin: 28px 0 0 26px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
}

.proof-list {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  position: relative;
  padding-left: 18px;
  color: var(--green-deep);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.6;
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.support-model-section {
  background: #ffffff;
}

.support-model-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 56px;
  align-items: end;
}

.support-model-heading > p {
  margin-bottom: 4px;
}

.support-flow {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 1.05fr;
  gap: 10px;
  align-items: stretch;
  margin-top: 36px;
}

.support-flow-step,
.support-flow-result {
  min-height: 154px;
  border: 1px solid rgba(1, 105, 55, 0.14);
  border-radius: 8px;
  padding: 20px;
}

.support-flow-step {
  background: #f7faf8;
}

.support-flow-step span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.support-flow-step strong,
.support-flow-result strong {
  display: block;
  margin-top: 20px;
  color: var(--green-deep);
  font-size: 16px;
  line-height: 1.45;
}

.support-flow-step p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.support-flow-arrow {
  display: grid;
  place-items: center;
  color: rgba(1, 105, 55, 0.5);
  font-size: 22px;
}

.support-flow-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
}

.support-flow-result small {
  font-size: 12px;
  font-weight: 800;
}

.support-flow-result strong {
  margin-top: 8px;
  color: #ffffff;
  font-size: 24px;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.eligibility-card {
  border: 1px solid rgba(1, 105, 55, 0.14);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
}

.eligibility-primary {
  border-top: 4px solid var(--green);
}

.eligibility-label {
  margin: 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.eligibility-card h3 {
  margin: 8px 0 0;
  color: var(--green-deep);
  font-size: 17px;
  line-height: 1.5;
}

.eligibility-card > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.support-disclaimer {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.reasons-mid-cta {
  border-top: 1px solid rgba(1, 105, 55, 0.1);
  border-bottom: 1px solid rgba(1, 105, 55, 0.1);
  background: #f4f8f5;
}

.reasons-mid-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 44px;
}

.reasons-mid-cta h2 {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--green-deep);
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.35;
  letter-spacing: 0;
  text-wrap: balance;
}

.reasons-mid-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.78;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.reasons-mid-cta .hero-actions {
  flex-wrap: nowrap;
  margin: 0;
}


.coverage-section {
  position: relative;
  background: #f4f8f5;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.15fr);
  gap: 58px;
  align-items: center;
}

.coverage-basis {
  margin-top: 24px;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}

.coverage-basis > strong {
  color: var(--green-deep);
  font-size: 13px;
}

.coverage-basis ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.coverage-basis li {
  position: relative;
  padding-left: 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.coverage-basis li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.coverage-visual {
  min-height: 440px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
  border: 1px solid rgba(1, 105, 55, 0.13);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(1, 73, 40, 0.08);
}

.coverage-photo {
  position: relative;
  background: url("/study-assets/img/backgrounds/gold-coast-skyline-beach.jpg") center / cover no-repeat;
}

.coverage-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 73, 40, 0.04), rgba(1, 73, 40, 0.16));
}

.coverage-diagram {
  padding: 28px;
}

.coverage-diagram-title {
  margin: 0;
  color: var(--green-deep);
  font-size: 16px;
  font-weight: 900;
}

.coverage-route {
  position: relative;
  display: grid;
  gap: 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.coverage-route::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(1, 105, 55, 0.26);
}

.coverage-route li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.coverage-dot {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(1, 105, 55, 0.28);
}

.coverage-route-main .coverage-dot {
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 97, 0, 0.36);
}

.coverage-route strong {
  display: block;
  color: var(--green-deep);
  font-size: 14px;
}

.coverage-route small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.coverage-route em {
  border-radius: 999px;
  background: #f4f8f5;
  padding: 5px 8px;
  color: var(--green-deep);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.coverage-route-main em {
  background: rgba(255, 97, 0, 0.1);
  color: #c94d00;
}

.coverage-note {
  margin: 24px 0 0;
  border-top: 1px solid rgba(1, 105, 55, 0.11);
  padding-top: 14px;
  color: rgba(1, 73, 40, 0.68);
  font-size: 11px;
  line-height: 1.65;
}

.reasons-cta .eyebrow {
  color: #ffb17f;
}

.reasons-cta p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.8;
}

.reasons-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.reasons-cta-trust span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 7px 11px;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
}

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

  .reason-card {
    min-height: 270px;
  }

  .proof-grid,
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .support-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-flow-arrow {
    display: none;
  }

  .support-flow-result {
    grid-column: 1 / -1;
    min-height: 118px;
  }

  .coverage-map {
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  .reasons-hero {
    min-height: auto;
    padding: 0 0 38px;
  }

  .reasons-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.2) 34%, #ffffff 66%, #ffffff 100%);
  }

  .reasons-hero-photo {
    inset: 0;
    height: 360px;
    background-position: 58% center;
  }

  .reasons-hero-inner {
    width: calc(100% - 32px);
    padding-top: 300px;
    padding-bottom: 0;
  }

  .reasons-hero-copy {
    width: 100%;
  }

  .reasons-hero-copy h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .proof-taka {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .proof-photo {
    min-height: 330px;
  }

  .support-model-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .reasons-mid-cta-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reasons-mid-cta .hero-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .reasons-page {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .reasons-page .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .eligibility-card {
    padding: 17px;
  }

  .reasons-mid-cta-inner {
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .reasons-mid-cta h2 {
    font-size: 28px;
  }

  .reasons-mid-cta .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .reasons-mid-cta .button {
    width: 100%;
  }

  .reasons-hero-photo {
    height: 250px;
  }

  .reasons-hero-inner {
    padding-top: 208px;
  }

  .reasons-hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: 30px;
    line-height: 1.38;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .reasons-hero-copy h1 span {
    display: block;
  }

  .reasons-hero-lead {
    margin-top: 18px;
    font-size: 13.5px;
    line-height: 1.82;
  }

  .reasons-trust-chips {
    gap: 7px;
    margin-top: 20px;
  }

  .reasons-trust-chips span {
    padding: 8px 10px;
    font-size: 10.5px;
  }

  .reasons-section-head h2,
  .support-model-heading h2,
  .coverage-copy h2 {
    max-width: 12.5em;
    font-size: 30px;
    line-height: 1.34;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .reason-card {
    min-height: auto;
    padding: 20px;
  }

  .reason-card h3 {
    margin-top: 16px;
    font-size: 19px;
  }

  .proof-grid {
    gap: 12px;
    margin-top: 26px;
  }

  .proof-taka,
  .proof-partner-body {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .proof-photo {
    min-height: 290px;
  }

  .proof-copy {
    padding: 18px;
  }

  .proof-copy h3 {
    font-size: 20px;
  }

  .proof-partner-brand {
    min-height: 72px;
    padding: 16px 18px;
  }

  .proof-partner-photo {
    width: 82px;
    margin: 20px 0 0 18px;
  }

  .support-flow {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 26px;
  }

  .support-flow-step,
  .support-flow-result {
    min-height: auto;
  }

  .support-flow-step strong {
    margin-top: 10px;
  }

  .support-flow-result {
    grid-column: auto;
  }

  .coverage-map {
    min-height: 410px;
  }

  .coverage-map::before {
    left: 50%;
    right: auto;
    top: 12%;
    bottom: 12%;
    border-top: 0;
    border-left: 2px dashed rgba(255, 255, 255, 0.58);
  }

  .coverage-city:nth-child(1) { left: 7%; top: 9%; }
  .coverage-city:nth-child(2) { right: 7%; top: 39%; }
  .coverage-city:nth-child(3) { left: 8%; bottom: 8%; }
}


/* Study-support evidence layout: final responsive rules */
@media (max-width: 1050px) {
  .reasons-section-head-split { grid-template-columns: 1fr; gap: 14px; }
  .reasons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-visual { min-height: 390px; }
}

@media (max-width: 820px) {
  .reasons-hero { min-height: auto; padding-bottom: 40px; }
  .reasons-hero::after { background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.18) 34%, #fff 65%, #fff 100%); }
  .reasons-hero-photo { height: 350px; background-position: 60% center; }
  .reasons-hero-inner { width: calc(100% - 32px); padding-top: 294px; padding-bottom: 0; }
  .reasons-hero-copy { width: 100%; }
  .reasons-hero-copy h1 { font-size: 34px; }
  .reasons-hero-signature { display: none; }
  .coverage-visual { grid-template-columns: .72fr 1.28fr; }
}

@media (max-width: 620px) {
  .reasons-hero-photo { height: 250px; }
  .reasons-hero-inner { padding-top: 208px; }
  .reasons-hero-copy h1 { width: 100%; max-width: 100%; font-size: 30px; overflow-wrap: break-word; }
  .reasons-hero-copy h1 span { display: block; }
  .reasons-hero-actions { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: start; }
  .reasons-hero-actions .button { width: 100%; }
  .reasons-hero-line { padding: 4px 0; text-align: center; }
  .reasons-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 26px; }
  .reason-card { min-height: auto; display: flex; padding: 20px; }
  .reason-card h3 { font-size: 19px; }
  .reason-proof { min-height: auto; }
  .reason-proof-person { grid-template-columns: 64px 1fr; }
  .reason-proof-person img { width: 64px; height: 78px; }
  .coverage-visual { grid-template-columns: 1fr; min-height: 0; }
  .coverage-photo { min-height: 190px; }
  .coverage-diagram { padding: 22px 18px; }
  .coverage-route li { grid-template-columns: 16px minmax(0, 1fr); }
  .coverage-route em { grid-column: 2; justify-self: start; }
}

/* Study-support refinement: keep the opening compact and easy to scan. */
@media (min-width: 1051px) {
  .reasons-hero {
    min-height: min(600px, calc(100svh - 78px));
  }

  .reasons-hero-inner {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .reasons-section-head-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
    gap: 52px;
    align-items: end;
    max-width: 1040px;
  }

  .reasons-section-head-split > p {
    margin: 0 0 5px;
    border-left: 2px solid var(--orange);
    padding-left: 18px;
  }
}

@media (max-width: 820px) {
  .reasons-hero-photo {
    height: 320px;
  }

  .reasons-hero-inner {
    padding-top: 264px;
  }
}

@media (max-width: 620px) {
  .reasons-hero {
    padding-bottom: 34px;
  }

  .reasons-hero-photo {
    height: 230px;
  }

  .reasons-hero-inner {
    width: calc(100% - 36px);
    padding-top: 188px;
  }

  .reasons-hero-copy h1 {
    font-size: 27px;
    line-height: 1.36;
  }

  .reasons-hero-lead {
    font-size: 13px;
    line-height: 1.78;
  }
}

/* Study-support refinement: align card density and coverage information. */
@media (min-width: 1051px) {
  .reasons-section-head-split {
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.58fr);
    gap: 48px;
    max-width: 1120px;
  }

  .reasons-section-head-split h2 {
    font-size: clamp(30px, 3vw, 44px);
  }

  .reason-card {
    min-height: 264px;
    padding: 22px;
  }

  .reason-card h3 {
    margin-top: 18px;
  }

  .reason-card > p:not(.reason-kicker) {
    max-width: 52ch;
  }

  .reason-proof {
    min-height: 86px;
    padding-top: 18px;
  }

  .coverage-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.12fr);
    gap: 46px;
  }

  .coverage-visual {
    min-height: 410px;
  }

  .coverage-diagram {
    padding: 26px;
  }

  .coverage-route {
    gap: 20px;
    margin-top: 22px;
  }

  .coverage-note {
    margin-top: 20px;
  }
}

@media (max-width: 620px) {
  .reason-card {
    padding: 18px;
  }

  .reason-card h3 {
    margin-top: 14px;
  }

  .reason-proof {
    padding-top: 16px;
  }

  .coverage-diagram {
    padding: 20px 18px;
  }

  .coverage-route {
    gap: 18px;
    margin-top: 20px;
  }
}
