/* ===========================
   Indeed求人AI診断 LP スタイル
=========================== */

:root {
  --primary: #0c6cf2;
  --primary-dark: #0856c7;
  --primary-light: #e8f1ff;
  --accent: #ff6b35;
  --accent-dark: #e85722;
  --ink: #1a2233;
  --ink-sub: #4a5568;
  --ink-mute: #8795a8;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-deep: #0c1a33;
  --green: #16a34a;
  --red: #e74c3c;
  --yellow: #f1c40f;
  --shadow-sm: 0 2px 6px rgba(12, 26, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(12, 26, 51, 0.08);
  --shadow-lg: 0 20px 48px rgba(12, 26, 51, 0.12);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }
.underline { border-bottom: 3px solid var(--accent); padding-bottom: 2px; }
.muted { color: var(--ink-mute); }
.muted-note { color: var(--ink-mute); font-size: 0.88em; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none !important;
  line-height: 1.3;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 14px rgba(255, 107, 53, 0.3); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4); }

.btn-outline { background: #fff; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); }

.btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none !important;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.global-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.global-nav a {
  color: var(--ink-sub);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.global-nav a:hover { color: var(--primary); }

.header-cta { white-space: nowrap; }

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

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #f0f6ff 0%, #fff 55%, #fff7f3 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(12,108,242,0.08), transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-tag {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  margin: 0 0 20px;
}
.hero-title {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 900;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-size: 16px;
  color: var(--ink-sub);
  margin: 0 0 32px;
  line-height: 1.9;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.hero-badges li {
  font-size: 13px;
  color: var(--ink-sub);
  font-weight: 500;
}
.hero-badges i { color: var(--green); margin-right: 4px; }

/* Mock report */
.mock-report {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.mock-report-head {
  background: #f1f4f9;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.mock-dot.red { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green { background: #28c840; }
.mock-report-title { margin-left: 10px; font-size: 12px; color: var(--ink-mute); font-weight: 500; }

.mock-report-body { padding: 24px; }

.mock-score {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 20px;
}
.score-circle {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0% 58%, #f1f4f9 58% 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.score-circle::before {
  content: "";
  position: absolute;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
}
.score-num { position: relative; font-size: 28px; font-weight: 900; color: var(--accent); }
.score-unit { position: relative; font-size: 11px; color: var(--ink-mute); margin-left: 2px; }
.score-title { margin: 0; font-size: 13px; color: var(--ink-mute); font-weight: 500; }
.score-sub { margin: 4px 0 0; font-size: 16px; color: var(--accent); font-weight: 700; }

.mock-items { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.mock-items li { display: grid; grid-template-columns: 110px 1fr 50px; align-items: center; gap: 10px; font-size: 12px; }
.item-label { color: var(--ink-sub); font-weight: 500; }
.bar { background: #eef2f7; height: 8px; border-radius: 999px; overflow: hidden; }
.bar-fill { background: linear-gradient(90deg, var(--accent), var(--accent-dark)); height: 100%; display: block; border-radius: 999px; }
.item-score { text-align: right; font-weight: 700; color: var(--ink); font-size: 12px; }

.mock-insight {
  margin-top: 18px;
  padding: 12px 14px;
  background: #fff7f3;
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink-sub);
}
.mock-insight i { color: var(--accent); margin-right: 4px; }

@media (max-width: 900px) {
  .hero { padding: 48px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 28px; }
  .hero-lead { font-size: 15px; }
}

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section:nth-child(even) { background: var(--bg-soft); }

.section-kicker {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.section-lead {
  text-align: center;
  color: var(--ink-sub);
  max-width: 740px;
  margin: 0 auto 48px;
  font-size: 15px;
}

@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 24px; }
}

/* ===== Problem ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.problem-card i { color: var(--accent); font-size: 24px; margin-bottom: 12px; }
.problem-card h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.problem-card p { margin: 0; font-size: 14px; color: var(--ink-sub); line-height: 1.7; }

@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .problem-grid { grid-template-columns: 1fr; } }

/* ===== Mistakes ===== */
.mistakes-list {
  max-width: 860px;
  margin: 40px auto 0;
  display: grid;
  gap: 20px;
}
.mistake-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  align-items: start;
}
.mistake-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.mistake-body h3 { margin: 0 0 8px; font-size: 18px; }
.mistake-body p { margin: 0; color: var(--ink-sub); font-size: 14px; }

@media (max-width: 600px) {
  .mistake-item { grid-template-columns: 50px 1fr; gap: 16px; padding: 20px; }
  .mistake-num { font-size: 24px; }
  .mistake-body h3 { font-size: 16px; }
}

/* ===== Observation grid ===== */
.observation-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.obs-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.2s;
}
.obs-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.obs-card i {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  margin-bottom: 10px;
  font-size: 16px;
}
.obs-card h3 { margin: 0 0 4px; font-size: 14px; font-weight: 700; }
.obs-card p { margin: 0; font-size: 12px; color: var(--ink-mute); }

@media (max-width: 900px) { .observation-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .observation-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Before / After ===== */
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 40px;
}
.ba-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.ba-col.ba-before { border-top: 4px solid var(--ink-mute); }
.ba-col.ba-after { border-top: 4px solid var(--green); background: #f6fdf7; }
.ba-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  align-self: flex-start;
}
.ba-label-before { background: #edf0f5; color: var(--ink-mute); }
.ba-label-after { background: #dcf5e4; color: var(--green); }
.ba-col h3 {
  font-size: 17px;
  margin: 0 0 16px;
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.ba-body p { font-size: 13.5px; color: var(--ink-sub); margin: 0 0 12px; line-height: 1.8; }
.ba-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 24px;
}
.ba-note { text-align: center; margin-top: 20px; font-size: 12px; color: var(--ink-mute); }

@media (max-width: 900px) {
  .ba-wrap { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); }
}

/* ===== Plans ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s;
}
.plan-card:hover { box-shadow: var(--shadow-md); }
.plan-popular {
  border: 2px solid var(--accent);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.18);
  transform: translateY(-8px);
}
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-head { text-align: center; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px dashed var(--border); }
.plan-head h3 { margin: 0 0 12px; font-size: 17px; font-weight: 700; line-height: 1.4; }
.plan-tier { display: inline-block; background: var(--primary-light); color: var(--primary); padding: 2px 10px; border-radius: 999px; font-size: 12px; }
.plan-price { margin: 10px 0 4px; }
.price-num { font-size: 32px; font-weight: 900; color: var(--ink); }
.price-unit { font-size: 13px; color: var(--ink-sub); margin-left: 3px; }
.plan-sub { margin: 0; font-size: 12px; color: var(--ink-mute); }

.plan-feats { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; display: grid; gap: 10px; }
.plan-feats li { font-size: 13px; color: var(--ink-sub); display: flex; gap: 8px; align-items: flex-start; line-height: 1.6; }
.plan-feats li i { color: var(--green); margin-top: 4px; flex-shrink: 0; }
.plan-feats li.muted { color: var(--ink-mute); }
.plan-feats li.muted i { color: var(--ink-mute); }

.plan-note-small { margin: 10px 0 0; font-size: 11px; color: var(--ink-mute); text-align: center; }

.plans-foot-note {
  max-width: 780px;
  margin: 40px auto 0;
  padding: 16px 20px;
  background: #fff8eb;
  border: 1px solid #f5d58f;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--ink-sub);
  text-align: center;
}
.plans-foot-note i { color: #d79a00; margin-right: 4px; }

@media (max-width: 1100px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } .plan-popular { transform: none; } }
@media (max-width: 600px) { .plans-grid { grid-template-columns: 1fr; } }

/* ===== Flow ===== */
.flow-steps {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 16px;
}
.flow-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  align-items: center;
}
.flow-num {
  background: var(--primary);
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 900;
}
.flow-body h3 { margin: 0 0 4px; font-size: 16px; }
.flow-body p { margin: 0; font-size: 13.5px; color: var(--ink-sub); }

/* ===== Related (TERRAST TV) ===== */
.section-related {
  background: linear-gradient(135deg, #f6f8fc, #fff);
}
.section-related .section-lead {
  background: #fff;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  line-height: 2;
}

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 54px;
  font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 12px;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq-body { padding: 0 22px 18px; color: var(--ink-sub); font-size: 14px; }

/* ===== CTA main ===== */
.cta-main {
  background: linear-gradient(135deg, #0c1a33 0%, #1e3a6b 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-main::before {
  content: ""; position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,53,0.15), transparent 70%);
  border-radius: 50%;
}
.cta-main h2 {
  position: relative;
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 16px;
  line-height: 1.5;
}
.cta-main p { position: relative; opacity: 0.9; margin: 0 0 32px; font-size: 16px; }
.cta-buttons { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-sub {
  position: relative;
  margin-top: 24px !important;
  font-size: 12px !important;
  opacity: 0.8;
}
.cta-sub a { color: #fff; text-decoration: underline; }
.cta-sub i { margin-right: 4px; }

@media (max-width: 600px) { .cta-main h2 { font-size: 22px; } }

/* ===== Disclaimer ===== */
.section-disclaimer { background: #fffaf3; }
.disclaimer-title { font-size: 18px; margin: 0 0 20px; color: #d79a00; }
.disclaimer-title i { margin-right: 6px; }
.disclaimer-list {
  max-width: 860px; margin: 0 auto; padding-left: 20px;
  color: var(--ink-sub); font-size: 14px; line-height: 1.9;
}
.disclaimer-list li { margin-bottom: 8px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-deep);
  color: #cbd5e1;
  padding: 60px 0 0;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { font-weight: 900; color: #fff; font-size: 17px; margin: 0 0 12px; }
.footer-company { margin: 0; font-size: 13px; line-height: 1.9; color: #9aa7b8; }
.footer-heading { font-weight: 700; color: #fff; font-size: 14px; margin: 0 0 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a { color: #cbd5e1; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  text-align: center;
  color: #7a8aa0;
  font-size: 12px;
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; }
}

/* ===== Forms (for contact / optout pages) ===== */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.form-group label .req { color: var(--red); font-size: 11px; margin-left: 4px; }
.form-group label .opt { color: var(--ink-mute); font-size: 11px; margin-left: 4px; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12,108,242,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-sub); }
.form-checkbox input { margin-top: 4px; }

.form-note {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink-sub);
  margin-bottom: 20px;
  line-height: 1.8;
}
.form-note i { color: var(--primary); margin-right: 4px; }

.form-success {
  display: none;
  background: #dcf5e4;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success i { color: var(--green); font-size: 32px; margin-bottom: 8px; }
.form-success h3 { margin: 0 0 8px; color: var(--green); }

.form-error {
  display: none;
  background: #fef0ef;
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 14px;
}
.form-error.show { display: block; }

.page-header {
  padding: 60px 0 40px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  text-align: center;
  font-size: 30px;
  margin: 0 0 10px;
}
.page-header p {
  text-align: center;
  color: var(--ink-sub);
  margin: 0;
}

/* Tokusho (特商法) table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 860px;
  font-size: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table th, .info-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.8;
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table th {
  background: var(--bg-soft);
  width: 220px;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 700px) {
  .info-table th, .info-table td { display: block; width: 100%; padding: 12px 16px; }
  .info-table th { border-bottom: none; padding-bottom: 4px; }
}
