:root {
  --yellow: #f5c400;
  --yellow-strong: #ffd51f;
  --yellow-soft: #fff8d8;
  --ink: #101218;
  --ink-soft: #222630;
  --muted: #656b77;
  --line: #e7e8ec;
  --surface: #ffffff;
  --surface-soft: #f6f7f9;
  --danger: #c62828;
  --success: #177245;
  --shadow-sm: 0 10px 30px rgba(16, 18, 24, 0.08);
  --shadow-md: 0 24px 70px rgba(16, 18, 24, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button {
  border: 0;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(245, 196, 0, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 18, 24, 0.07);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 17px;
  line-height: 1.15;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.cta-top,
.btn-main,
.mobile-cta button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cta-top {
  min-height: 46px;
  padding: 0 20px;
  box-shadow: 0 10px 25px rgba(245, 196, 0, 0.22);
}

.btn-main {
  min-height: 58px;
  padding: 0 28px;
  font-size: 15px;
  box-shadow: 0 16px 35px rgba(245, 196, 0, 0.28);
}

.btn-main-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 35px rgba(16, 18, 24, 0.2);
}

.button-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition: transform 180ms ease;
}

.btn-main-dark .button-arrow {
  color: var(--ink);
}

.btn-secondary {
  min-height: 56px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.btn-secondary-dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

@media (hover: hover) {
  .cta-top:hover,
  .btn-main:hover,
  .mobile-cta button:hover {
    transform: translateY(-2px);
    background: var(--yellow-strong);
    box-shadow: 0 20px 42px rgba(245, 196, 0, 0.34);
  }

  .btn-main:hover .button-arrow {
    transform: translateX(3px);
  }

  .btn-main-dark:hover {
    background: #000;
    box-shadow: 0 20px 42px rgba(16, 18, 24, 0.27);
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .btn-secondary-dark:hover {
    background: var(--surface-soft);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 15%, rgba(245, 196, 0, 0.14), transparent 34%),
    linear-gradient(135deg, #0d0f14 0%, #171b24 55%, #101218 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 196, 0, 0.75), transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  width: 370px;
  height: 370px;
  right: -130px;
  top: -140px;
  border: 1px solid rgba(245, 196, 0, 0.2);
}

.hero-orb-two {
  width: 180px;
  height: 180px;
  left: -90px;
  bottom: 60px;
  background: rgba(245, 196, 0, 0.05);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 700px;
  padding-block: 78px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: 72px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #8f6f00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--yellow);
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(245, 196, 0, 0.12);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  margin-top: 9px;
  color: var(--yellow);
}

.hero-desc {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

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

.hero-microcopy {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  max-width: 500px;
  justify-self: end;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 42px 42px 120px 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.42);
  background: #20242d;
}

.hero-image {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3));
}

.hero-info-card {
  position: absolute;
  left: -58px;
  bottom: 38px;
  width: min(330px, 78%);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 19px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.hero-info-icon {
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 900;
}

.hero-info-card strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.hero-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.55;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--yellow);
}

.trust-grid {
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  min-height: 70px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(16, 18, 24, 0.16);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-icon {
  flex: 0 0 37px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(16, 18, 24, 0.25);
  font-size: 10px;
  font-weight: 800;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 13px;
}

.trust-item small {
  margin-top: 4px;
  color: rgba(16, 18, 24, 0.68);
  font-size: 9.5px;
  line-height: 1.45;
}

.section {
  padding-block: 106px;
}

.section-soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.requirements-copy h2,
.maps-copy h2,
.cta-final h2 {
  margin: 13px 0 17px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.section-heading p,
.requirements-copy > p,
.maps-copy > p,
.cta-final p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 78px;
  align-items: start;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reason-card {
  min-height: 225px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(16, 18, 24, 0.045);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.reason-number {
  display: inline-flex;
  margin-bottom: 38px;
  color: #9b7a00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.reason-card h3,
.process-card h3,
.benefit-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.reason-card p,
.process-card p,
.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.72;
}

@media (hover: hover) {
  .reason-card:hover,
  .process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 196, 0, 0.55);
    box-shadow: var(--shadow-sm);
  }
}

.process-section {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-card {
  position: relative;
  min-height: 290px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff, #fbfbfc);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--yellow-soft);
}

.process-top {
  position: relative;
  z-index: 2;
  margin-bottom: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-top span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.process-top small {
  color: #8f939c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.benefit {
  color: #fff;
  background: linear-gradient(145deg, #101218, #1b202a);
}

.section-heading-inverse .section-kicker {
  color: var(--yellow);
}

.section-heading-inverse p {
  color: rgba(255, 255, 255, 0.62);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  min-height: 260px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease, background 220ms ease, border-color 220ms ease;
}

.benefit-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card-accent {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.benefit-card-accent p {
  color: rgba(16, 18, 24, 0.7);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 53px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--yellow);
  background: rgba(245, 196, 0, 0.1);
  border: 1px solid rgba(245, 196, 0, 0.26);
  font-size: 20px;
  font-weight: 800;
}

.benefit-card-accent .benefit-icon {
  color: var(--ink);
  border-color: rgba(16, 18, 24, 0.18);
  background: rgba(255, 255, 255, 0.3);
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.62);
}

@media (hover: hover) {
  .benefit-card:hover {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(245, 196, 0, 0.38);
  }

  .benefit-card-accent:hover {
    background: var(--yellow-strong);
  }
}

.requirements {
  background: var(--yellow-soft);
}

.requirements-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 88px;
  align-items: center;
}

.requirements-copy > p {
  max-width: 560px;
  margin-bottom: 28px;
}

.requirements-list {
  display: grid;
  gap: 12px;
}

.requirement-item {
  padding: 21px 23px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(16, 18, 24, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.requirement-item > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #8f6f00;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
}

.requirement-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.requirement-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.alumni {
  background: var(--surface);
}

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.alumni-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 12px 38px rgba(16, 18, 24, 0.05);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease, box-shadow 220ms ease;
}

.alumni-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.alumni-card > img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  background: var(--surface-soft);
}

.alumni-body {
  min-height: 230px;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.quote-mark {
  height: 30px;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.alumni-body p {
  flex: 1;
  margin: 15px 0 22px;
  color: #4f5560;
  font-size: 11.5px;
  line-height: 1.75;
}

.alumni-body strong,
.alumni-body small {
  display: block;
}

.alumni-body strong {
  font-size: 12.5px;
}

.alumni-body small {
  margin-top: 3px;
  color: #8a8f98;
  font-size: 9.5px;
}

@media (hover: hover) {
  .alumni-card:hover {
    box-shadow: var(--shadow-sm);
  }
}

.gallery {
  color: #fff;
  background: #11141a;
}

.gallery-heading .section-kicker {
  color: var(--yellow);
}

.gallery-heading p {
  color: rgba(255, 255, 255, 0.58);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  grid-template-rows: repeat(2, 280px);
  gap: 13px;
}

.gallery-button {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #272b34;
  cursor: zoom-in;
}

.gallery-button:first-child {
  grid-row: 1 / span 2;
}

.gallery-button:last-child {
  grid-column: 2 / span 2;
}

.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 300ms ease;
}

.gallery-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.55));
}

