/* ============================================================
   明星パトロール採用サイト — Main Stylesheet  v2
   Brand: Amber #E1A035 / Navy #162235
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  color: #162235;
  background: #fff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- CSS Custom Properties -------------------------------- */
:root {
  --amber:        #E1A035;
  --amber-dark:   #B87D20;
  --amber-mid:    #D4922A;
  --amber-light:  #FDF3E3;
  --amber-pale:   #FEF9F0;
  --navy:         #162235;
  --navy-dark:    #0D1825;
  --navy-mid:     #1E3050;
  --navy-light:   #EEF1F5;
  --warm-white:   #F8F7F4;
  --warm-gray:    #F0EDE8;
  --white:        #FFFFFF;
  --text-primary:   #162235;
  --text-secondary: #475569;
  --text-muted:     #94A3B8;
  --border:         #E2DDD7;
  --border-light:   #EDE9E4;
  --sage:         #2E7D5E;
  --sage-light:   #E8F5EF;
  --shadow-xs:  0 1px 3px rgba(22,34,53,.07);
  --shadow-sm:  0 2px 10px rgba(22,34,53,.08);
  --shadow-md:  0 6px 24px rgba(22,34,53,.12);
  --shadow-lg:  0 12px 48px rgba(22,34,53,.18);
  --shadow-xl:  0 20px 64px rgba(22,34,53,.22);
  --radius-xs:  4px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 999px;
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --ease-out:   cubic-bezier(.16,1,.3,1);
  --transition: 180ms var(--ease);
  --trans-med:  280ms var(--ease);
  --trans-slow: 360ms var(--ease-out);
  --container:  1200px;
}

/* --- Layout ------------------------------------------------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}
.section { padding: 96px 0; }
.section-center { text-align: center; }
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--amber);
  opacity: .5;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700; color: var(--text-primary);
  line-height: 1.25; letter-spacing: -.01em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.85; max-width: 560px; margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700;
  transition: all var(--trans-med);
  cursor: pointer; white-space: nowrap;
  border: 2px solid transparent; line-height: 1.4;
  letter-spacing: .02em;
}
.btn svg { flex-shrink: 0; transition: transform var(--trans-med); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(225,160,53,.35);
}
.btn-primary:hover {
  background: var(--amber-mid);
  box-shadow: 0 4px 20px rgba(225,160,53,.45);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: 0 2px 12px rgba(22,34,53,.25);
}
.btn-navy:hover {
  background: var(--navy-mid);
  box-shadow: 0 4px 20px rgba(22,34,53,.35);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
}
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy); color: var(--white);
}
.btn-outline-amber {
  background: transparent; color: var(--amber-dark);
  border-color: var(--amber);
}
.btn-outline-amber:hover {
  background: var(--amber); color: var(--navy);
}
.btn-sm  { padding: 8px 18px; font-size: 13px; }
.btn-lg  { padding: 16px 36px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; line-height: 1.5;
  letter-spacing: .02em;
}
.badge-amber   { background: var(--amber-light); color: var(--amber-dark); }
.badge-sage    { background: var(--sage-light); color: var(--sage); }
.badge-navy    { background: var(--navy-light); color: var(--navy); }
.badge-white   { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.badge-amber-ghost { background: rgba(225,160,53,.12); color: var(--amber-dark); border: 1px solid rgba(225,160,53,.3); }

/* ============================================================
   HEADER  — ダークネイビー背景（ロゴが白テキストのため）
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--trans-med);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.header-inner {
  display: flex; align-items: center; gap: 28px; height: 68px;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
/* ロゴ画像: 白テキストなので暗い背景にそのまま表示 */
.logo-img {
  height: 38px; width: auto;
  display: block;
}
/* フッターロゴ画像 */
.footer-logo-img {
  height: 32px; width: auto;
  display: block;
  opacity: .85;
}
.nav-links { display: flex; align-items: center; gap: 0; flex: 1; }
.nav-links a {
  position: relative;
  padding: 8px 13px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
  letter-spacing: .01em;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 13px; right: 13px; height: 2px;
  background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans-med);
  border-radius: 2px;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }
