/* =========================================
   DR.LINK™ by i2m2 - Styles
   ========================================= */

:root {
  --white: #ffffff;
  --gray-50: #f5f7fa;
  --gray-100: #eef1f6;
  --gray-200: #dde3ec;
  --gray-400: #a5b0c0;
  --gray-600: #5f6b7d;
  --gray-700: #3d4757;
  --navy: #1a2a4a;
  --navy-dark: #0f1a30;
  --navy-800: #172341;
  --gold: #b8860b;
  --gold-soft: #d4a53b;
  --line: #06c755;
  --line-dark: #05a648;
  --text: #1a2130;
  --text-mute: #6b7583;
  --border: #e5eaf1;
  --shadow-sm: 0 1px 2px rgba(15, 26, 48, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 26, 48, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 26, 48, 0.14);
  --radius: 8px;
  --radius-lg: 14px;
  --font-serif: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  --font-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --container: 1160px;
  --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }

/* =========================================
   Topbar
   ========================================= */
.topbar {
  background: var(--navy-dark);
  color: var(--gray-400);
  font-size: 12px;
  padding: 6px 0;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: right;
}
.topbar a {
  color: var(--gray-400);
  transition: color .2s;
  letter-spacing: .05em;
}
.topbar a:hover { color: var(--white); }

/* =========================================
   Header
   ========================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.header.is-scrolled {
  box-shadow: 0 4px 20px rgba(15, 26, 48, 0.06);
  border-bottom-color: var(--border);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--navy);
  letter-spacing: .01em;
}
.logo__main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
}
.logo__main sup {
  font-size: .5em;
  font-weight: 400;
  margin-left: 1px;
}
.logo__sub {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: .1em;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__list {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav__list a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav__list a:hover { color: var(--navy); }
.nav__list a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  padding: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .2s, top .3s;
}
.hamburger span:nth-child(1) { top: 11px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 23px; }
.hamburger.is-open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  min-height: 44px;
}
.btn--sm {
  padding: 9px 18px;
  font-size: 13px;
  min-height: 40px;
}
.btn--lg {
  padding: 16px 34px;
  font-size: 15px;
  min-height: 52px;
}
.btn--xl {
  padding: 20px 44px;
  font-size: 17px;
  min-height: 60px;
}
.btn--line {
  background: var(--line);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.28);
}
.btn--line:hover {
  background: var(--line-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.36);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(26, 42, 74, 0.24);
}
.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(26, 42, 74, 0.32);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

.ico-line {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.btn--lg .ico-line { width: 22px; height: 22px; }
.btn--xl .ico-line { width: 24px; height: 24px; }

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, #0f1a30 0%, #1a2a4a 55%, #223763 100%);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 120px;
}

.hero__bg-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}
.hero__glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184, 134, 11, .35), transparent 70%);
  top: -180px; right: -120px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6, 199, 85, .18), transparent 70%);
  bottom: -140px; left: 5%;
}

.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--gold-soft);
  margin: 0 0 20px;
  padding: 6px 14px;
  border: 1px solid rgba(212, 165, 59, 0.4);
  border-radius: 999px;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.3;
  letter-spacing: .02em;
  margin: 0 0 24px;
  color: var(--white);
  text-wrap: pretty;
}
.hero__lead {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 40px;
  text-wrap: pretty;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.hero__ctas .btn { min-width: 300px; }

.hero__points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  letter-spacing: .05em;
}
.hero__points .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  margin-right: 8px;
  vertical-align: middle;
}

/* Phone mockup */
.hero__mock {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone {
  position: relative;
  width: 300px;
  height: 600px;
  background: #0a1224;
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg);
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #0a1224;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #e8ecf1;
  position: relative;
}

/* Lockscreen mockup */
.phone__screen--lock {
  background:
    radial-gradient(120% 80% at 30% 15%, rgba(184, 134, 11, 0.18), transparent 55%),
    radial-gradient(100% 70% at 80% 90%, rgba(6, 199, 85, 0.10), transparent 60%),
    linear-gradient(160deg, #0a1224 0%, #14213d 50%, #1a2a4a 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
}
.phone__screen--lock::before {
  /* subtle noise / vignette */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 100% at 50% 100%, rgba(0, 0, 0, 0.35), transparent 55%);
  pointer-events: none;
}