.gallery-button > span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

@media (hover: hover) {
  .gallery-button:hover .gallery-item {
    transform: scale(1.045);
    filter: saturate(1.08);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.88);
  transition: opacity 200ms ease, visibility 200ms ease;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  font-size: 26px;
  cursor: pointer;
}

.faq {
  background: var(--surface-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 116px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 23px 46px 23px 0;
  list-style: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.55;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 18px;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--yellow);
  border-color: var(--yellow);
}

.faq-item p {
  max-width: 760px;
  margin: -4px 44px 24px 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.8;
}

.maps {
  background: #fff;
}

.maps-layout {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 58px;
  align-items: center;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 5px;
}

.maps-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.maps-wrapper iframe {
  width: 100%;
  height: 430px;
  display: block;
  border: 0;
}

.cta-final {
  padding-block: 70px;
  color: #fff;
  background: #11141a;
}

.cta-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.cta-final .section-kicker {
  color: var(--yellow);
}

.cta-final h2 {
  margin-bottom: 10px;
}

.cta-final p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer {
  padding: 50px 0 24px;
  color: rgba(255, 255, 255, 0.66);
  background: #090a0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr auto;
  align-items: start;
  gap: 58px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: #fff;
  font-size: 14px;
}

.footer-brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.45;
}

.footer-grid > p {
  margin: 0;
  font-size: 9.5px;
  line-height: 1.75;
}