.header-right { display: flex; align-items: center; gap: 14px; margin-left: auto; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8);
  white-space: nowrap; letter-spacing: .01em;
  transition: color var(--transition);
}
.header-phone:hover { color: #fff; }
.header-phone svg { color: var(--amber); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; border-radius: var(--radius-sm); margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: all var(--trans-slow); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 150; }
.mobile-overlay.open { display: block; }
.mobile-nav {
  position: fixed; top: 0; right: -100%; z-index: 200;
  width: min(300px, 88vw); height: 100dvh;
  background: var(--navy); padding: 80px 28px 40px;
  transition: right var(--trans-slow);
  overflow-y: auto; display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.06);
}
.mobile-nav.open { right: 0; }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  color: rgba(255,255,255,.6); font-size: 24px; line-height: 1;
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.mobile-close:hover { color: #fff; background: rgba(255,255,255,.08); }
.mobile-nav a {
  display: block; padding: 16px 0;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav a:hover { color: var(--amber); padding-left: 6px; }
.mobile-phone { margin-top: 28px; font-size: 13px; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 8px; }
.mobile-apply { margin-top: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%; z-index: 0;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(13,24,37,.82) 0%,
    rgba(22,34,53,.72) 45%,
    rgba(22,34,53,.35) 100%
  );
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px; z-index: 1;
  background: linear-gradient(to top, rgba(13,24,37,.5), transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(225,160,53,.16);
  border: 1px solid rgba(225,160,53,.35);
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; color: var(--amber);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
}
.hero-title {
  font-size: clamp(34px, 5.5vw, 58px); font-weight: 900;
  color: #fff; line-height: 1.1; margin-bottom: 8px;
  letter-spacing: -.02em;
}
.hero-title-accent { color: var(--amber); }
.hero-sub {
  font-size: clamp(14px, 1.7vw, 16px); color: rgba(255,255,255,.82);
  line-height: 1.9; margin-bottom: 20px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.hero-salary {
  font-size: 13px; color: rgba(255,255,255,.65);
  margin-bottom: 32px; padding: 12px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: inline-block;
}
.hero-salary strong { color: #fff; font-weight: 700; font-size: 14px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.45);
  font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section { background: var(--navy); padding: 80px 0; }
.stats-eyebrow {
  text-align: center;
  font-size: clamp(14px, 2vw, 16px); font-weight: 600;
  color: rgba(255,255,255,.55); letter-spacing: .06em;
  margin-bottom: 56px;
}
.stats-eyebrow strong { color: rgba(255,255,255,.9); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  text-align: center; padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(225,160,53,.4), transparent);
}
.stat-label {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.45);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px;
}
.stat-value {
  font-size: clamp(42px, 5.5vw, 60px); font-weight: 900;
  color: var(--amber); line-height: 1; margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}
.stat-value .unit { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; color: rgba(255,255,255,.8); }
.stat-desc { font-size: 11px; color: rgba(255,255,255,.38); letter-spacing: .04em; }

/* ============================================================
   JOBS SECTION
   ============================================================ */
.jobs-section { background: var(--warm-white); }
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.job-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
  transition: transform var(--trans-med), box-shadow var(--trans-med);
  text-decoration: none; color: inherit;
  position: relative;
}
.job-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-dark));
  transition: height var(--trans-med);
}
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.job-card:hover::before { height: 5px; }
.job-card-body { padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.job-card-tag { }
.job-card-title { font-size: 20px; font-weight: 700; color: var(--text-primary); line-height: 1.25; }
.job-card-salary { font-size: 22px; font-weight: 900; color: var(--amber-dark); font-family: 'Inter', sans-serif; letter-spacing: -.01em; }
.job-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.8; flex: 1; }
.job-card-img {
  height: 200px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.job-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.job-card:hover .job-card-img img { transform: scale(1.04); }
.job-card-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border-light);
  background: var(--warm-white);
  display: flex; align-items: center; justify-content: space-between;
}
.job-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: var(--amber-dark);
  transition: gap var(--transition);
}
.job-card:hover .job-card-link { gap: 8px; }