.lock__statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 0;
  padding-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 2;
}
.lock__time-sm { margin-left: -2px; }
.lock__icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.92);
}

.lock__clock {
  padding: 26px 24px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.lock__date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2px;
}
.lock__time {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 62px;
  line-height: 1;
  letter-spacing: -.01em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.lock__notifs {
  flex: 1;
  padding: 34px 14px 0;
  position: relative;
  z-index: 2;
}

/* Stacked "older" notifications behind */
.notif--stack-2,
.notif--stack-1 {
  position: absolute;
  left: 22px;
  right: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.notif--stack-2 {
  height: 20px;
  top: 26px;
  opacity: .5;
}
.notif--stack-1 {
  height: 30px;
  top: 40px;
  opacity: .75;
}

.notif--main {
  position: relative;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 14px 16px 16px;
  margin-top: 56px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  animation: notifSlide .8s cubic-bezier(.2, .8, .2, 1) .3s both;
}
@keyframes notifSlide {
  from { opacity: 0; transform: translateY(-8px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.notif__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.notif__app {
  display: flex;
  align-items: center;
  gap: 7px;
}
.notif__app-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(6, 199, 85, 0.4);
}
.notif__app-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}
.notif__time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
.notif__title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.notif__body {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
}
.notif__body strong {
  color: var(--gold-soft);
  font-weight: 700;
}
.notif__job {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 12px;
}
.notif__job-tag {
  display: inline-block;
  font-size: 8.5px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--gold-soft);
  border: 1px solid rgba(212, 165, 59, 0.5);
  padding: 2px 6px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.notif__job-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 4px;
}
.notif__job-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}
.notif__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.lock__indicator {
  width: 108px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  margin-top: auto;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

/* =========================================
   Section shared
   ========================================= */
.section {
  padding: 110px 0;
  background: var(--white);
}
.section--gray { background: var(--gray-50); }

.section__head {
  text-align: center;
  margin-bottom: 64px;
}
.section__head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  gap: 24px;
}
.section__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--gold);
  margin: 0 0 14px;
}
.section__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--navy);
  margin: 0;
  letter-spacing: .04em;
  line-height: 1.4;
}
.section__title-sub {
  display: inline-block;
  font-size: .55em;
  color: var(--text-mute);
  font-weight: 400;
  margin-left: 8px;
  letter-spacing: .02em;
}
.section__lead {
  margin: 20px auto 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mute);
  max-width: 640px;
  text-wrap: pretty;
}

.section__cta {
  text-align: center;
  margin-top: 56px;
}
.section__cta .btn { min-width: 300px; }

.section__note {
  text-align: center;
  color: var(--text-mute);
  font-size: 12px;
  margin: 32px 0 0;
}

.section__more {
  text-align: right;
  margin-top: 40px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 8px 4px;
  border-bottom: 1.5px solid var(--navy);
  transition: gap .2s, color .2s;
}
.link-arrow:hover { gap: 14px; color: var(--gold); border-color: var(--gold); }
.link-arrow--sm { font-size: 13px; }

