/* =================================================================
   リコット (recot) — トップページ デザインA案「静かな自信」
   Design tokens
   - navy        #0A1E3C   (base text / dark sections)
   - blue accent #1E5EDB
   - light blue  #7FA6E8   (labels on navy)
   - text gray   #4A5568
   - muted       #8A97A8
   - line green   #06C755  (LINE CTA)
   - gold        linear-gradient(160deg,#C9A143 10%,#8F6B1E 55%,#C9A143 90%)
   - radius 4px / heading 32px bold / body 16px / section gap 80px
   ================================================================= */

:root {
  --navy: #0A1E3C;
  --blue: #1E5EDB;
  --blue-light: #7FA6E8;
  --gray: #4A5568;
  --muted: #657386;
  --line: #06C755;
  --border: rgba(10, 30, 60, .08);
  --bg-soft: #F5F7FA;
  --gold-grad: linear-gradient(160deg, #C9A143 10%, #8F6B1E 55%, #C9A143 90%);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  color: var(--navy);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  padding-bottom: 70px;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }

img { max-width: 100%; }

.wrap { max-width: 1200px; margin: 0 auto; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .32em;
  color: var(--blue);
}

.section-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}

.hero__title span,
.hero__lead span { display: block; }

.award__title span { display: inline; }
.award__title span:last-child::before { content: "\A"; white-space: pre; }

.pill-btn {
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
}
.header__brand { display: flex; align-items: center; gap: 10px; color: var(--navy); flex-shrink: 0; }
.header__brand:hover { color: var(--navy); }
.header__logo { height: 42px; width: auto; object-fit: contain; }
.header__tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  white-space: nowrap;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  flex-wrap: nowrap;
}
.header__nav-row { display: contents; }
.header__nav .header__nav-mobile-only { display: none; }
.header__nav a { color: var(--navy); }
.header__nav a:hover { color: var(--blue); }
.header__menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.header__menu-toggle {
  display: none;
  position: relative;
  z-index: 24;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(176, 138, 46, .18);
}
.header__menu-toggle span {
  display: block;
  pointer-events: none;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.header__menu-state:checked + .header__menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__menu-state:checked + .header__menu-toggle span:nth-child(2) { opacity: 0; }
.header__menu-state:checked + .header__menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header__cta { display: flex; gap: 10px; }
.header__cta .pill-btn {
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.btn-line { background: var(--line); }
.btn-navy { background: var(--navy); }
.btn-line:hover, .btn-navy:hover { color: #fff; filter: brightness(.96); }

/* ================= 01 FIRST VIEW ================= */
.hero {
  --hero-side-space: max(44.8px, calc(40vw - 435.2px));
  position: relative;
  height: 760px;
  overflow: hidden;
  background: #26384c url("assets/hero_poster.jpg") 72% center / cover no-repeat;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero--static-media .hero__video { display: none; }
.hero__mask { position: absolute; inset: 0; background: rgba(40, 45, 55, .35); }
.hero__grad {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,18,40,.72) 0%, rgba(6,18,40,.45) 42%, rgba(6,18,40,0) 72%);
}
.hero__inner {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 var(--hero-side-space);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.hero__label {
  font-size: 13px; font-weight: 700; letter-spacing: .32em;
  color: rgba(255, 255, 255, .85);
}
.hero__title {
  margin: 0;
  font-size: 56px; font-weight: 900; line-height: 1.4;
  color: #fff; letter-spacing: .02em;
}
.hero__lead {
  margin: 0;
  font-size: 20px; line-height: 2;
  color: rgba(255, 255, 255, .92);
  max-width: 560px; font-weight: 700;
}
.hero__cta { display: flex; gap: 14px; margin-top: 8px; }
.hero__cta .pill-btn {
  padding: 18px 40px;
  color: #fff; font-size: 16px; font-weight: 700;
}
.hero__cta .btn-ghost {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .8);
  backdrop-filter: blur(2px);
}
.hero__cta .btn-ghost:hover, .contact__cta .btn-ghost:hover { color: #fff; background: rgba(255, 255, 255, .22); }

/* Hero stats cards */
.hero__stats {
  position: absolute;
  right: var(--hero-side-space);
  bottom: 96px;
  width: min(620px, calc(100% - 112px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 4px; overflow: hidden;
  backdrop-filter: blur(6px);
}
.stat {
  background: rgba(255, 255, 255, .94);
  border-top: 2px solid #C9A143;
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0; align-items: center; text-align: center;
}
.stat__label {
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  color: var(--gray); white-space: nowrap;
}
.stat__label .sub { color: #8A97A8; font-weight: 500; }
.stat__value {
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
  color: var(--navy);
}
.stat__num { font-size: 32px; font-weight: 900; line-height: 1; }
.stat__unit { font-size: 14px; font-weight: 700; }
.stat__unit--sm { font-size: 13px; font-weight: 700; }
.stat__prefix { font-size: 14px; font-weight: 700; color: #B08A2E; }

.hero__evidence {
  position: absolute;
  right: var(--hero-side-space);
  bottom: 18px;
  max-width: min(920px, calc(100% - 112px));
  text-align: right;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .65);
}
.hero__evidence p {
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
}

/* ================= 01b COMPANIES ================= */
.companies {
  padding: 56px 0;
  background: #fff;
  border-bottom: 1px solid rgba(10, 30, 60, .06);
}
.companies__head {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  display: flex; flex-direction: column; gap: 6px; text-align: center;
}
.companies__note { margin: 0; font-size: 13px; color: var(--gray); }
.marquee { overflow: hidden; margin-top: 36px; position: relative; max-width: 100vw; }
.marquee__mobile { display: none; }
.marquee__track {
  display: flex; align-items: center; gap: 64px;
  width: max-content;
  animation: logoMarquee 110s linear infinite;
  padding: 0 32px;
}
.marquee__item {
  height: 40px; min-width: 80px;
  display: flex; align-items: center; flex-shrink: 0;
}
.marquee__item img { height: 40px; width: auto; object-fit: contain; }
@keyframes logoMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================= 01c AWARD ================= */
.award {
  padding: 80px 56px;
  background: var(--bg-soft);
}
.award__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.award__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: #ECEFF3;
}
.award__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.award__body { display: flex; flex-direction: column; gap: 18px; }
.award__body p { margin: 0; color: var(--gray); font-size: 16px; line-height: 2; }

/* ================= 02 PROMISE ================= */
.section { padding: 80px 56px; }
.section--white { background: #fff; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); }

.section__head { display: flex; flex-direction: column; gap: 10px; }
.section__lead {
  margin: 6px 0 0; font-size: 16px; line-height: 1.9; color: var(--gray);
}

.stack-48 {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 48px;
}

.promise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.promise {
  border-top: 2px solid var(--navy);
  padding-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.promise__no { font-size: 18px; font-weight: 700; letter-spacing: .2em; color: var(--blue); }
.promise__title { font-size: 22px; font-weight: 700; line-height: 1.6; }
.promise__body { margin: 0; font-size: 16px; line-height: 1.9; color: var(--gray); }

/* ================= 03 PEOPLE ================= */
.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: #fff;
  border-left: 3px solid #B08A2E;
}
.credential img { width: 220px; height: auto; object-fit: contain; flex-shrink: 0; }
.credential p { margin: 0; color: var(--gray); font-size: 14px; line-height: 1.8; }
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.advisor {
  background: #fff; border-radius: 4px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(10, 30, 60, .06);
  display: flex; flex-direction: column;
}
.advisor__photo { height: 300px; overflow: hidden; background: #EDF1F6; }
.advisor__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}
.advisor__photo--sugisaki { background: #fff; }
.advisor__photo--sugisaki img { transform: translateY(20px); }
.advisor__photo--empty {
  background: repeating-linear-gradient(45deg, #EDF1F6, #EDF1F6 12px, #E4EAF2 12px, #E4EAF2 24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  font-size: 12px; color: var(--muted); text-align: center;
}
.advisor__initials {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
}
.advisor__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.advisor__role { font-size: 13px; color: var(--blue); font-weight: 700; }
.advisor__name { font-size: 20px; font-weight: 700; color: var(--navy); }
.advisor__career { font-size: 14px; color: var(--gray); line-height: 1.8; }
.advisor__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  border: 1px solid #C6D2E2; padding: 4px 10px;
  font-size: 12px; color: var(--gray); border-radius: 4px; white-space: nowrap;
}
.advisor__message { margin: 4px 0 0; font-size: 16px; line-height: 1.9; color: var(--navy); }

.btn-outline {
  align-self: center;
  padding: 16px 48px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 16px; font-weight: 700; border-radius: 4px;
  cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ================= 04 STRENGTH ================= */
.strength-list { display: flex; flex-direction: column; gap: 64px; }
.strength {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.strength__media { height: 300px; position: relative; border-radius: 4px; overflow: hidden; }
.strength__media img { width: 100%; height: 100%; object-fit: cover; }
.strength__media--empty {
  background: repeating-linear-gradient(45deg, #EDF1F6, #EDF1F6 14px, #E4EAF2 14px, #E4EAF2 28px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  font: 12px ui-monospace, monospace; color: var(--muted); text-align: center; line-height: 1.7;
}
.strength__body { display: flex; flex-direction: column; gap: 16px; }
.strength__no { font-size: 14px; font-weight: 700; letter-spacing: .2em; color: var(--blue); }
.strength__title { font-size: 26px; font-weight: 700; line-height: 1.6; color: var(--navy); }
.strength__text { margin: 0; font-size: 16px; line-height: 2; color: var(--gray); }

/* ================= 05 FLOW ================= */
.flow-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.step { position: relative; padding: 0 22px 0 14px; display: flex; flex-direction: column; gap: 10px; }
.step__line { position: absolute; top: 0; left: 14px; right: 22px; height: 2px; background: rgba(255, 255, 255, .35); }
.step__arrow {
  position: absolute; top: -7px; right: 2px; width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); font-size: 16px; font-weight: 900;
}
.step__head { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.step__num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; flex-shrink: 0;
}
.step__kicker { font-size: 13px; font-weight: 700; letter-spacing: .15em; color: var(--blue-light); }
.step__label { font-size: 19px; font-weight: 700; line-height: 1.6; color: #fff; }
.step__desc { margin: 0; font-size: 14px; line-height: 1.9; color: rgba(255, 255, 255, .75); }

.eyebrow--navy { color: var(--blue-light); }
.section-title--white { color: #fff; }
.section__lead--navy { color: rgba(255, 255, 255, .75); }

/* ================= 06 CASE ================= */
.case-carousel { display: flex; flex-direction: column; gap: 28px; }
.case-carousel__viewport { overflow: hidden; width: 100%; min-width: 0; touch-action: pan-y; }
.case-carousel__track {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  transition: transform .35s ease;
}
.case-carousel__item,
.case-carousel__track > .case {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
}
.case-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.case-carousel__arrow {
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 20px;
  cursor: pointer;
}
.case-carousel__arrow:hover { background: var(--navy); color: #fff; }
.case-carousel__arrow:disabled { opacity: .35; cursor: default; }
.case-carousel__arrow:disabled:hover { background: #fff; color: var(--navy); }
.case-carousel__dots { display: flex; align-items: center; gap: 10px; }
.case-carousel__dots button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.case-carousel__dots button::before { content: ""; position: absolute; inset: 18px; border-radius: 50%; background: #A9B7C8; }
.case-carousel__dots button.is-active::before { background: var(--blue); }
.case-carousel__dots button:focus-visible { outline: 3px solid rgba(30,94,219,.35); outline-offset: 1px; }
.case-carousel__counter {
  display: none;
  min-width: 68px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
}

@media (max-width: 680px) {
  .case-carousel__controls { gap: 18px; }
  .case-carousel__dots { display: none; }
  .case-carousel__counter { display: inline-block; }
}
.case {
  border: 1px solid #DCE4EE; border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; min-width: 0; width: 100%;
}
.case__banner {
  min-height: 84px;
  background: var(--navy); padding: 14px 16px; text-align: center;
  font-size: 16px; line-height: 1.6; font-weight: 700; color: #fff;
}
.case__banner .nowrap { display: block; white-space: nowrap; }
.case__banner .hl { color: var(--blue-light); }
.case__body { padding: 20px 18px; display: flex; gap: 14px; align-items: center; }
.case__avatar-col { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.case__avatar {
  width: 84px; height: 84px; border-radius: 4px; background: #EAF0F8; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.case__avatar img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.case__attr {
  background: #EAF0F8; border-radius: 4px; padding: 5px 8px;
  font-size: 11px; font-weight: 700; color: var(--navy); text-align: center;
}
.case__figures { flex: 1; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.case__uplift {
  background: #EAF0F8; border-radius: 4px; padding: 12px 8px;
  display: flex; flex-wrap: nowrap; align-items: baseline; justify-content: center; gap: 4px;
  white-space: nowrap;
}
.case__uplift .lbl { font-size: 12px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.case__uplift .big { font-size: 30px; font-weight: 900; line-height: 1; white-space: nowrap; }
.case__uplift .suf { font-size: 15px; font-weight: 900; color: var(--navy); white-space: nowrap; }
.case__uplift .suf .arrow { color: #B08A2E; }
.case__ba { display: flex; align-items: center; gap: 6px; }
.case__col { flex: 1; text-align: center; display: flex; flex-direction: column; gap: 4px; }
.case__col .cap { font-size: 12px; font-weight: 700; color: var(--muted); }
.case__col .val { font-size: 11px; font-weight: 700; color: var(--muted); line-height: 1.5; }
.case__col .val .amt { font-size: 18px; }
.case__col .val .amt .yen { font-size: 13px; }
.case__arrow { font-size: 18px; color: var(--blue); font-weight: 900; }
.case__col--after {
  background: var(--navy); border-radius: 4px; padding: 6px 4px;
  text-align: center; display: flex; flex-direction: column; gap: 4px;
}
.case__col--after .cap { color: var(--blue-light); }
.case__col--after .val { color: #fff; }
.case__col--after .val .amt { font-size: 19px; }
.case__note-body { background: var(--bg-soft); padding: 16px 18px; flex: 1; }
.case__note-body p { margin: 0; font-size: 14px; line-height: 1.75; color: var(--gray); }
.case-disclaimer { font-size: 13px; color: var(--muted); }

/* ================= 07 CONTACT ================= */
.contact {
  padding: 80px 56px; background: var(--navy);
  position: relative; overflow: hidden;
}
.contact__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
  align-items: center; text-align: center; position: relative;
}
.contact__title { margin: 0; font-size: 32px; font-weight: 700; color: #fff; line-height: 1.6; }
.contact__text { margin: 0; font-size: 16px; line-height: 2; color: rgba(255, 255, 255, .8); }
.contact__cta { display: flex; gap: 16px; margin-top: 8px; }
.contact__cta .pill-btn { padding: 18px 48px; color: #fff; font-size: 16px; font-weight: 700; }
.contact__cta .btn-ghost { border: 1px solid rgba(255, 255, 255, .8); }

/* ================= FOOTER ================= */
.footer {
  padding: 80px 56px 120px; background: #fff;
  border-top: 1px solid var(--border);
}
.footer__cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo { height: 28px; width: auto; object-fit: contain; }
.footer__desc { margin: 0; font-size: 14px; line-height: 1.9; color: var(--gray); }
.footer__col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--gray); }
.footer__col span { cursor: pointer; }
.footer__col-title { font-size: 13px; font-weight: 700; letter-spacing: .15em; color: var(--navy); }
.footer__legal {
  border-top: 1px solid var(--border); padding-top: 20px;
  font-size: 12px; color: var(--muted);
}

/* ================= FIXED BOTTOM CTA ================= */
.bottom-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid rgba(10, 30, 60, .1);
  box-shadow: 0 -4px 16px rgba(10, 30, 60, .08);
}
.bottom-bar__label {
  font-size: 14px; font-weight: 700; color: var(--navy);
  margin-right: 8px; white-space: nowrap;
}
.bottom-bar .pill-btn { padding: 12px 32px; color: #fff; font-size: 14px; font-weight: 700; }

/* ================= LEGAL PAGES (privacy policy etc.) ================= */
.legal { padding: 80px 56px; background: #fff; }
.legal__inner {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}
.legal__title {
  margin: 0;
  font-size: 32px; font-weight: 700; color: var(--navy);
}
.legal__intro { margin: 0; font-size: 16px; line-height: 2; color: var(--gray); }
.legal__h2 {
  margin: 16px 0 0;
  border-top: 2px solid var(--navy);
  padding-top: 28px;
  font-size: 24px; font-weight: 700; color: var(--navy); line-height: 1.6;
}
.legal__item { display: flex; flex-direction: column; gap: 12px; }
.legal__h3 {
  margin: 0;
  font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.6;
}
.legal__body { margin: 0; font-size: 16px; line-height: 2; color: var(--gray); }
.legal__list {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 16px; line-height: 2; color: var(--gray);
}
.legal__contact {
  background: var(--bg-soft); border-radius: 4px;
  padding: 28px 32px;
  font-size: 16px; line-height: 2; color: var(--navy);
}
.legal__contact-title { font-weight: 700; margin: 0 0 8px; }
.legal__contact p { margin: 0; }
.legal-facts { margin: 0; border-top: 1px solid #DCE4EE; }
.legal-facts > div { display: grid; grid-template-columns: 230px minmax(0,1fr); border-bottom: 1px solid #DCE4EE; }
.legal-facts dt, .legal-facts dd { margin: 0; padding: 18px 22px; font-size: 15px; line-height: 1.9; }
.legal-facts dt { background: #EDF2F8; color: var(--navy); font-weight: 700; }
.legal-facts dd { color: var(--gray); }
.legal-facts--compact { max-width: 640px; }
.legal-source-note { margin: 2px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.legal-source-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-highlight { padding: 24px 28px; border-left: 4px solid var(--blue); background: #F3F7FC; }
.legal-highlight strong { color: var(--navy); font-size: 18px; line-height: 1.7; }
.legal-highlight p { margin: 8px 0 0; color: var(--gray); font-size: 14px; line-height: 1.9; }
.legal-highlight--free { margin-top: -8px; }
.legal-official-links { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.legal-terms { margin: 0; border-top: 1px solid #DCE4EE; }
.legal-terms > div { display: grid; grid-template-columns: 240px minmax(0,1fr); border-bottom: 1px solid #DCE4EE; }
.legal-terms dt, .legal-terms dd { margin: 0; padding: 22px; font-size: 14px; line-height: 1.95; }
.legal-terms dt { background: #F7F9FC; color: var(--navy); font-weight: 700; }
.legal-terms dt span { color: var(--gray); font-size: 12px; font-weight: 500; }
.legal-terms dd { color: var(--gray); }
.legal-refund-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.legal-refund-grid > div { min-height: 150px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid #DCE4EE; background: #fff; }
.legal-refund-grid span { color: var(--gray); font-size: 13px; line-height: 1.7; }
.legal-refund-grid strong { color: var(--blue); font-size: 42px; line-height: 1; font-variant-numeric: tabular-nums; }
.legal-refund-grid small { margin-left: 3px; font-size: 16px; }
.legal-inline-link { width: fit-content; color: var(--blue); font-size: 15px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

/* Footer text links keep the same look as the plain items */
.footer__col a { color: var(--gray); }
.footer__col a:hover { color: var(--navy); }

/* ================= INDIVIDUAL PAGES ================= */
.header__nav a[aria-current="page"] { color: var(--blue); font-weight: 700; }
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 66px 24px 70px;
}
.page-hero__inner { position: relative; z-index: 2; width: min(100%, 1200px); margin: 0 auto; }
.page-hero--about {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
}
.page-hero__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,25,51,.93) 0%, rgba(6,25,51,.79) 37%, rgba(6,25,51,.26) 76%, rgba(6,25,51,.12) 100%);
}
.page-hero h1 { margin: 14px 0 0; color: #fff; font-size: 36px; line-height: 1.45; }
.page-hero p { max-width: 900px; margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 2; }
.content-section { padding: 80px 24px; background: #fff; }
.content-section--soft { background: var(--bg-soft); }
.content-section--center { text-align: center; }
.content-wide { width: min(100%, 1200px); margin: 0 auto; }
.content-narrow { width: min(100%, 900px); margin: 0 auto; }
.content-heading { margin: 12px 0 0; font-size: 30px; line-height: 1.6; color: var(--navy); }
.content-heading--left { margin-bottom: 32px; }
.content-lead { margin: 28px auto 0; color: var(--gray); font-size: 16px; line-height: 2.2; }
.about-mission__title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "YuMincho", serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: .045em;
}
.about-mission__title span { display: inline; }
.about-mission__body { max-width: 860px; text-align: left; }
.representative-message { border-top: 1px solid #E4EAF1; }
.representative-message__grid {
  display: grid;
  grid-template-columns: minmax(240px,320px) minmax(0,1fr);
  gap: clamp(48px,6vw,84px);
  align-items: start;
}
.representative-message__portrait {
  position: sticky;
  top: 124px;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #EEF2F7;
}
.representative-message__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.representative-message__body .content-heading--left { margin-bottom: 28px; }
.representative-message__text { display: flex; flex-direction: column; gap: 18px; }
.representative-message__text p { margin: 0; color: var(--gray); font-size: 15px; line-height: 2.05; }
.representative-message__history {
  margin-top: 38px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 92px minmax(0,1fr);
  gap: 22px;
  border-top: 1px solid #D7E0EA;
}
.representative-message__history h3 { margin: 2px 0 0; color: var(--blue); font-size: 12px; letter-spacing: .1em; }
.representative-message__history p { margin: 0; color: var(--gray); font-size: 13px; line-height: 1.95; }
.representative-message__signature { margin: 32px 0 0; text-align: right; color: var(--navy); }
.representative-message__signature span { display: block; font-size: 12px; }
.representative-message__signature strong { display: inline-block; margin-top: 8px; font-size: 22px; letter-spacing: .08em; }
.representative-message__signature small { margin-left: 12px; color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.company-table { margin: 0; border-top: 1px solid #DCE4EE; background: #fff; }
.company-table > div { display: grid; grid-template-columns: 220px 1fr; border-bottom: 1px solid #DCE4EE; }
.company-table dt, .company-table dd { margin: 0; padding: 22px 26px; font-size: 15px; line-height: 1.9; }
.company-table dt { background: #EDF2F8; color: var(--navy); font-weight: 700; }
.company-table dd { color: var(--gray); }
.company-map {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #DCE4EE;
  background: #E9EEF4;
}
.company-rating {
  min-height: 104px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: minmax(190px,1fr) auto auto;
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid #DCE4EE;
  background: #fff;
  color: var(--navy);
}
.company-rating[hidden] { display: none; }
.company-rating__place { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.company-rating__source {
  color: #5E5E5E;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: normal;
  white-space: nowrap;
}
.company-rating__name { overflow: hidden; font-size: 18px; line-height: 1.5; text-overflow: ellipsis; white-space: nowrap; }
.company-rating__summary { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.company-rating__value { font-size: 30px; font-weight: 900; line-height: 1; font-variant-numeric: tabular-nums; }
.company-rating__stars { position: relative; display: inline-block; color: #D8DEE7; font-size: 20px; letter-spacing: .08em; line-height: 1; }
.company-rating__stars-fill { position: absolute; inset: 0 auto 0 0; width: 0; overflow: hidden; color: #F6B800; white-space: nowrap; }
.company-rating__count { color: var(--gray); font-size: 13px; }
.company-rating__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #D2DAE5;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.company-rating__link:hover { border-color: var(--blue); color: var(--blue); }
.company-map iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 38vw, 480px);
  border: 0;
}
.subpage-cta { padding: 72px 24px; background: var(--navy); color: #fff; text-align: center; }
.subpage-cta__inner { width: min(100%, 900px); margin: 0 auto; }
.subpage-cta h2 { margin: 0; color: #fff; font-size: 30px; line-height: 1.6; }
.subpage-cta p { margin: 16px 0 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.9; }
.subpage-cta .contact__cta { justify-content: center; margin-top: 30px; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #fff; border: 1px solid #DCE4EE; }
.faq-item h2, .faq-item p { position: relative; margin: 0; padding: 22px 28px 22px 74px; font-size: 15px; line-height: 1.9; }
.faq-item h2 { color: var(--navy); border-bottom: 1px solid #E6EBF1; }
.faq-item p { color: var(--gray); }
.faq-item h2 span, .faq-item p span {
  position: absolute; left: 28px; top: 20px; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 900;
}
.faq-item h2 span { background: var(--blue); color: #fff; }
.faq-item p span { background: #EAF0F8; color: var(--navy); }
.support-grid, .employer-reasons { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; margin-top: 44px; }
.support-card, .employer-reasons article { border: 1px solid #DCE4EE; padding: 32px 28px; background: #fff; }
.support-card__no, .employer-reasons article > span { color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .15em; }
.support-card h3, .employer-reasons h3 { margin: 18px 0 12px; color: var(--navy); font-size: 20px; line-height: 1.7; }
.support-card p, .employer-reasons p { margin: 0; color: var(--gray); font-size: 15px; line-height: 2; }
.employer-data {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 94% 4%, rgba(30,94,219,.28), transparent 27%),
    linear-gradient(145deg, #07182F 0%, #0A1E3C 58%, #102C54 100%);
}
.employer-data::before {
  content: "DATA";
  position: absolute;
  top: -58px;
  right: -20px;
  color: transparent;
  font-size: clamp(150px,20vw,300px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,.055);
  pointer-events: none;
}
.employer-data .content-wide { position: relative; z-index: 1; }
.employer-data__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.employer-data__head .eyebrow { color: #8EB5FF; }
.employer-data__head .content-heading { color: #fff; font-size: clamp(34px,3.4vw,48px); line-height: 1.35; }
.employer-data__head .employer-data__lead { margin: 12px 0 0; color: rgba(255,255,255,.66); font-size: 15px; letter-spacing: .06em; white-space: normal; }
.employer-data__head .employer-data__period {
  margin: 0 0 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}
.employer-data__period span { color: #C9A143; font-size: 10px; letter-spacing: .22em; }
.employer-data__charts { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; margin-top: 44px; }
.employer-data-card {
  --data-accent: #1E5EDB;
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 42px 42px 40px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}
.employer-data-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: linear-gradient(90deg,var(--data-accent) 0 72%,#C9A143 72% 82%,#DCE5F0 82%); }
.employer-data-card:nth-child(2) { --data-accent: #315F9E; }
.employer-data-card__index {
  position: absolute;
  top: 12px;
  right: 24px;
  color: #EEF3F8;
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
  pointer-events: none;
}
.employer-data-card figcaption { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 7px; }
.employer-data-card figcaption strong { color: var(--navy); font-size: 26px; letter-spacing: .03em; }
.employer-data-card figcaption span { color: #718096; font-size: 14px; line-height: 1.7; }
.data-donut-svg { display: block; width: min(100%,440px); height: auto; margin: 12px auto -6px; overflow: visible; }
.data-donut-svg__separators line { stroke: #fff; stroke-width: 4; }
.data-donut-svg__labels text {
  fill: var(--navy);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(255,255,255,.18);
  stroke-width: 1px;
  stroke-linejoin: round;
}
.data-donut-svg__labels .data-svg-light { fill: #fff; stroke: rgba(10,30,60,.2); stroke-width: 2px; }
.data-donut-svg__labels .data-svg-number { font-size: 26px; font-weight: 900; font-variant-numeric: tabular-nums; }
.data-donut-svg__labels .data-svg-decimal { font-size: 14px; font-weight: 900; font-variant-numeric: tabular-nums; }
.employer-data-card--roles { grid-column: 1 / -1; padding: 48px 48px 50px; }
.employer-data-card--roles::before { background: linear-gradient(90deg,#1E5EDB 0 38%,#79A6E8 38% 72%,#C9A143 72% 82%,#DCE5F0 82%); }
.employer-role-columns { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 40px 64px; margin-top: 38px; }
.employer-role-list { display: flex; flex-direction: column; gap: 22px; margin: 0; padding: 0; list-style: none; }
.employer-role-list li { display: grid; grid-template-columns: 112px minmax(0,1fr); gap: 16px; align-items: center; min-width: 0; }
.employer-role__name { color: var(--navy); font-size: 14px; font-weight: 800; }
.employer-role__rail { position: relative; display: block; height: 28px; overflow: hidden; border-radius: 2px; background: #EDF1F5; }
.employer-role__fill { position: absolute; inset: 0 auto 0 0; border-radius: 0 2px 2px 0; background: linear-gradient(90deg,#164FAF,#1E6BE6); }
.employer-role__value {
  position: absolute;
  z-index: 1;
  top: 50%;
  display: inline-flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transform: translateY(-50%);
}
.employer-role__value strong { font-size: 19px; font-weight: 900; }
.employer-role__value small { font-size: 11px; font-weight: 900; }
.employer-role__value--on-fill { padding-right: 8px; color: #fff; transform: translate(-100%,-50%); }
.employer-role__value--after-fill { padding-left: 9px; color: var(--navy); }
.employer-data__note { margin: 24px 2px 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.7; }
.support-process { max-width: 960px; margin: 44px auto 0; padding: 0; list-style: none; border-top: 1px solid #DCE4EE; }
.support-process li { display: grid; grid-template-columns: 76px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid #DCE4EE; }
.support-process li > span { color: var(--blue); font-size: 18px; font-weight: 900; }
.support-process h3 { margin: 0 0 8px; color: var(--navy); font-size: 18px; }
.support-process p { margin: 0; color: var(--gray); font-size: 15px; line-height: 1.9; }
.employer-contact { padding: 96px 24px 112px; background: #fff; }
.employer-contact { scroll-margin-top: 24px; }
.employer-contact__head { margin: 0 auto 48px; text-align: center; }
.employer-contact__head p { margin: 18px 0 0; color: var(--gray); line-height: 2; }
.employer-contact__layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); overflow: hidden; border: 1px solid #DDE5EF; background: #fff; box-shadow: 0 22px 64px rgba(10,30,60,.09); }
.employer-contact__guide { position: relative; overflow: hidden; padding: 52px 44px; background: var(--navy); color: #fff; }
.employer-contact__guide::after { content: ""; position: absolute; right: -110px; bottom: -110px; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.025), 0 0 0 76px rgba(255,255,255,.025); }
.employer-contact__guide-label { margin: 0 0 26px; color: #74A8F4; font-size: 11px; font-weight: 900; letter-spacing: .2em; }
.employer-contact__guide h3 { margin: 0; font-size: clamp(25px,2.3vw,34px); line-height: 1.55; letter-spacing: .04em; }
.employer-contact__guide > p:not(.employer-contact__guide-label) { margin: 26px 0 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 2; }
.employer-contact__phone { position: relative; z-index: 1; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.employer-contact__phone span, .employer-contact__phone small { display: block; color: rgba(255,255,255,.64); font-size: 12px; }
.employer-contact__phone a { display: inline-block; margin: 8px 0 6px; color: #fff; font-size: clamp(24px,2.3vw,32px); font-weight: 900; letter-spacing: .04em; }
.employer-form { padding: 48px 52px 52px; text-align: left; }
.employer-form__required-note { margin: 0 0 22px; color: var(--muted); font-size: 12px; text-align: right; }
.employer-form__required-note span { color: #B84E4E; }
.employer-form__fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px 22px; }
.employer-form__field { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.employer-form__field--message { grid-column: 1 / -1; }
.employer-form__label { color: var(--navy); font-size: 14px; font-weight: 800; }
.employer-form__label em, .employer-form__label small { margin-left: 7px; font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .06em; }
.employer-form__label em { color: #B84E4E; }
.employer-form__label small { color: var(--muted); }
.employer-form input[type="text"], .employer-form input[type="email"], .employer-form input[type="tel"], .employer-form textarea { width: 100%; border: 1px solid #CCD6E2; border-radius: 2px; background: #F9FBFD; color: var(--navy); font: inherit; font-size: 16px; outline: 0; transition: border-color .2s, box-shadow .2s, background .2s; }
.employer-form input[type="text"], .employer-form input[type="email"], .employer-form input[type="tel"] { min-height: 50px; padding: 12px 14px; }
.employer-form textarea { min-height: 164px; padding: 14px; resize: vertical; line-height: 1.7; }
.employer-form input:focus, .employer-form textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(30,94,219,.12); }
.employer-form [aria-invalid="true"] { border-color: #B84E4E!important; }
.employer-form__field-error { color: #A53D3D; font-size: 12px; font-style: normal; font-weight: 600; line-height: 1.65; }
.employer-form__field-error:empty { display: none; }
.employer-form__field-error--consent { display: block; margin: 7px 0 0 28px; text-align: center; }
.employer-form__field-error--consent:empty { display: none; }
.employer-form__consent { display: flex; align-items: flex-start; justify-content: center; gap: 10px; margin: 28px 0 0; color: var(--gray); font-size: 13px; line-height: 1.8; }
.employer-form__consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue); }
.employer-form__consent a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.employer-form__error, .employer-form__status { min-height: 1.8em; margin: 10px 0 0; font-size: 13px; line-height: 1.8; text-align: center; }
.employer-form__error { color: #A53D3D; }
.employer-form__status { color: var(--blue); font-weight: 700; }
.employer-form__submit { display: block; width: min(100%,300px); min-height: 54px; margin: 8px auto 0; border: 0; border-radius: 2px; background: var(--navy); color: #fff; font: inherit; font-weight: 800; letter-spacing: .08em; cursor: pointer; transition: background .2s, transform .2s; }
.employer-form__submit:hover { background: #15345F; transform: translateY(-1px); }
.employer-form__submit:focus-visible { outline: 3px solid rgba(30,94,219,.35); outline-offset: 3px; }
.employer-form__privacy-note { margin-top: 30px; padding-top: 22px; border-top: 1px solid #E2E8F0; }
.employer-form__privacy-note strong { color: var(--navy); font-size: 13px; }
.employer-form__privacy-note p { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.9; }
.employer-confirm { text-align: left; }
.employer-confirm__eyebrow { margin: 0 0 10px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.employer-confirm h3 { margin: 0; color: var(--navy); font-size: 25px; line-height: 1.55; outline: 0; }
.employer-confirm__lead { margin: 12px 0 28px; color: var(--gray); font-size: 14px; line-height: 1.9; }
.employer-confirm__list { margin: 0; border-top: 1px solid #DCE4EE; }
.employer-confirm__list > div { display: grid; grid-template-columns: 180px minmax(0,1fr); border-bottom: 1px solid #DCE4EE; }
.employer-confirm__list dt,
.employer-confirm__list dd { margin: 0; padding: 17px 18px; font-size: 14px; line-height: 1.8; }
.employer-confirm__list dt { background: #F2F5F9; color: var(--navy); font-weight: 800; }
.employer-confirm__list dd { overflow-wrap: anywhere; color: var(--gray); white-space: pre-wrap; }
.employer-confirm__actions { display: flex; justify-content: center; gap: 14px; margin-top: 28px; }
.employer-confirm__actions .employer-form__submit { width: min(100%,300px); margin: 0; }
.employer-confirm__back { width: min(100%,220px); min-height: 54px; padding: 12px 18px; border: 1px solid #BFCBDA; border-radius: 2px; background: #fff; color: var(--navy); font: inherit; font-weight: 800; cursor: pointer; }
.employer-confirm__back:hover { border-color: var(--navy); }
.employer-confirm__back:focus-visible { outline: 3px solid rgba(30,94,219,.24); outline-offset: 3px; }
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.credential-list--dark { margin: 28px 0 0; }
.credential--dark { margin: 0; padding: 0; border: 0; background: transparent; }
.credential--dark p { color: rgba(255,255,255,.72); }
.profiles { background: #fff; }
.profile-detail { display: grid; grid-template-columns: minmax(280px,.8fr) minmax(0,1.2fr); width: min(100%,1200px); margin: 0 auto; padding: 80px 24px; gap: 70px; align-items: center; }
.profile-detail + .profile-detail { border-top: 1px solid #E6EBF1; }
.profile-detail--reverse .profile-detail__photo { order: 2; }
.profile-detail__photo { width: min(100%, 420px); min-height: 460px; justify-self: center; background: #fff; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.profile-detail__photo img { width: 100%; height: 460px; object-fit: contain; object-position: center bottom; }
.profile-detail__photo--pending { flex-direction: column; align-items: center; justify-content: center; background: #F2F5F9; color: var(--navy); }
.profile-detail__photo--pending span { font-size: 72px; font-weight: 900; letter-spacing: .08em; }
.profile-detail__photo--pending small { margin-top: 12px; color: var(--muted); font-size: 11px; letter-spacing: .2em; }
.profile-detail__role { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.profile-detail__body h2 { margin: 10px 0 14px; color: var(--navy); font-size: 32px; }
.profile-detail__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.profile-detail__tags span { padding: 7px 10px; background: #EAF0F8; color: var(--navy); font-size: 12px; font-weight: 700; }
.profile-detail__quote { margin: 28px 0; padding-left: 20px; border-left: 3px solid var(--blue); color: var(--navy)!important; font-size: 18px!important; font-weight: 700; }
.profile-detail__body > p { margin: 18px 0 0; color: var(--gray); font-size: 15px; line-height: 2; }
.profile-detail__qualifications { margin-top: 24px; padding: 20px 22px; background: var(--bg-soft); color: var(--gray); font-size: 14px; line-height: 1.9; }
.profile-detail__qualifications strong { color: var(--navy); }
.profile-detail__qualifications ul { margin: 10px 0 0; padding-left: 1.2em; }

/* ================= BOOKING ================= */
.booking-body {
  min-height: 100vh;
  background: #F4F6F9;
  color: var(--navy);
  padding-bottom: calc(104px + env(safe-area-inset-bottom));
}
.booking-body.booking-confirmation-visible { padding-bottom: 70px; }
.booking-page { padding: 42px 24px 34px; }
.booking-intro { text-align: center; margin-bottom: 26px; }
.booking-intro__eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}
.booking-intro h1 { margin: 0; font-size: 30px; line-height: 1.5; letter-spacing: 0; }
.booking-intro > p:last-child { margin: 8px 0 0; color: var(--gray); font-size: 14px; }
.booking-shell {
  width: min(100%, 560px);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 14px 40px rgba(16, 42, 79, .08);
  padding: 30px 34px 34px;
}
.booking-progress { margin-bottom: 32px; }
.booking-progress__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
}
.booking-progress__meta strong { color: var(--blue); font-size: 16px; }
.booking-progress__bar { height: 4px; margin-top: 10px; background: #E7EDF5; overflow: hidden; }
.booking-progress__bar span { display: block; width: 12.5%; height: 100%; background: var(--blue); transition: width .25s ease; }
.booking-step__number {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}
.booking-step h2, .booking-confirm h2 {
  margin: 0 0 26px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0;
}
.booking-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.booking-choice { display: block; min-width: 0; }
.booking-choice input { position: absolute; opacity: 0; pointer-events: none; }
.booking-choice span {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #CAD4E2;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.booking-choice input:focus-visible + span { outline: 3px solid rgba(20, 108, 194, .25); outline-offset: 2px; }
.booking-choice input:checked + span { border-color: var(--blue); background: #EAF3FC; color: var(--blue); }
.booking-contact-fields { display: flex; flex-direction: column; gap: 22px; }
.booking-field { display: flex; flex-direction: column; gap: 9px; }
.booking-field > span { color: var(--navy); font-size: 13px; font-weight: 700; }
.booking-field em, .booking-consent em { color: #C93C3C; font-size: 11px; font-style: normal; }
.booking-field input, .booking-field select {
  width: 100%;
  height: 52px;
  border: 1px solid #CAD4E2;
  border-radius: 4px;
  background: #fff;
  padding: 0 14px;
  color: var(--navy);
  font: inherit;
  font-size: 15px;
}
.booking-field input:focus, .booking-field select:focus { border-color: var(--blue); outline: 3px solid rgba(20, 108, 194, .12); }
.booking-field input[aria-invalid="true"] { border-color: #B72C2C; }
.booking-field-error { min-height: 0; margin-top: -3px; color: #B72C2C; font-size: 12px; font-weight: 700; line-height: 1.6; }
.booking-field-error:empty { display: none; }
.booking-consent { display: flex; align-items: flex-start; gap: 10px; color: var(--gray); font-size: 13px; line-height: 1.7; }
.booking-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }
.booking-consent a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.booking-error { min-height: 24px; margin: 18px 0 0; color: #B72C2C; font-size: 13px; font-weight: 700; }
.booking-actions {
  position: fixed;
  z-index: 31;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: flex;
  width: min(calc(100% - 32px), 560px);
  gap: 12px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(10, 30, 60, .1);
  border-radius: 6px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 -4px 18px rgba(10, 30, 60, .12);
}
.booking-button {
  min-height: 50px;
  border: 0;
  border-radius: 4px;
  padding: 12px 24px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.booking-button--back { width: 112px; border: 1px solid #CAD4E2; background: #fff; color: var(--gray); }
.booking-button--next, .booking-button--submit { flex: 1; background: var(--blue); color: #fff; }
.booking-button--next:hover, .booking-button--submit:hover { background: #0C579D; }
.booking-button:disabled,
.booking-button:disabled:hover {
  background: #AAB5C4;
  color: #fff;
  cursor: not-allowed;
  box-shadow: none;
}
.booking-confirm dl { margin: 0; border-top: 1px solid var(--border); }
.booking-confirm dl > div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.booking-confirm dt { color: var(--muted); font-size: 12px; font-weight: 700; }
.booking-confirm dd { min-width: 0; margin: 0; overflow-wrap: anywhere; color: var(--navy); font-size: 14px; font-weight: 700; }
.booking-confirm [data-edit-step] { border: 0; background: none; padding: 4px; color: var(--blue); font-size: 12px; cursor: pointer; }
.booking-button--submit { width: 100%; margin-top: 28px; }
.booking-submit-status { margin: 14px 0 0; color: var(--gray); font-size: 13px; line-height: 1.7; text-align: center; }
.booking-assurance { margin: 24px auto 0; text-align: center; color: var(--gray); font-size: 12px; line-height: 1.8; }
.booking-assurance p { margin: 0; }
.booking-footer { padding: 10px 24px 30px; text-align: center; color: var(--muted); font-size: 12px; }
.booking-complete-body { padding-bottom: 0; }
.booking-complete-page {
  min-height: calc(100vh - 146px);
  display: grid;
  place-items: center;
  padding: 56px 24px;
}
.booking-complete {
  width: min(100%, 640px);
  padding: 52px 48px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 42, 79, .08);
  text-align: center;
}
.booking-complete__icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #EAF3FC;
  color: var(--blue);
  font-size: 32px;
  font-weight: 700;
}
.booking-complete h1 { margin: 0; font-size: 28px; line-height: 1.55; letter-spacing: 0; }
.employer-complete-title span { display: block; }
.booking-complete__lead { margin: 18px 0 0; color: var(--navy); font-size: 17px; font-weight: 700; line-height: 1.9; }
.booking-complete__note { margin: 16px 0 0; color: var(--gray); font-size: 14px; line-height: 1.9; }
.booking-complete__home {
  display: inline-flex;
  min-height: 48px;
  margin-top: 30px;
  padding: 13px 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 620px) {
  .booking-page { padding: 30px 16px 26px; }
  .booking-shell { padding: 24px 20px 28px; }
  .booking-intro h1 { font-size: 26px; }
  .booking-choices { grid-template-columns: 1fr; }
  .booking-actions {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: none;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }
  .booking-confirm dl > div { grid-template-columns: 100px minmax(0, 1fr); gap: 8px 12px; }
  .booking-confirm [data-edit-step] { grid-column: 2; justify-self: end; }
  .booking-complete-page { min-height: calc(100vh - 122px); padding: 32px 16px; }
  .booking-complete { padding: 38px 22px; }
  .booking-complete h1 { font-size: 24px; }
  .booking-complete__lead { font-size: 16px; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1540px) {
  .header__tagline { display: none; }
}
@media (max-width: 1320px) {
  .header { gap: 14px; padding-inline: 22px; }
  .header__nav { gap: 13px; font-size: 12px; }
  .header__cta .pill-btn { padding-inline: 15px; font-size: 13px; }
}
@media (max-width: 1180px) {
  .header__nav a,
  .header__cta .pill-btn {
    min-height: 44px;
  }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  :where(h1, h2, h3, .section-title, .content-heading, .promise__title, .strength__title, .contact__title) {
    text-wrap: balance;
    line-break: strict;
    word-break: auto-phrase;
  }
  :where(p, li, dd, .advisor__message, .step__desc) {
    text-wrap: pretty;
    line-break: strict;
    word-break: auto-phrase;
  }
  .credential-list { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .case-carousel__item,
  .case-carousel__track > .case { flex-basis: calc((100% - 24px) / 2); }
  .profile-detail__quote br { display: none; }
  .header--subpage { flex-wrap: wrap; }
  .header--subpage .header__nav { order: 3; width: 100%; }
  .hero {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .hero__video { object-position: 72% center; }
  .hero__inner {
    flex: 0 0 auto;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 64px 56px 48px;
  }
  .hero__cta { display: none; }
  .hero__stats {
    position: relative;
    left: auto; right: auto; bottom: auto;
    z-index: 1;
    width: min(calc(100% - 112px), 620px);
    margin: 0 56px 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .stat { min-width: 0; }
  .stat__label { font-size: 12px; }
  .stat__num { font-size: 30px; }
  .stat__unit, .stat__prefix { font-size: 13px; }
  .hero__evidence {
    position: relative;
    left: auto; right: auto; bottom: auto;
    z-index: 1;
    max-width: none;
    margin: 18px 56px 24px;
    padding: 14px 16px;
    border: 0;
    border-radius: 4px;
    background: rgba(6,18,40,.62);
    text-align: left;
  }
  .hero__evidence p { font-size: 9px; line-height: 1.7; }
}
@media (max-width: 900px) {
  html { scroll-padding-top: 148px; }
  .header { flex-wrap: wrap; padding: 14px 20px; }
  .header__nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 10px 16px; }
  .hero__title { font-size: 40px; }
  .hero__inner { padding: 56px 24px 48px; }
  .hero__stats { width: calc(100% - 48px); margin-inline: auto; }
  .hero__evidence { margin-inline: 24px; }
  .promise-grid, .people-grid, .credential-list { grid-template-columns: 1fr; }
  .advisor__photo { width: min(100%, clamp(300px, 46vw, 360px)); margin-inline: auto; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .strength { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .strength > * { min-width: 0; }
  .strength--reverse .strength__media { order: -1; }
  .award__inner { grid-template-columns: 1fr; gap: 32px; }
  .case-carousel__item,
  .case-carousel__track > .case { flex-basis: 100%; }
  .support-grid, .employer-reasons { grid-template-columns: 1fr; }
  .employer-data__charts { grid-template-columns: 1fr; }
  .employer-data-card--roles { grid-column: auto; }
  .employer-role-columns { grid-template-columns: 1fr; gap: 20px; }
  .employer-contact__layout { grid-template-columns: 1fr; }
  .employer-contact__guide { order: 2; padding: 42px 36px; }
  .employer-form { order: 1; }
  .employer-contact__phone { margin-top: 34px; }
  .representative-message__grid { grid-template-columns: 1fr; gap: 40px; }
  .representative-message__portrait { position: relative; top: auto; width: min(80%,344px); margin: 0 auto; }
  .company-rating { grid-template-columns: minmax(0,1fr) auto; gap: 12px 18px; }
  .company-rating__link { grid-column: 1 / -1; width: fit-content; }
  .profile-detail { grid-template-columns: 1fr; gap: 34px; padding-block: 56px; }
  .profile-detail--reverse .profile-detail__photo { order: 0; }
  .profile-detail__photo {
    --profile-photo-width: clamp(280px, 42vw, 344px);
    width: min(100%, var(--profile-photo-width));
  }
  .profile-detail__photo,
  .profile-detail__photo img {
    min-height: calc(var(--profile-photo-width) * 1.105);
    height: calc(var(--profile-photo-width) * 1.105);
  }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .section, .award { padding: 56px 24px; }
  .content-section, .employer-contact { padding: 56px 24px; }
  .legal { padding: 56px 24px; }
  .legal__contact { padding: 24px 20px; }
  .header__brand { min-height: 44px; }
  .footer__col { gap: 0; }
  .footer__col-title { margin-bottom: 8px; }
  .footer__col a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .legal-source-link,
  .legal-inline-link,
  .legal__contact a[href^="mailto:"],
  .legal__item a[href^="mailto:"],
  .employer-contact__phone a,
  .employer-form__consent a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}
@media (max-width: 560px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .employer-body { padding-bottom: 0; }
  .hero__cta, .contact__cta { flex-wrap: wrap; }
  .header__brand { min-width: 0; flex-wrap: wrap; }
  .header__tagline { white-space: normal; }
  .header {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    min-height: 64px;
    padding: 10px 14px;
    gap: 10px;
  }
  .header__logo { height: 38px; }
  .header__menu-toggle {
    display: block;
    flex: 0 0 44px;
    margin-left: auto;
  }
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 22;
    display: none;
    width: 100%;
    padding: 14px 20px 20px;
    gap: 0;
    background: rgba(255,255,255,.99);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(10,30,60,.12);
    font-size: 14px;
    line-height: 1.5;
  }
  .header__menu-state:checked ~ .header__nav { display: flex; }
  .header__nav-row {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
  .header__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 4px;
    border-bottom: 1px solid #E8EDF3;
  }
  .header__nav a::after { content: "›"; color: var(--muted); font-size: 20px; }
  .header__nav .header__nav-mobile-only { display: flex; width: 100%; border-bottom: 0; }
  .header__cta { display: none; }
  .hero {
    height: auto;
    display: flex;
    flex-direction: column;
    background-position: 74% center;
  }
  .hero__inner {
    flex: 0 0 auto;
    justify-content: flex-start;
    height: auto;
    min-height: clamp(410px, calc(100vh - 404px), 440px);
    min-height: clamp(410px, calc(100svh - 404px), 440px);
    padding: 86px 27px 32px;
    gap: 18px;
  }
  .hero__label { font-size: 11px; line-height: 1.8; }
  .hero__title { font-size: clamp(36px,10.25vw,40px); line-height: 1.45; }
  .hero__title span { white-space: nowrap; }
  .hero__lead {
    font-size: clamp(12px,3.55vw,14px);
    line-height: 2;
    letter-spacing: -.015em;
  }
  .hero__lead span { white-space: nowrap; }
  .hero__cta { display: none; }
  .hero__cta .pill-btn { width: 100%; padding: 14px 18px; font-size: 14px; }
  .hero__stats {
    position: relative;
    left: auto; right: auto; bottom: auto;
    z-index: 1;
    width: auto;
    margin: 0 14px;
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat { min-width: 0; padding: 12px 8px; }
  .stat__label { font-size: 12px; letter-spacing: .02em; }
  .stat__num { font-size: 26px; }
  .stat__unit, .stat__prefix { font-size: 11px; }
  .hero__evidence {
    position: relative;
    left: auto; right: auto; bottom: auto;
    z-index: 1;
    max-width: none;
    margin: 90px 16px 24px;
    padding: 14px 16px;
    border: 0;
    border-radius: 4px;
    background: rgba(6,18,40,.62);
    text-align: left;
  }
  .hero__evidence p { font-size: 9px; line-height: 1.7; }
  .companies { padding-block: 48px; }
  .companies__head { padding-inline: 20px; }
  .companies__note { font-size: 12px; line-height: 1.8; }
  .companies__note span { display: block; white-space: nowrap; }
  .marquee { margin-top: 28px; }
  .marquee__track--desktop { display: none; }
  .marquee__mobile { display: flex; flex-direction: column; gap: 18px; }
  .marquee__track--mobile {
    display: flex;
    gap: 40px;
    padding-inline: 20px;
    animation-duration: 80s;
  }
  .marquee__track--mobile-offset { animation-delay: -40s; }
  .marquee__item { height: 34px; min-width: 72px; }
  .marquee__item img { height: 34px; }
  .legal__title { font-size: 27px; word-break: keep-all; overflow-wrap: normal; }
  .legal-facts > div, .legal-terms > div { grid-template-columns: 1fr; }
  .legal-facts dt, .legal-facts dd, .legal-terms dt, .legal-terms dd { padding: 16px 18px; }
  .legal-refund-grid { grid-template-columns: 1fr; }
  .legal-refund-grid > div { min-height: 116px; }
  .page-hero { padding: 52px 20px 56px; }
  .page-hero--about { min-height: 340px; }
  .page-hero__background { object-position: 62% center; }
  .page-hero__veil { background: linear-gradient(90deg, rgba(6,25,51,.92), rgba(6,25,51,.54)); }
  .page-hero h1 { font-size: 30px; word-break: keep-all; }
  .page-hero p br,
  .section__lead br,
  .profile-detail__quote br,
  .employer-contact__head p br,
  .employer-contact__guide h3 br { display: none; }
  .award__title span { display: block; white-space: nowrap; }
  .award__title span:last-child::before { content: none; }
  .contact__title,
  .subpage-cta h2 { font-size: 24px; }
  .employer-contact__guide h3 { font-size: 25px; }
  .employer-hero__title span { display: block; }
  .employer-data__head { align-items: flex-start; flex-direction: column; gap: 12px; }
  .employer-data__head p { margin: 0; white-space: normal; }
  .employer-data-card { padding: 26px 18px 30px; }
  .data-donut-svg { width: min(100%,360px); }
  .employer-role-list li { grid-template-columns: 92px minmax(0,1fr); gap: 10px; }
  .employer-role__name { font-size: 12px; }
  .employer-role__rail { height: 24px; }
  .content-heading { font-size: 26px; }
  .about-mission__title { font-size: 29px; }
  .about-mission__title span { display: block; }
  .about-mission__body { font-size: 15px; line-height: 2; }
  .representative-message__history { grid-template-columns: 1fr; gap: 9px; padding-top: 20px; }
  .representative-message__signature small { display: block; margin: 5px 0 0; }
  .company-table > div { grid-template-columns: 1fr; }
  .company-table dt, .company-table dd { padding: 16px 18px; }
  .company-rating { padding: 18px; grid-template-columns: 1fr; gap: 12px; }
  .company-rating__summary { flex-wrap: wrap; gap: 8px; }
  .company-rating__value { font-size: 28px; }
  .company-rating__stars { font-size: 18px; }
  .company-rating__link { grid-column: auto; width: 100%; justify-content: center; }
  .company-map iframe { height: 340px; }
  .faq-item h2, .faq-item p { padding: 18px 18px 18px 58px; }
  .faq-item h2 span, .faq-item p span { left: 18px; top: 16px; }
  .support-process li { grid-template-columns: 48px 1fr; gap: 14px; }
  .employer-contact__head { margin-bottom: 34px; }
  .employer-contact__head p br { display: none; }
  .employer-contact__guide { padding: 34px 24px; }
  .employer-form { padding: 30px 20px 34px; }
  .employer-form__fields { grid-template-columns: 1fr; gap: 20px; }
  .employer-form__field--message { grid-column: auto; }
  .employer-form__field { scroll-margin-top: 10px; }
  .employer-form__required-note { margin-bottom: 18px; }
  .employer-form__consent { justify-content: flex-start; }
  .employer-form__field-error--consent { margin-left: 28px; text-align: left; }
  .employer-confirm h3 { font-size: 22px; }
  .employer-confirm__lead { margin-bottom: 22px; font-size: 13px; }
  .employer-confirm__list > div { grid-template-columns: 1fr; }
  .employer-confirm__list dt { padding: 12px 14px 5px; border-bottom: 0; }
  .employer-confirm__list dd { padding: 4px 14px 13px; background: #F2F5F9; }
  .employer-confirm__actions { flex-direction: column-reverse; gap: 10px; }
  .employer-confirm__actions .employer-form__submit,
  .employer-confirm__back { width: 100%; }
  .credential { flex-direction: column; align-items: flex-start; }
  .credential img, .credential--dark img { width: min(100%, 260px); }
  .advisor__photo { width: min(100%, 260px); height: 270px; margin-inline: auto; }
  .profile-detail__photo { width: min(100%, 250px); }
  .profile-detail__photo, .profile-detail__photo img { min-height: 278px; height: 278px; }
  .profile-detail__body h2 { font-size: 28px; }
  .flow-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .bottom-bar__label { display: none; }
  .bottom-bar { padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
  .bottom-bar .pill-btn { flex: 1 1 0; min-width: 0; min-height: 48px; padding: 10px 8px; font-size: 13px; }
}

@media (max-width: 560px) {
  .booking-body .header {
    min-height: 56px;
    padding: 6px 14px;
  }
  .booking-body .header__brand { min-height: 44px; }
  .booking-body .header__logo { height: 34px; }
  .booking-body .booking-page { padding: 14px 12px 22px; }
  .booking-body .booking-intro { margin-bottom: 12px; }
  .booking-body .booking-intro__eyebrow { display: none; }
  .booking-body .booking-intro h1 { font-size: 22px; line-height: 1.4; }
  .booking-body .booking-intro > p:last-child {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.6;
  }
  .booking-body .booking-shell { padding: 20px 20px 28px; }
  .booking-body .booking-progress { margin-bottom: 24px; }
  .booking-body .booking-field { scroll-margin-top: 10px; }
  .booking-body.booking-keyboard-active .header,
  .booking-body.booking-keyboard-active .booking-intro { display: none; }
  .booking-body.booking-keyboard-active .booking-page { padding-top: 8px; }
  .booking-body.booking-keyboard-active .booking-actions {
    padding-top: 8px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }
  .booking-body.booking-keyboard-active .booking-button { min-height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .case-carousel__track { transition: none !important; }
}