/* ============================================================
   WHY US
   ============================================================ */
.whyus-section { background: #fff; }
.whyus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.whyus-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xs);
  position: relative; overflow: hidden;
  transition: transform var(--trans-med), box-shadow var(--trans-med);
}
.whyus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.whyus-num {
  position: absolute; bottom: -12px; right: 16px;
  font-size: 88px; font-weight: 900;
  color: var(--warm-gray);
  font-family: 'Inter', sans-serif; line-height: 1; user-select: none;
  pointer-events: none;
}
.whyus-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--amber-light), #fbefd6);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-dark); margin-bottom: 22px;
}
.whyus-title { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; line-height: 1.3; }
.whyus-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.85; }

/* ============================================================
   CULTURE BANNER
   ============================================================ */
.culture-banner {
  position: relative; min-height: 460px;
  display: flex; align-items: center; overflow: hidden;
}
.culture-banner-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
  transform: scale(1.02);
}
.culture-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(13,24,37,.88) 40%, rgba(22,34,53,.55) 100%);
}
.culture-banner-content { position: relative; z-index: 2; max-width: 560px; }
.culture-banner-title {
  font-size: clamp(26px, 4vw, 42px); font-weight: 900;
  color: #fff; line-height: 1.2; margin-bottom: 16px;
  letter-spacing: -.02em;
}
.culture-banner-desc {
  font-size: 14px; color: rgba(255,255,255,.78);
  line-height: 1.9; margin-bottom: 28px;
}
.culture-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--amber);
  padding: 10px 20px;
  border: 1.5px solid rgba(225,160,53,.45);
  border-radius: var(--radius-sm);
  transition: all var(--trans-med);
}
.culture-link:hover {
  background: rgba(225,160,53,.12);
  border-color: var(--amber);
  gap: 12px;
}

/* ============================================================
   VOICE (TOP)
   ============================================================ */
.voice-section { background: var(--warm-white); }
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.voice-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-xs);
  position: relative;
}
.voice-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 24px;
  font-size: 72px; font-weight: 900; line-height: 1;
  color: var(--amber-light);
  font-family: Georgia, serif;
  pointer-events: none; user-select: none;
}
.voice-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.voice-avatar {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; background: var(--navy-light);
  border: 2px solid var(--border-light);
}
.voice-avatar-fallback {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--navy);
  border: 2px solid var(--border-light);
}
.voice-name { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.voice-attr { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.voice-quote {
  font-size: 15px; font-weight: 700; color: var(--navy);
  line-height: 1.6; margin-bottom: 10px;
  border-left: 3px solid var(--amber); padding-left: 14px;
}
.voice-body { font-size: 13px; color: var(--text-secondary); line-height: 1.85; }
.voice-more-link { text-align: center; margin-top: 44px; }

/* ============================================================
   FLOW
   ============================================================ */
.flow-section { background: #fff; }
.flow-list { max-width: 600px; margin: 52px auto 0; }
.flow-item { display: flex; gap: 20px; position: relative; }
.flow-item:not(:last-child) { padding-bottom: 36px; }
.flow-item:not(:last-child)::after {
  content: ''; position: absolute; left: 19px; top: 40px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber), var(--border));
}
.flow-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--amber); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800;
  flex-shrink: 0; box-shadow: 0 0 0 4px rgba(225,160,53,.15);
  z-index: 1;
}
.flow-body { padding-top: 8px; }
.flow-title { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.flow-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.8; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--warm-gray); }
.faq-list { margin-top: 52px; display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow var(--trans-med);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open {
  border-color: rgba(225,160,53,.3);
  box-shadow: 0 0 0 2px rgba(225,160,53,.08), var(--shadow-sm);
}
/* ====== CRITICAL FIX: button must be full-width ====== */
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  border: none;
  font-family: inherit;
  line-height: 1.5;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--amber-pale); }