/* =========================================
   Feature cards (section 2 & 5)
   ========================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}
.feature-card--dark {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.feature-card__num {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.feature-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 16px;
  letter-spacing: .02em;
}
.feature-card__text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray-700);
  margin: 0;
}

.feature-card__fee {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 13px;
  color: var(--gray-700);
}
.fee-row strong {
  color: var(--navy);
  font-size: 16px;
  font-family: var(--font-serif);
  font-weight: 700;
}
.fee-note {
  font-size: 11px;
  color: var(--text-mute);
  margin: 12px 0 0;
  line-height: 1.7;
}

/* =========================================
   Job cards (section 3)
   ========================================= */
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--navy);
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.job-card--gold {
  border-top-color: var(--gold);
  background: linear-gradient(180deg, #fdf8ec 0%, #ffffff 40%);
}
.job-card__label {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.job-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: .02em;
}
.job-card__list {
  flex: 1;
  margin: 0 0 24px;
  padding-left: 0;
}
.job-card__list li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px dashed var(--border);
}
.job-card__list li:last-child { border-bottom: none; }
.job-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .4;
}
.job-card__salary {
  background: var(--gray-50);
  padding: 14px 18px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.job-card--gold .job-card__salary {
  background: rgba(184, 134, 11, 0.08);
}
.job-card__salary-label {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: .1em;
}
.job-card__salary-value {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}
.job-card__note {
  background: rgba(184, 134, 11, 0.08);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--gold);
  line-height: 1.7;
  font-weight: 500;
}

/* =========================================
   Flow (section 4)
   ========================================= */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.flow-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200) 15%, var(--gray-200) 85%, transparent);
  z-index: 0;
}
.flow-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.flow-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.flow-card__step {
  background: var(--navy);
  color: var(--white);
  width: 84px;
  height: 44px;
  border-radius: 22px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}
.flow-card__step-label {
  font-size: 8px;
  letter-spacing: .2em;
  opacity: .7;
}
.flow-card__step-num {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}
.flow-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  color: var(--gold);
}
.flow-card__icon svg { width: 100%; height: 100%; }
.flow-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: .02em;
}
.flow-card__text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray-700);
  margin: 0;
}

/* =========================================
   Employer intro (2-col hero for section 5)
   ========================================= */
.employer-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}
.employer-intro__copy .section__eyebrow {
  margin-bottom: 14px;
}
.employer-intro__copy .section__title {
  margin-bottom: 20px;
}
.employer-intro__copy .section__lead {
  margin: 0;
  max-width: none;
}
.employer-intro__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.employer-intro__image::after {
  /* Subtle brand tint */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 42, 74, 0.10) 0%, transparent 40%, rgba(184, 134, 11, 0.10) 100%);
  pointer-events: none;
}
.employer-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   Pricing (section 6)
   ========================================= */
.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--gray-50);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pricing-card__head {
  background: var(--navy);
  color: var(--white);
  padding: 22px 24px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .04em;
}
.pricing-card__list {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-card__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--gray-700);
}
.pricing-card__list li:last-child { border-bottom: none; }
.pricing-card__list li strong {
  margin-left: auto;
  color: var(--line);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
}
.check::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translateY(-2px);
}
.pricing-card__note {
  padding: 0 40px 28px;
  font-size: 12px;
  color: var(--text-mute);
  margin: 0;
}

/* =========================================
   FAQ (section 7)
   ========================================= */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq__item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}
.faq__item summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--navy);
  font-size: 15px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.faq__label {
  flex: 1;
  line-height: 1.6;
}
.faq__toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--navy);
  transition: transform .3s ease;
}
.faq__toggle::before {
  width: 14px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq__toggle::after {
  width: 2px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__body {
  padding: 0 26px 26px 66px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray-700);
}

/* =========================================
   Voice cards (section 8)
   ========================================= */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid transparent;
}
.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}
.voice-card__quote {
  font-family: var(--font-serif);
  font-size: 60px;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
  margin-bottom: -20px;
  font-weight: 700;
}
.voice-card__text {
  font-size: 14px;
  line-height: 1.95;
  color: var(--gray-700);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.voice-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.voice-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
}
.voice-card__name {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.voice-card__desc {
  font-size: 12px;
  color: var(--text-mute);
}

/* =========================================
   Column (section 9)
   ========================================= */
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.column-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: block;
  border: 1px solid var(--border);
}
.column-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.column-card__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.column-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0 12px,
      rgba(255, 255, 255, 0.03) 12px 13px
    );
}
.column-card__thumb--1 {
  background-image: url("/assets/images/column-01-hero.jpg");
  background-size: cover;
  background-position: center;
}
.column-card__thumb--2 {
  background-image: url("/assets/images/column-02-hero.jpg");
  background-size: cover;
  background-position: center;
}
.column-card__thumb--3 {
  background-image: url("/assets/images/column-03-hero.jpg");
  background-size: cover;
  background-position: center;
}
.column-card__thumb::after {
  /* dark gradient overlay for text readability + brand cohesion */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 48, 0.15) 0%, rgba(15, 26, 48, 0.65) 100%);
  z-index: 1;
}
.column-card__thumb span {
  font-family: var(--font-serif);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  letter-spacing: .3em;
  position: relative;
  z-index: 2;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.column-card:hover .column-card__thumb {
  transform: scale(1.02);
}
.column-card__thumb {
  transition: transform .5s ease;
}
.column-card__body {
  padding: 24px 26px 28px;
}
.column-card__date {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .1em;
  font-weight: 500;
  margin-bottom: 10px;
}
.column-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.65;
  margin: 0 0 20px;
  letter-spacing: .02em;
  min-height: 3.3em;
}