.footer-links {
  display: flex;
  gap: 17px;
}

.footer-links a,
.footer-links button {
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 10px;
  text-decoration: none;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 8.5px;
}

.mobile-cta {
  display: none;
}

/* Form */
.form-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  background: rgba(8, 9, 12, 0.82);
  backdrop-filter: blur(10px);
  transition: opacity 200ms ease, visibility 200ms ease;
}

.form-overlay.active {
  visibility: visible;
  opacity: 1;
}

.form-shell {
  position: relative;
  width: min(100%, 700px);
  height: min(760px, calc(100dvh - 44px));
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.36);
}

.form-close {
  position: absolute;
  z-index: 8;
  top: 17px;
  right: 17px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #5f646e;
  background: #f1f2f4;
  font-size: 21px;
  cursor: pointer;
}

#leadForm {
  width: 100%;
  height: 100%;
}

.form-server-alert {
  position: absolute;
  z-index: 7;
  top: 70px;
  left: 18px;
  max-width: calc(100% - 86px);
  padding: 10px 13px;
  display: grid;
  gap: 2px;
  border-radius: 11px;
  color: #7b1d1d;
  background: #fff0f0;
  border: 1px solid #ffd0d0;
  font-size: 9px;
}

.form-server-alert strong {
  font-size: 10px;
}