.faq-item.open .faq-q { background: var(--amber-pale); color: var(--navy); }
.faq-q:focus { outline: none; }
.faq-q:focus-visible { outline: 2px solid var(--amber); outline-offset: -2px; }
.faq-q-text { flex: 1; }
.faq-q-marker {
  width: 24px; height: 24px; border-radius: var(--radius-xs);
  background: var(--amber); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 800;
  flex-shrink: 0; margin-right: 12px; letter-spacing: 0;
}
.faq-item.open .faq-q-marker { background: var(--amber-dark); }
.faq-chevron {
  width: 20px; height: 20px;
  color: var(--amber-dark); flex-shrink: 0;
  transition: transform var(--trans-slow);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a-wrap {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.faq-item.open .faq-a-wrap { max-height: 600px; }
.faq-a {
  font-size: 14px; color: var(--text-secondary); line-height: 1.9;
  padding: 0 22px 20px 22px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}
.faq-a-inner {
  display: flex; gap: 12px;
}
.faq-a-marker {
  width: 24px; height: 24px; border-radius: var(--radius-xs);
  background: var(--navy-light); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(225,160,53,.1) 0%, transparent 60%);
}
.footer-cta-inner { position: relative; z-index: 1; }
.footer-cta-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
}
.footer-cta-title {
  font-size: clamp(22px, 3.5vw, 32px); font-weight: 700;
  color: #fff; margin-bottom: 12px; line-height: 1.25;
  letter-spacing: -.01em;
}
.footer-cta-sub {
  font-size: 14px; color: rgba(255,255,255,.6);
  margin-bottom: 36px; line-height: 1.8;
}
.footer-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-dark); color: #fff; padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; padding-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; text-decoration: none; }
.footer-logo-icon {
  width: 36px; height: 36px; background: var(--navy-mid); color: var(--amber);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 15px; flex-shrink: 0;
  border: 1px solid rgba(225,160,53,.2);
}
.footer-logo-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }
.footer-logo-sub { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .12em; color: rgba(255,255,255,.35); text-transform: uppercase; }
.footer-info { font-size: 13px; color: rgba(255,255,255,.48); line-height: 2.2; }
.footer-info a { transition: color var(--transition); }
.footer-info a:hover { color: var(--amber); }
.footer-col-title {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.85);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,.52);
  transition: color var(--transition), padding-left var(--transition);
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
}
.footer-links a:hover { color: rgba(255,255,255,.9); padding-left: 4px; }
.footer-links a svg { color: var(--amber); opacity: .6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0; text-align: center;
  font-size: 12px; color: rgba(255,255,255,.28);
  letter-spacing: .04em;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy); padding: 128px 0 72px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 75% 60%, rgba(225,160,53,.07) 0%, transparent 65%);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,160,53,.3), transparent);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(28px, 4.5vw, 42px); font-weight: 700;
  color: #fff; margin-bottom: 12px; line-height: 1.2;
  letter-spacing: -.02em;
}
.page-hero-sub { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.85; }

/* Breadcrumb */
.breadcrumb {
  background: var(--warm-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb-list {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); flex-wrap: wrap;
}
.breadcrumb-list a { color: var(--amber-dark); font-weight: 500; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

/* ============================================================
   JOBS PAGE (listing)
   ============================================================ */
.jobs-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: 44px 0; }
.filter-btn {
  padding: 8px 20px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-secondary); background: #fff; cursor: pointer;
  transition: all var(--trans-med);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--amber); color: var(--amber-dark);
  background: var(--amber-light);
}
.jobs-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   JOB DETAIL
   ============================================================ */