/* =========================================
   News (section 10)
   ========================================= */
.news-list {
  border-top: 1px solid var(--border);
}
.news-list__item {
  display: grid;
  grid-template-columns: 110px 130px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 12px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.news-list__item:hover { background: var(--gray-50); }
.news-list__date {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .06em;
}
.news-list__tag {
  font-size: 11px;
  padding: 5px 10px;
  border: 1px solid var(--navy);
  color: var(--navy);
  text-align: center;
  border-radius: 3px;
  letter-spacing: .05em;
  font-weight: 500;
}
.news-list__tag--service {
  background: var(--navy);
  color: var(--white);
}
.news-list__tag--jobs {
  border-color: var(--gold);
  color: var(--gold);
}
.news-list__title {
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
}

/* Clickable news items */
.news-list__item--link {
  display: block;
  padding: 0;
}
.news-list__item--link:hover { background: transparent; }
.news-list__link {
  display: grid;
  grid-template-columns: 110px 130px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 12px;
  color: inherit;
  transition: background .2s, color .2s;
  position: relative;
}
.news-list__link:hover {
  background: var(--gray-50);
}
.news-list__link:hover .news-list__title {
  color: var(--navy);
}
.news-list__link:hover .news-list__arrow {
  color: var(--gold);
  transform: translateX(4px);
}
.news-list__arrow {
  color: var(--gray-400);
  font-size: 16px;
  transition: transform .2s, color .2s;
  padding-right: 4px;
}

/* =========================================
   CTA band (section 11)
   ========================================= */
.cta-band {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1a30, #1a2a4a 55%, #223763);
  color: var(--white);
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cta-band__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: .04em;
  text-wrap: pretty;
}
.cta-band__lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin: 0 0 40px;
  letter-spacing: .04em;
}

/* =========================================
   Form (section 12)
   ========================================= */
.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form__row { margin-bottom: 22px; }
.form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__row--split > div { margin-bottom: 0; }

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.req, .opt {
  display: inline-block;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 6px;
  letter-spacing: .1em;
  font-weight: 700;
  vertical-align: middle;
}
.req { background: var(--gold); color: var(--white); }
.opt { background: var(--gray-100); color: var(--text-mute); }

.form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  min-height: 48px;
}
.form__input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 42, 74, 0.1);
}
select.form__input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a2a4a' d='M6 8 L0 0 L12 0 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
textarea.form__input {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0;
  font-size: 13px;
  color: var(--gray-700);
  cursor: pointer;
}
.form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
}
.form__check a {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 700;
}

.form__submit {
  text-align: center;
  padding-top: 8px;
}
.form__submit .btn { min-width: 280px; }

.form__success {
  margin-top: 24px;
  padding: 20px;
  background: rgba(6, 199, 85, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--line-dark);
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  font-size: 13px;
  line-height: 1.9;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer__brand .logo {
  margin-bottom: 20px;
}
.footer__brand .logo__main,
.footer__brand .logo__sub {
  color: var(--white);
}
.footer__brand .logo__sub { color: var(--gray-400); }
.footer__company {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}
.footer__company a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.footer__title {
  color: var(--white);
  font-size: 13px;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: .1em;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold-soft); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: .1em;
}