.form-slide {
  display: none;
  height: 100%;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.form-slide.active {
  display: grid;
}

.form-step-header {
  padding: 26px 76px 12px 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.form-step-header div {
  display: grid;
  gap: 4px;
}

.form-step-header span,
.form-step-header small {
  color: #90959f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-step-header strong {
  font-size: 13px;
}

.form-progress {
  height: 4px;
  overflow: hidden;
  background: #eceef1;
}

.form-progress span {
  display: block;
  height: 100%;
  border-radius: 0 4px 4px 0;
  background: var(--yellow);
  transition: width 250ms ease;
}

body[data-has-form-errors="1"] .form-content {
  padding-top: 86px;
}

.form-content {
  min-height: 0;
  padding: 35px 40px 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #d5d8df transparent;
}

.form-content::-webkit-scrollbar {
  width: 5px;
}

.form-content::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #d5d8df;
}

.form-title {
  margin-bottom: 9px;
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.form-desc {
  max-width: 560px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.72;
}

.form-fields {
  display: grid;
  gap: 18px;
}

.field,
.fieldset-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field label,
.fieldset-field legend {
  display: block;
  margin-bottom: 7px;
  color: #323741;
  font-size: 10.5px;
  font-weight: 700;
}

.field label span {
  color: #a77e00;
}

.field label em,
.fieldset-field legend em {
  color: #979ca5;
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #dfe1e6;
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  font-size: 11.5px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #777d87 50%),
    linear-gradient(135deg, #777d87 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 22px,
    calc(100% - 14px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field input::placeholder {
  color: #a5a9b1;
}

.field input:focus,
.field select:focus {
  border-color: #c89d00;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.13);
}

.field select:disabled {
  color: #9da1aa;
  background-color: #f4f5f7;
  cursor: not-allowed;
}

.field-help {
  display: block;
  margin-top: 6px;
  color: #959aa4;
  font-size: 8.5px;
  line-height: 1.45;
}

.error {
  display: block;
  margin-top: 6px;
  color: var(--danger);
  font-size: 8.5px;
  line-height: 1.45;
}

.field.invalid input,
.field.invalid select {
  border-color: #db7d7d;
  background: #fffafa;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.choice-chip input,
.readiness-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-chip span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe1e6;
  border-radius: 13px;
  color: #4c515b;
  background: #fff;
  font-size: 10.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.choice-chip input:checked + span {
  border-color: #c89d00;
  background: var(--yellow-soft);
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.1);
}

.form-info-note {
  margin-bottom: 20px;
  padding: 14px 15px;
  display: grid;
  gap: 4px;
  border: 1px solid #f1d66a;
  border-radius: 13px;
  background: var(--yellow-soft);
}

.form-info-note strong {
  font-size: 10px;
}

.form-info-note span {
  color: #746323;
  font-size: 8.5px;
  line-height: 1.5;
}

.readiness-options {
  display: grid;
  gap: 10px;
}

.readiness-option {
  display: block;
  cursor: pointer;
}

.readiness-option > span {
  min-height: 79px;
  padding: 16px 17px;
  display: grid;
  gap: 5px;
  border: 1px solid #dfe1e6;
  border-radius: 15px;
  background: #fff;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.readiness-option strong,
.readiness-option small {
  display: block;
}

.readiness-option strong {
  font-size: 11px;
}

.readiness-option small {
  color: var(--muted);
  font-size: 8.5px;
  line-height: 1.5;
}

.readiness-option input:checked + span {
  border-color: #c89d00;
  background: var(--yellow-soft);
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.1);
}

.consent-box {
  margin-top: 17px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #575d67;
  font-size: 8.5px;
  line-height: 1.6;
  cursor: pointer;
}

.consent-box input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--yellow);
}

.consent-box.invalid {
  color: var(--danger);
}

.consent-error {
  margin-left: 28px;
}

.privacy-details {
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 12px;
  background: #f5f6f8;
}

.privacy-details summary {
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.privacy-details p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
}

.form-actions {
  padding: 15px 24px calc(15px + env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #eceef1;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.form-back,
.form-next {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  cursor: pointer;
}

.form-back {
  color: #575d67;
  background: #f1f2f4;
}

.form-next {
  min-width: 160px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 10px 26px rgba(245, 196, 0, 0.24);
}

.form-next.disabled,
.form-next:disabled {
  color: #989da6;
  background: #e8e9ec;
  box-shadow: none;
  cursor: not-allowed;
}

[hidden] {
  display: none !important;
}

.reveal-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1024px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 0.85fr;
    gap: 42px;
  }

  .hero-info-card {
    left: -28px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 12px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:first-child,
  .trust-item:last-child {
    padding-inline: 24px;
  }

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

  .benefit-grid,
  .alumni-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-rows: repeat(2, 230px);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 78px;
  }

  .hero-grid,
  .split-intro,
  .requirements-grid,
  .faq-layout,
  .maps-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 60px 82px;
    gap: 48px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: min(100%, 550px);
    justify-self: center;
  }

  .hero-info-card {
    left: 18px;
    bottom: 18px;
  }

  .split-intro,
  .requirements-grid,
  .faq-layout,
  .maps-layout {
    gap: 46px;
  }

  .faq-heading {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-button:first-child {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .gallery-button:last-child {
    grid-column: 1 / span 2;
  }

  .cta-final-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text small {
    font-size: 8.5px;
  }

  .cta-top {
    display: none;
  }

  .hero-grid {
    padding-block: 46px 64px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.7;
  }

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

  .btn-main,
  .btn-secondary {
    width: 100%;
  }

  .hero-microcopy {
    display: grid;
    gap: 6px;
  }

  .hero-image-frame {
    border-radius: 30px 30px 82px 30px;
  }

  .hero-info-card {
    width: calc(100% - 36px);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 14px;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 15px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 18, 24, 0.13);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 66px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .requirements-copy h2,
  .maps-copy h2,
  .cta-final h2 {
    font-size: 32px;
  }

  .section-heading p,
  .requirements-copy > p,
  .maps-copy > p,
  .cta-final p {
    font-size: 13px;
  }

  .reason-grid,
  .process-grid,
  .benefit-grid,
  .alumni-grid {
    grid-template-columns: 1fr;
  }

  .reason-card,
  .process-card,
  .benefit-card {
    min-height: auto;
  }

  .reason-number,
  .process-top,
  .benefit-icon {
    margin-bottom: 28px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-button,
  .gallery-button:first-child,
  .gallery-button:last-child {
    grid-column: auto;
    grid-row: auto;
    height: 240px;
  }

  .maps-wrapper iframe {
    height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    grid-column: auto;
  }

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

  .mobile-cta {
    position: fixed;
    z-index: 55;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-cta button {
    width: 100%;
    min-height: 52px;
    font-size: 12px;
  }

  .form-overlay {
    align-items: stretch;
    padding: 0;
  }

  .form-shell {
    width: 100%;
    height: 100dvh;
    border-radius: 0;
  }

  .form-step-header {
    padding: 22px 62px 11px 20px;
  }

  .form-content {
    padding: 28px 20px 18px;
  }

  .form-title {
    font-size: 27px;
  }

  .form-actions {
    padding-inline: 14px;
  }

  .form-back,
  .form-next {
    min-height: 47px;
    padding-inline: 15px;
  }

  .form-next {
    min-width: 148px;
  }

}

@media (max-width: 380px) {
  .choice-row {
    grid-template-columns: 1fr;
  }

  .form-back,
  .form-next {
    font-size: 9px;
  }

  .form-next {
    min-width: 135px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-card,
  .benefit-card,
  .alumni-card {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   PROGRAM IM JAPAN — BENEFITS & REQUIREMENTS
========================================================= */
.program-benefits {
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(245, 196, 0, 0.12), transparent 28%),
    linear-gradient(145deg, #0e1015, #171c25 62%, #101218);
}

.program-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.program-highlight-card {
  min-height: 210px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.program-highlight-card strong {
  margin: 12px 0 8px;
  color: var(--yellow);
  font-size: clamp(28px, 3.5vw, 43px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.program-highlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
  line-height: 1.65;
}

.program-card-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-highlight-accent {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
}

.program-highlight-accent strong {
  color: var(--ink);
}

.program-highlight-accent .program-card-label,
.program-highlight-accent p {
  color: rgba(16, 18, 24, 0.67);
}

.allowance-panel {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.allowance-heading {
  padding: 28px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.allowance-heading h3 {
  margin: 9px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.allowance-unit {
  padding: 8px 12px;
  border: 1px solid rgba(245, 196, 0, 0.3);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(245, 196, 0, 0.08);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.allowance-table-wrap {
  overflow-x: auto;
}

.allowance-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.allowance-table th,
.allowance-table td {
  padding: 22px 28px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.allowance-table thead th {
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.025);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.allowance-table tbody th {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.allowance-table td strong {
  color: var(--yellow);
  font-size: 19px;
}

.allowance-table tbody tr:last-child th,
.allowance-table tbody tr:last-child td {
  border-bottom: 0;
}

.program-support-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.program-support-card {
  min-height: 145px;
  padding: 20px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.program-support-card > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 196, 0, 0.28);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 8px;
  font-weight: 800;
}

.program-support-card strong {
  display: block;
  margin: 4px 0 7px;
  font-size: 12px;
}

.program-support-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9.5px;
  line-height: 1.6;
}

.program-note {
  margin-top: 18px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  border-radius: 17px;
  color: var(--ink);
  background: var(--yellow-soft);
}

.program-note strong {
  font-size: 11px;
  white-space: nowrap;
}

.program-note p {
  margin: 0;
  color: rgba(16, 18, 24, 0.69);
  font-size: 10px;
  line-height: 1.68;
}

.requirement-summary {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.requirement-summary > div {
  min-height: 120px;
  padding: 20px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  column-gap: 12px;
  border: 1px solid rgba(16, 18, 24, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.requirement-summary span {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #8f6f00;
  background: #fff;
  font-size: 8px;
  font-weight: 800;
}

.requirement-summary strong,
.requirement-summary small {
  display: block;
}

.requirement-summary strong {
  font-size: 13px;
}

.requirement-summary small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.requirement-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.requirement-panel {
  padding: 27px;
  border: 1px solid rgba(16, 18, 24, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(16, 18, 24, 0.045);
}

.requirement-panel-wide {
  margin-top: 16px;
}

.requirement-panel-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.requirement-panel-heading > span {
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.requirement-panel-heading small {
  display: block;
  margin-bottom: 3px;
  color: #8f6f00;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.requirement-panel-heading h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

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

.requirement-checklist li {
  position: relative;
  padding-left: 25px;
  color: #555b66;
  font-size: 11px;
  line-height: 1.65;
}

.requirement-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 8px;
  font-weight: 900;
}

.admin-document-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.requirements-action {
  margin-top: 18px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--ink);
}

.requirements-action strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.requirements-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.6;
}

.requirements-action .btn-main-dark {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(245, 196, 0, 0.2);
}

@media (max-width: 1024px) {
  .program-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .program-highlight-grid,
  .requirement-summary {
    grid-template-columns: 1fr;
  }

  .requirement-panel-grid,
  .admin-document-grid {
    grid-template-columns: 1fr;
  }

  .program-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .program-highlight-card {
    min-height: 180px;
  }

  .allowance-heading {
    padding: 22px 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .allowance-table th,
  .allowance-table td {
    padding: 18px 20px;
  }

  .program-support-grid {
    grid-template-columns: 1fr;
  }

  .program-support-card {
    min-height: auto;
  }

  .requirement-panel {
    padding: 22px 20px;
  }

  .requirements-action {
    align-items: stretch;
    flex-direction: column;
  }
}

/* =========================================================
   LPK SAITAMA SALES FOCUS + LIVE JPY/IDR
========================================================= */
:root {
  --brand-blue: #082c71;
  --brand-blue-deep: #041b47;
  --brand-blue-light: #eaf2ff;
  --brand-red: #e32636;
}

.header-inner {
  min-height: 82px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2.2vw, 30px);
}

.header-nav a {
  position: relative;
  color: #343a46;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-red);
  transition: right 180ms ease;
}

@media (hover: hover) {
  .header-nav a:hover::after {
    right: 0;
  }
}

.hero {
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 196, 0, 0.2), transparent 32%),
    radial-gradient(circle at 85% 25%, rgba(39, 111, 218, 0.36), transparent 38%),
    linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-blue) 57%, #0a418d 100%);
}

.hero-grid {
  min-height: 720px;
  padding-block: 76px 90px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 62px;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(43px, 5vw, 70px);
}

.hero h1 span {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 7px;
  text-underline-offset: 7px;
}

.hero-desc {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.hero-desc strong {
  color: var(--yellow);
}

.hero-visual {
  width: 100%;
  max-width: 540px;
}

.hero-image-frame {
  overflow: visible;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #dce9ff;
  box-shadow: 0 42px 95px rgba(0, 0, 0, 0.36);
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: -13px 20px 16px -13px;
  z-index: -1;
  border-radius: 38px;
  border: 1px solid rgba(245, 196, 0, 0.42);
}

.hero-image {
  width: 100%;
  aspect-ratio: 0.9;
  border-radius: 33px;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-image-shade {
  border-radius: 33px;
  background: linear-gradient(180deg, transparent 54%, rgba(2, 15, 42, 0.42));
}

.hero-image-badge {
  position: absolute;
  z-index: 2;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 15px;
  color: #fff;
  background: rgba(4, 27, 71, 0.78);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.hero-image-badge-top {
  top: 18px;
  right: 18px;
}

.hero-image-badge small,
.hero-image-badge strong {
  display: block;
}

.hero-image-badge small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-image-badge strong {
  font-size: 11px;
}

.hero-info-card {
  left: -45px;
  bottom: -20px;
  width: min(355px, 82%);
  border-left: 5px solid var(--yellow);
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid #dfe5ef;
  box-shadow: 0 12px 35px rgba(8, 44, 113, 0.08);
}

.trust-item {
  border-right-color: rgba(8, 44, 113, 0.13);
}

.trust-icon {
  color: #fff;
  border-color: var(--brand-blue);
  background: var(--brand-blue);
}

.trust-item strong {
  color: var(--brand-blue);
}

.saitama-role {
  position: relative;
  overflow: hidden;
}

.saitama-role::before {
  content: "LPK SAITAMA";
  position: absolute;
  right: -18px;
  top: 20px;
  color: rgba(8, 44, 113, 0.035);
  font-size: clamp(70px, 13vw, 190px);
  font-weight: 900;
  letter-spacing: -0.07em;
  white-space: nowrap;
  pointer-events: none;
}

.role-statement {
  margin: 26px 0 25px;
  padding: 19px 21px;
  border-left: 5px solid var(--brand-red);
  border-radius: 0 16px 16px 0;
  color: var(--brand-blue-deep);
  background: var(--brand-blue-light);
  font-size: 13px;
  line-height: 1.7;
}

.reason-card {
  border-top: 4px solid var(--brand-blue);
}

.reason-number {
  color: var(--brand-red);
}

.program-benefits {
  background:
    radial-gradient(circle at 85% 10%, rgba(245, 196, 0, 0.12), transparent 28%),
    linear-gradient(145deg, #041b47, #082c71 62%, #061f52);
}

.program-benefits-header {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.46fr);
  gap: 38px;
  align-items: end;
}

.program-benefits-header .section-heading {
  margin-bottom: 0;
}

.fx-widget {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.fx-widget-top {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fx-widget-top span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-widget-top i {
  padding: 5px 8px;
  border-radius: 999px;
  color: #0d4f31;
  background: #c9f4db;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.fx-widget strong {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: clamp(23px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.fx-widget small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 8.5px;
}

.idr-estimate,
.allowance-table td > span {
  display: block;
  margin-bottom: 7px;
  color: #f6a7ad;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.program-highlight-accent .idr-estimate {
  color: #8d1c25;
}

.allowance-table td > span {
  margin-top: 5px;
  margin-bottom: 0;
}

.allowance-table td strong {
  display: block;
}

.program-highlight-card {
  justify-content: flex-start;
}

.program-highlight-card .program-card-label {
  margin-bottom: auto;
}

.program-highlight-card strong {
  margin-top: 34px;
}

.benefit {
  background:
    radial-gradient(circle at 10% 20%, rgba(227, 38, 54, 0.12), transparent 30%),
    linear-gradient(145deg, #071b43, #0b326f);
}

.benefit-card-accent {
  background: var(--yellow);
}

.cta-final {
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
}

.cta-final h2,
.cta-final p {
  color: #fff;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.68);
}

.cta-final .section-kicker {
  color: var(--yellow);
}

@media (max-width: 1120px) {
  .header-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 610px;
    justify-self: center;
  }

  .hero-info-card {
    left: 18px;
    bottom: -25px;
  }

  .program-benefits-header {
    grid-template-columns: 1fr;
  }

  .fx-widget {
    max-width: 470px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    min-height: 70px;
  }

  .brand-text small {
    display: none;
  }

  .hero-grid {
    padding-block: 56px 78px;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero h1 span {
    text-decoration-thickness: 4px;
    text-underline-offset: 5px;
  }

  .hero-desc {
    font-size: 14px;
  }

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

  .hero-actions .btn-main,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .hero-image-frame::before {
    inset: -8px 13px 12px -8px;
  }

  .hero-image-badge-top {
    top: 12px;
    right: 12px;
  }

  .hero-info-card {
    left: 12px;
    right: 12px;
    bottom: -30px;
    width: auto;
  }

  .program-benefits-header {
    gap: 22px;
  }

  .fx-widget strong {
    font-size: 25px;
  }
}

/* =========================================================
   V4 — AIDA + BEHAVIOR-LED CONVERSION
========================================================= */
.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 68px);
}

.hero h1 span {
  color: var(--yellow);
  text-decoration: none;
}

.hero-desc {
  max-width: 720px;
}

.hero-microcopy {
  align-items: flex-start;
}

.hero-microcopy span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.behavior-strip .trust-item {
  min-height: 112px;
}

.behavior-strip .trust-icon {
  font-size: 13px;
}

.program-benefits-header {
  align-items: center;
}

.salary-banner {
  margin-bottom: 18px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(245, 196, 0, 0.42);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 50%, rgba(245, 196, 0, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.13);
}

.salary-copy {
  max-width: 760px;
}

.salary-banner h3 {
  margin: 9px 0 10px;
  color: #fff;
  font-size: clamp(25px, 3.4vw, 43px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.salary-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.72;
}

.program-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.program-benefit-card {
  min-height: 265px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease, border-color 200ms ease, background 200ms ease;
}

.program-benefit-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 196, 0, 0.3);
  border-radius: 15px;
  background: rgba(245, 196, 0, 0.09);
  font-size: 21px;
}

.program-benefit-card h3 {
  margin: 9px 0 8px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.program-benefit-card p {
  margin: auto 0 0;
  padding-top: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  line-height: 1.68;
}

.program-benefit-card .idr-estimate,
.program-benefit-card .yen-estimate {
  display: block;
  margin: 0;
  color: #ffb8be;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
}

.program-benefit-card-accent {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
}

.program-benefit-card-accent .benefit-card-icon {
  border-color: rgba(16, 18, 24, 0.14);
  background: rgba(255, 255, 255, 0.38);
}

.program-benefit-card-accent .program-card-label,
.program-benefit-card-accent h3,
.program-benefit-card-accent p {
  color: var(--ink);
}

.program-benefit-card-accent .idr-estimate {
  color: #861e27;
}

.program-benefit-card-flight {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(245, 196, 0, 0.07));
}

.program-support-line {
  margin-top: 18px;
  padding: 17px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.program-support-line span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9.5px;
  font-weight: 700;
}

.role-microcopy {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.6;
}

.process-grid-five {
  grid-template-columns: repeat(5, 1fr);
}

.process-grid-five .process-card {
  min-height: 290px;
}

.process-action-card,
.alumni-action {
  margin-top: 20px;
  padding: 24px 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius-md);
}

.process-action-card {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
}

.process-action-card strong,
.alumni-action strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.process-action-card p,
.alumni-action p {
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
}

.process-action-card p {
  color: rgba(255, 255, 255, 0.66);
}

/* Show alumni photos in their original landscape proportion so the person is not cropped. */
.alumni-card > img {
  display: none;
}

.alumni-photo {
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: #eef3fa;
}

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

.alumni-body {
  min-height: 210px;
}

.alumni-action {
  border: 1px solid rgba(8, 44, 113, 0.12);
  background: var(--brand-blue-light);
}

.alumni-action p {
  color: var(--muted);
}

.cta-proof {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
}

.cta-proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 9.5px;
  font-weight: 700;
}

@media (hover: hover) {
  .program-benefit-card:hover {
    border-color: rgba(245, 196, 0, 0.38);
    background: rgba(255, 255, 255, 0.075);
  }

  .program-benefit-card-accent:hover {
    border-color: var(--yellow-strong);
    background: var(--yellow-strong);
  }
}

@media (max-width: 1120px) {
  .process-grid-five {
    grid-template-columns: repeat(3, 1fr);
  }

  .program-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .salary-banner,
  .process-action-card,
  .alumni-action {
    align-items: stretch;
    flex-direction: column;
  }

  .salary-banner .btn-main,
  .process-action-card .btn-main,
  .alumni-action .btn-main {
    width: 100%;
  }

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

  .process-grid-five .process-card {
    min-height: 245px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(36px, 10.5vw, 50px);
  }

  .hero-microcopy {
    display: grid;
  }

  .hero-microcopy span {
    width: fit-content;
  }

  .salary-banner {
    padding: 24px 21px;
  }

  .program-benefit-grid,
  .process-grid-five {
    grid-template-columns: 1fr;
  }

  .program-benefit-card {
    min-height: 230px;
  }

  .process-grid-five .process-card {
    min-height: auto;
  }

  .program-support-line {
    justify-content: flex-start;
  }

  .alumni-photo {
    aspect-ratio: 5 / 3;
  }

  .alumni-body {
    min-height: 195px;
  }

  .process-action-card,
  .alumni-action {
    padding: 22px 20px;
  }
}