.job-detail-section { background: var(--warm-white); padding: 56px 0 88px; }
.job-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }
.job-detail-title {
  font-size: clamp(22px, 3.5vw, 30px); font-weight: 700;
  color: var(--text-primary); line-height: 1.3; margin-bottom: 20px;
  letter-spacing: -.01em;
}
.job-summary-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 0;
  margin-bottom: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.job-summary-box-head {
  background: linear-gradient(90deg, var(--amber-light), var(--amber-pale));
  padding: 14px 22px;
  font-size: 12px; font-weight: 700; color: var(--amber-dark);
  letter-spacing: .05em; text-transform: uppercase;
  border-bottom: 1px solid rgba(225,160,53,.2);
}
.job-summary-row { display: flex; gap: 16px; padding: 12px 22px; border-bottom: 1px solid var(--border-light); font-size: 14px; }
.job-summary-row:last-child { border-bottom: none; }
.job-summary-label { font-weight: 700; color: var(--navy); width: 80px; flex-shrink: 0; }
.job-summary-value { color: var(--text-primary); }
.job-section-title {
  font-size: 16px; font-weight: 700; color: var(--text-primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--amber);
  margin: 32px 0 16px;
  display: flex; align-items: center; gap: 10px;
}
.job-detail-content { font-size: 14px; color: var(--text-secondary); line-height: 1.9; }
.job-detail-content ul { padding-left: 0; }
.job-detail-content ul li {
  padding: 7px 0 7px 20px; position: relative;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.job-detail-content ul li:last-child { border-bottom: none; }
.job-detail-content ul li::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
}
.job-detail-content p { margin-bottom: 10px; }
.job-sticky-card {
  position: sticky; top: 88px;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.job-sticky-card-head {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 20px 24px;
}
.job-sticky-type { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.job-sticky-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.job-sticky-salary { font-size: 26px; font-weight: 900; color: var(--amber); font-family: 'Inter', sans-serif; letter-spacing: -.02em; }
.job-sticky-body { padding: 24px; }
.job-sticky-card .btn { margin-bottom: 10px; }
.job-sticky-divider { border: none; border-top: 1px solid var(--border-light); margin: 18px 0; }
.job-sticky-tel { font-size: 13px; color: var(--text-secondary); text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
.job-sticky-tel strong { color: var(--navy); font-size: 16px; }
.job-features { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.job-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.job-feature svg { color: var(--sage); flex-shrink: 0; }

/* ============================================================
   CULTURE PAGE
   ============================================================ */
.culture-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.culture-feature.reverse { direction: rtl; }
.culture-feature.reverse > * { direction: ltr; }
.culture-feature-img {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 340px; position: relative;
  box-shadow: var(--shadow-md);
}
.culture-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.culture-feature-label { display: block; margin-bottom: 10px; }
.culture-feature-title { font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: var(--text-primary); margin-bottom: 14px; line-height: 1.25; letter-spacing: -.01em; }
.culture-feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.9; }
.day-flow { max-width: 600px; margin: 0 auto; }
.day-flow-item { display: grid; grid-template-columns: 64px 20px 1fr; gap: 0 16px; position: relative; }
.day-flow-item:not(:last-child) .day-flow-connector { background: var(--border); }
.day-flow-time { font-size: 13px; font-weight: 700; color: var(--amber-dark); padding-top: 14px; text-align: right; font-family: 'Inter', sans-serif; }
.day-flow-line { display: flex; flex-direction: column; align-items: center; }
.day-flow-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--amber); margin-top: 18px; flex-shrink: 0; z-index: 1; box-shadow: 0 0 0 3px rgba(225,160,53,.2); }
.day-flow-connector { flex: 1; width: 2px; }
.day-flow-body { padding: 12px 0 28px; }
.day-flow-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.day-flow-desc { font-size: 13px; color: var(--text-secondary); }

/* ============================================================
   TRAINING PAGE
   ============================================================ */
.training-steps { display: flex; gap: 0; margin: 52px 0; position: relative; }
.training-steps::before {
  content: ''; position: absolute; top: 28px; left: 8.33%; right: 8.33%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-dark));
  z-index: 0; opacity: .3;
}
.training-step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 8px; }
.training-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 800;
  box-shadow: 0 4px 16px rgba(225,160,53,.35);
}
.training-step-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.training-step-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.7; }
.qualifications-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.qual-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-xs); text-align: center;
  transition: transform var(--trans-med), box-shadow var(--trans-med);
}
.qual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.qual-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-light), #fbefd6);
  color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.qual-name { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; line-height: 1.4; }