/* =========================================
   Floating LINE CTA (mobile)
   ========================================= */
.floating-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--line);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4);
  z-index: 90;
  min-height: 52px;
  animation: floatUp .5s ease;
}
@keyframes floatUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* =========================================
   Fade animations
   Only apply the "hidden" starting state when JS is available.
   If JS fails to load, .js class is never added and content stays visible.
   ========================================= */
.js .fade-up,
.js .fade-left,
.js .fade-right {
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.js .fade-up { transform: translateY(30px); }
.js .fade-left { transform: translateX(30px); }
.js .fade-right { transform: translateX(-30px); }
.js .fade-up.is-visible,
.js .fade-left.is-visible,
.js .fade-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Respect user preference — no animations, always visible */
@media (prefers-reduced-motion: reduce) {
  .js .fade-up,
  .js .fade-left,
  .js .fade-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================
   Subpages (column detail / list / news list)
   ========================================= */
.subpage-hero {
  background: linear-gradient(135deg, #0f1a30 0%, #1a2a4a 55%, #223763 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(184, 134, 11, 0.28), transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
  z-index: 1;
}
/* Hero with a background image (used on column/news detail pages) */
.subpage-hero--image {
  padding: 140px 0 120px;
}
.subpage-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.subpage-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 26, 48, 0.55) 0%, rgba(15, 26, 48, 0.85) 100%),
    linear-gradient(135deg, rgba(15, 26, 48, 0.4) 0%, rgba(34, 55, 99, 0.4) 100%);
}
.subpage-hero--image .container { position: relative; z-index: 2; }
.subpage-hero .container {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  letter-spacing: .05em;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb__sep { opacity: .4; }
.breadcrumb__cur {
  color: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 40ch;
}

.subpage-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold-soft);
  padding: 5px 12px;
  border: 1px solid rgba(212, 165, 59, 0.4);
  border-radius: 999px;
  margin-bottom: 20px;
  font-weight: 500;
}
.subpage-hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 20px;
  letter-spacing: .04em;
  text-wrap: pretty;
}
.subpage-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: .05em;
  flex-wrap: wrap;
}
.subpage-hero__date {
  color: var(--gold-soft);
  font-weight: 500;
}
.subpage-hero__cat {
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: .08em;
}

/* Article body */
.article {
  padding: 80px 0 100px;
  background: var(--white);
}
.article__body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 2;
  color: var(--gray-700);
}
.article__body > * + * { margin-top: 1.3em; }
.article__body h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: .04em;
  line-height: 1.5;
  margin-top: 3em;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy);
  position: relative;
}
.article__body h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}
.article__body h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-top: 2.4em;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
  line-height: 1.6;
}
.article__body p { margin-top: 1.3em; text-wrap: pretty; }
.article__body strong { color: var(--navy); font-weight: 700; }
.article__body ul {
  padding-left: 0;
  margin-top: 1.3em;
}
.article__body ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  border-bottom: 1px dashed var(--border);
}
.article__body ul li:last-child { border-bottom: none; }
.article__body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .5;
}
.article__body blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  background: var(--gray-50);
  border-left: 4px solid var(--navy);
  border-radius: 4px;
  font-size: 14.5px;
  color: var(--gray-700);
}

.article__cta {
  max-width: 760px;
  margin: 60px auto 0;
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  text-align: center;
}
.article__cta-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: .04em;
}
.article__cta-lead {
  font-size: 13.5px;
  color: var(--text-mute);
  margin: 0 0 20px;
}

.article__nav {
  max-width: 760px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.article__nav a {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--gray-700);
  transition: border-color .2s, background .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.article__nav a:hover {
  border-color: var(--gold);
  background: var(--gray-50);
}
.article__nav a[data-dir="prev"] { text-align: left; }
.article__nav a[data-dir="next"] { text-align: right; align-items: flex-end; }
.article__nav-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .15em;
  font-weight: 700;
}
.article__nav-title {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}
.article__nav a[aria-disabled="true"] {
  opacity: .4;
  pointer-events: none;
}
.article__back {
  max-width: 760px;
  margin: 30px auto 0;
  text-align: center;
}