.qual-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.8; }
.support-box {
  background: linear-gradient(135deg, var(--amber-light), var(--amber-pale));
  border: 1px solid rgba(225,160,53,.25);
  border-radius: var(--radius-lg); padding: 32px 36px; margin-top: 52px;
  display: flex; align-items: flex-start; gap: 22px;
}
.support-icon { color: var(--amber-dark); flex-shrink: 0; margin-top: 2px; }
.support-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.support-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.85; }

/* ============================================================
   VOICE PAGE
   ============================================================ */
.voice-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-page-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--trans-med), box-shadow var(--trans-med);
}
.voice-page-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.voice-page-img {
  height: 200px; overflow: hidden; position: relative;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
}
.voice-page-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.voice-page-body { padding: 22px 24px; }
.voice-page-name { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.voice-page-attr { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.voice-page-quote {
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  line-height: 1.7; padding-left: 12px;
  border-left: 3px solid var(--amber);
}

/* ============================================================
   FORM
   ============================================================ */
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-group { margin-bottom: 28px; }
.form-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px;
}
.req { display: inline-block; background: var(--amber); color: var(--navy); font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 3px; letter-spacing: .03em; }
.opt { display: inline-block; background: var(--warm-gray); color: var(--text-muted); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 3px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px; color: var(--text-primary); background: #fff;
  transition: border-color var(--trans-med), box-shadow var(--trans-med);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(225,160,53,.12);
}
.form-textarea { resize: vertical; min-height: 150px; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.privacy-box {
  background: var(--warm-white); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 18px;
  font-size: 13px; color: var(--text-secondary); line-height: 1.85;
  max-height: 120px; overflow-y: auto;
}
.privacy-agree {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 36px;
}
.privacy-agree input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--amber); flex-shrink: 0; }
.form-submit { text-align: center; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; }

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-wrap { text-align: center; padding: 80px 0; }
.thanks-icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(225,160,53,.4);
}
.thanks-title { font-size: clamp(22px, 4vw, 32px); font-weight: 700; color: var(--text-primary); margin-bottom: 16px; letter-spacing: -.01em; }
.thanks-sub { font-size: 15px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 44px; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .08s; }
.fade-up-d2 { transition-delay: .16s; }
.fade-up-d3 { transition-delay: .24s; }
.fade-up-d4 { transition-delay: .32s; }

/* voice.htmlインタビューグリッド */
.voice-interview {
  background: var(--warm-white); border-radius: var(--radius-lg);
  padding: 40px; margin-top: 24px;
  display: grid; grid-template-columns: 180px 1fr;
  gap: 40px; align-items: start;
}
.voice-interview + .voice-interview { margin-top: 24px; }

/* ============================================================
   RESPONSIVE — Large Tablet (1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .job-detail-layout { grid-template-columns: 1fr 300px; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — Tablet (1023px)
   ============================================================ */