/* List pages */
.list-page {
  padding: 70px 0 100px;
  background: var(--gray-50);
  min-height: 60vh;
}
.list-page__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.list-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 30px;
}
.list-page--news .news-list {
  background: var(--white);
  border-radius: var(--radius);
  border-top: none;
  padding: 6px 30px;
  box-shadow: var(--shadow-sm);
}

/* Empty state hint */
.list-page__note {
  text-align: center;
  color: var(--text-mute);
  font-size: 13px;
  margin-top: 40px;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__mock { order: -1; }
  .phone { transform: rotate(0) scale(.85); }

  .employer-intro { grid-template-columns: 1fr; gap: 32px; }
  .employer-intro__copy .section__title,
  .employer-intro__copy .section__lead { text-align: center !important; }

  .feature-grid,
  .job-grid,
  .voice-grid,
  .column-grid { grid-template-columns: 1fr; }

  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid::before { display: none; }

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

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 72px 0; }
  .section__head { margin-bottom: 40px; }
  .section__head--row { flex-direction: column; align-items: flex-start; text-align: left; }

  .topbar { display: none; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 20px 24px 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    transition: transform .35s ease;
    align-items: stretch;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    margin-bottom: 20px;
  }
  .nav__list a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav__list a::after { display: none; }
  .nav__cta { align-self: stretch; }

  .hamburger { display: block; }

  .hero { padding: 60px 0 80px; }
  .hero__ctas .btn { width: 100%; min-width: 0; }
  .hero__ctas { align-items: stretch; }

  .footer { padding: 60px 0 90px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .form { padding: 28px 22px; }
  .form__row--split { grid-template-columns: 1fr; gap: 22px; }
  .form__submit .btn { width: 100%; min-width: 0; }

  .news-list__item {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 8px 14px;
    padding: 18px 8px;
  }
  .news-list__item--link { display: block; padding: 0; }
  .news-list__link {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    gap: 8px 14px;
    padding: 18px 8px;
  }
  .news-list__link .news-list__arrow {
    grid-row: 1;
    grid-column: 3;
    justify-self: end;
    align-self: center;
  }
  .news-list__title,
  .news-list__link .news-list__title { grid-column: 1 / -1; font-size: 14px; }

  .floating-cta { display: inline-flex; }

  .cta-band { padding: 70px 0; }
  .cta-band__inner .btn { width: 100%; }

  .pricing-card__list { padding: 20px 24px; }
  .pricing-card__list li { font-size: 14px; gap: 10px; }
  .pricing-card__list li strong { font-size: 15px; }
  .pricing-card__note { padding: 0 24px 24px; }

  .faq__item summary { padding: 18px 20px; gap: 14px; font-size: 14px; }
  .faq__body { padding: 0 20px 22px 52px; font-size: 13.5px; }

  .section__cta .btn,
  .section__cta { }
  .section__cta .btn { min-width: 0; width: 100%; max-width: 340px; }

  body { padding-bottom: 80px; }
}

@media (max-width: 768px) {
  .list-page__grid { grid-template-columns: 1fr; }
  .article { padding: 50px 0 70px; }
  .article__body { font-size: 15px; }
  .article__body h2 { font-size: 20px; margin-top: 2.4em; }
  .article__body h3 { font-size: 16px; }
  .article__nav { grid-template-columns: 1fr; }
  .article__cta { padding: 24px 20px; }
  .article__cta .btn { width: 100%; }
  .subpage-hero { padding: 50px 0 40px; }
  .subpage-hero--image { padding: 90px 0 70px; }
  .list-page { padding: 40px 0 90px; }
  .list-page--news .news-list { padding: 6px 20px; }
}

@media (max-width: 480px) {
  .flow-grid { grid-template-columns: 1fr; }
  .phone { transform: rotate(0) scale(.9); width: 280px; height: 560px; }
  .hero__title { font-size: 30px; }
}