@media (max-width: 1023px) {
  /* Header */
  .nav-links, .header-phone { display: none; }
  .header-right .btn { display: none; }
  .hamburger { display: flex; }
  .header-inner { gap: 16px; }

  /* Layout */
  .section { padding: 80px 0; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); border-radius: var(--radius-md); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,.07); }

  /* Grids */
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-page-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
  .qualifications-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-page-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Job detail */
  .job-detail-layout { grid-template-columns: 1fr; }
  .job-sticky-card { position: static; }

  /* Culture */
  .culture-feature { grid-template-columns: 1fr; gap: 32px; }
  .culture-feature.reverse { direction: ltr; }
  .culture-feature-img { height: 260px; }

  /* Training */
  .training-steps { flex-direction: column; align-items: flex-start; gap: 20px; }
  .training-steps::before { display: none; }
  .training-step { display: flex; align-items: flex-start; gap: 16px; text-align: left; flex: none; width: 100%; }
  .training-step-num { margin: 0; flex-shrink: 0; }

  /* Voice interview */
  .voice-interview { grid-template-columns: 140px 1fr; gap: 28px; padding: 28px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile (767px)
   ============================================================ */
@media (max-width: 767px) {
  /* Layout */
  .section { padding: 64px 0; }
  .page-hero { padding: 96px 0 48px; }
  .container { padding: 0 20px; }

  /* Section text */
  .section-sub { font-size: 13px; }

  /* Grids → single column */
  .jobs-grid,
  .jobs-page-grid,
  .whyus-grid,
  .qualifications-grid,
  .voice-page-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta { padding: 64px 0; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px 12px; }
  .stat-value { font-size: 40px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-salary { display: block; font-size: 12px; }
  .hero-scroll { display: none; }

  /* Footer CTA buttons */
  .footer-cta-btns { flex-direction: column; align-items: stretch; }
  .footer-cta-btns .btn { width: 100%; max-width: 320px; margin: 0 auto; justify-content: center; }

  /* Culture */
  .culture-banner { min-height: auto; padding: 56px 0; }
  .culture-feature { margin-bottom: 48px; }
  .culture-feature-img { height: 220px; }

  /* Cards */
  .job-card-body { padding: 20px 20px 16px; }
  .job-card-footer { padding: 12px 20px; }
  .job-card-img { height: 180px; }

  /* Why us */
  .whyus-num { font-size: 64px; }

  /* Voice card */
  .voice-card::before { font-size: 52px; top: 10px; right: 14px; }
  .voice-card { padding: 22px 20px 20px; }

  /* Voice interview: stack vertically */
  .voice-interview { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
  .voice-interview-profile { display: flex; align-items: center; gap: 16px; }
  .voice-interview-profile img { width: 72px; height: 72px; border-radius: 50%; }
  .voice-interview-profile .voice-interview-name { font-size: 16px; }

  /* Support box */
  .support-box { flex-direction: column; gap: 14px; padding: 22px 20px; }

  /* Training qualifications grid → 1 col */
  .qualifications-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-q { padding: 16px 16px; font-size: 14px; }
  .faq-a { padding: 0 16px 16px; padding-top: 14px; }

  /* Job detail */
  .job-detail-section { padding: 40px 0 64px; }
  .job-summary-row { flex-direction: column; gap: 4px; }
  .job-summary-label { width: auto; }

  /* Form */
  .form-wrap { padding: 0; }
  .thanks-wrap { padding: 56px 0; }

  /* Flow */
  .flow-item { gap: 14px; }
  .flow-num { width: 34px; height: 34px; font-size: 11px; flex-shrink: 0; }
  .flow-item:not(:last-child)::after { left: 16px; }

  /* Day flow */
  .day-flow-item { grid-template-columns: 52px 16px 1fr; gap: 0 10px; }

  /* Breadcrumb */
  .breadcrumb-list { gap: 6px; font-size: 11px; }
}

/* ============================================================
   RESPONSIVE — Small Mobile (479px)
   ============================================================ */
@media (max-width: 479px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 28px; letter-spacing: -.02em; }
  .hero-eyebrow { font-size: 10px; }
  .hero-tags { gap: 6px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-value { font-size: 36px; }
  .stat-item { padding: 20px 8px; }
  .page-hero-title { font-size: 24px; }
  .page-hero { padding: 88px 0 40px; }
  .section { padding: 52px 0; }
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .faq-q-marker, .faq-a-marker { width: 20px; height: 20px; font-size: 10px; }
  .footer-cta-title { font-size: 20px; }
  .voice-page-grid { grid-template-columns: 1fr; }
  /* Stats eyebrow hidden on very small */
  .stats-eyebrow { font-size: 13px; margin-bottom: 36px; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.d-flex { display: flex; }
.gap-12 { gap: 12px; }
.items-center { align-items: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }
