:root {
  --bg: #fbfdff;
  --surface: #ffffff;
  --surface-soft: #f2f8fb;
  --ink: #213247;
  --muted: #5d6f84;
  --line: #dfeaf0;
  --teal: #37a7ad;
  --teal-dark: #16838b;
  --coral: #7ecdd1;
  --gold: #75bdc3;
  --navy: #16477c;
  --navy-deep: #103b6f;
  --shadow: 0 18px 55px rgba(22, 71, 124, 0.12);
  --radius: 8px;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #eef9fc 0, #fbfdff 520px, #ffffff 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(251, 253, 255, 0.9);
  border-bottom: 1px solid rgba(223, 234, 240, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 156px;
}

.brand-logo {
  width: 156px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(55, 167, 173, 0.22);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 20px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(28px, 3.5vw, 48px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 56px;
  padding-bottom: 70px;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 680px;
}

.hero::before {
  position: absolute;
  inset: 28px 20px auto;
  z-index: -1;
  height: 82%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(55, 167, 173, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 248, 252, 0.72));
  content: "";
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 14px;
  padding: 0 14px;
  border: 1px solid #bfe8ee;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 4.1vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--navy);
  word-break: keep-all;
  overflow-wrap: normal;
}

.sp-only {
  display: none;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--navy);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--navy);
}

.hero-lead,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.hero-lead {
  max-width: 620px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  box-shadow: 0 14px 32px rgba(55, 167, 173, 0.22);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--navy-deep), var(--teal-dark));
}

.button-primary span {
  color: #fff;
}

.button-ghost,
.button-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
}

.full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  padding: 7px 12px;
  border: 1px solid #cfe8ef;
  border-radius: 999px;
  background: #fff;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 0;
}

.hero-stats div {
  padding: 14px 12px;
  border: 1px solid #cfe8ef;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
  box-shadow: 0 8px 22px rgba(22, 71, 124, 0.06);
}

.hero-stats dt,
.hero-stats dd {
  margin: 0;
}

.hero-stats dt {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.hero-stats dd {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border: 1px solid #e2eef4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.floating-panel {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(223, 234, 240, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(22, 71, 124, 0.12);
  backdrop-filter: blur(12px);
}

.panel-savings {
  right: -12px;
  bottom: 34px;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 18px;
}

.panel-savings span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.panel-savings strong {
  color: var(--teal-dark);
  font-size: 24px;
}

.panel-check {
  left: -10px;
  top: 24px;
  padding: 12px 14px;
  color: var(--navy);
  font-weight: 900;
}

.panel-check svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: var(--max);
  margin: -24px auto 0;
  padding: 0 20px 34px;
  flex-wrap: wrap;
}

.trust-band strong {
  margin-right: 4px;
  color: var(--navy);
  font-size: 14px;
}

.trust-band span {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.problem {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding-top: 76px;
}

.problem-copy p {
  color: var(--muted);
  font-size: 17px;
}

.problem-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(22, 71, 124, 0.05);
}

.problem-list li::before {
  position: absolute;
  top: 17px;
  left: 17px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fff 0 28%, var(--teal) 31%);
  content: "";
}

.section-illustration,
.wide-illustration {
  margin: 0;
}

.section-illustration img,
.wide-illustration img,
.contact-illustration {
  width: 100%;
  height: auto;
  border: 1px solid #e2eef4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.features {
  position: relative;
}

.features::before {
  display: block;
  width: min(840px, calc(100vw - 40px));
  margin: 0 auto 28px;
  padding: 12px 18px;
  border: 1px solid #cfe8ef;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  content: "出張記録から精算・規程管理までワンストップ";
}

.feature-grid,
.voice-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.voice-card,
.price-card,
.simulator,
.comparison,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(22, 71, 124, 0.05);
}

.feature-card {
  padding: 24px;
  border-top: 4px solid #cfe8ef;
}

.feature-card:nth-child(1),
.feature-card:nth-child(3),
.feature-card:nth-child(5) {
  border-top-color: var(--teal);
}

.feature-card p,
.voice-card figcaption,
.step-list p,
.comparison p,
.note,
.subsidy,
.faq-list p,
.footer {
  color: var(--muted);
}

.icon-badge {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius);
  background: #edf9fb;
  color: var(--teal-dark);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.savings,
.proof,
.pricing {
  max-width: none;
  background: var(--surface-soft);
}

.savings {
  background: linear-gradient(180deg, #f2f8fb, #ffffff 46%, #f2f8fb);
}

.savings > *,
.proof > *,
.pricing > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.simulator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.simulator,
.comparison {
  padding: 26px;
}

.simulator label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

/* 2026-05-29: ラベル文字とアスタリスクを同じ行に保ち、フォームコントロールだけ次行へ折り返す。
   "お名前<span>*</span><input>" の3グリッド縦並びだったのを修正。
   radio-row / consent / honeypot は専用ルールで上書き済みなので影響しない。 */
.contact-form label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  row-gap: 8px;
  column-gap: 4px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form label > input:not([type="checkbox"]):not([type="radio"]),
.contact-form label > select,
.contact-form label > textarea {
  flex-basis: 100%;
}

.simulator label + label {
  margin-top: 22px;
}

.stepper {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.stepper button {
  min-height: 52px;
  border: 0;
  background: #eaf8fa;
  color: var(--teal-dark);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

.stepper output {
  display: grid;
  min-height: 52px;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 52px;
  padding: 0 14px;
}

input[type="range"] {
  min-height: 28px;
  padding: 0;
  accent-color: var(--teal);
}

textarea {
  resize: vertical;
  padding: 13px 14px;
}

.result-box {
  position: relative;
  overflow: hidden;
  margin: 24px 0 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: #f0fbfc;
  border: 1px solid #ccebef;
}

.result-box::after {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(55, 167, 173, 0.16);
  content: "";
}

.result-box span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.result-box strong {
  display: block;
  margin: 6px 0 2px;
  color: var(--navy);
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.05;
}

.comparison {
  display: grid;
  align-content: center;
  gap: 22px;
}

.comparison-row {
  display: grid;
  gap: 8px;
}

.comparison-row span {
  color: var(--muted);
  font-weight: 800;
}

.comparison-row strong {
  font-size: 30px;
  color: var(--navy);
}

.bar {
  height: 24px;
  border-radius: 999px;
}

.bar.before {
  width: 100%;
  background: #bed8ec;
}

.bar.after {
  width: 88%;
  background: var(--teal);
}

.voice-grid {
  grid-template-columns: repeat(3, 1fr);
}

.voice-card {
  margin: 0;
  padding: 24px;
}

.voice-card blockquote {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.65;
}

.steps {
  padding-top: 86px;
}

.wide-illustration {
  max-width: 920px;
  margin: -8px auto 28px;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  position: relative;
  padding: 24px 24px 20px;
  border-top: 3px solid var(--teal);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(22, 71, 124, 0.05);
}

.step-list span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: #edf9fb;
  color: var(--teal-dark);
  font-weight: 900;
}

.step-list strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(55, 167, 173, 0.45);
  box-shadow: 0 18px 45px rgba(55, 167, 173, 0.14);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf9fb;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.target {
  color: var(--muted);
  font-weight: 800;
}

.price {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 16px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 110px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.subsidy {
  margin-top: 20px;
  text-align: center;
  font-weight: 800;
}

.faq-list {
  display: grid;
  max-width: 850px;
  margin: 0 auto;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  min-height: 58px;
  padding: 16px 20px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 96px;
}

.contact-illustration {
  margin-top: 24px;
}

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

.contact-form span {
  color: #c15b42;
}

.wide,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 20px 44px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

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

.footer-links a {
  color: inherit;
  opacity: 0.72;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .problem,
  .simulator-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(42px, 8vw, 58px);
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-visual {
    max-width: 680px;
    margin: 0 auto;
  }

  .problem {
    padding-top: 62px;
  }

  .section-illustration {
    max-width: 640px;
    margin: 0 auto;
  }

  .contact-copy {
    position: static;
  }

  .feature-grid,
  .voice-grid,
  .step-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-panel {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    min-width: 126px;
  }

  .brand-logo {
    width: 126px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .section {
    padding: 68px 16px;
  }

  h1 {
    font-size: 39px;
    line-height: 1.16;
  }

  .sp-only {
    display: block;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof span {
    font-size: 12px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .trust-band {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-left: 16px;
    padding-right: 16px;
  }

  .trust-band span {
    white-space: nowrap;
  }

  .feature-grid,
  .voice-grid,
  .step-list,
  .pricing-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .price-card ul {
    min-height: auto;
  }

  .wide,
  .contact-form button,
  .form-status {
    grid-column: auto;
  }

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

/* --- Legal pages (privacy / terms / company) --- */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 96px;
  color: var(--ink);
  line-height: 1.85;
}

.legal h1 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.legal .lead {
  color: #506075;
  margin-bottom: 24px;
  font-size: 15px;
}

.legal .updated {
  font-size: 13px;
  color: #6b7a8b;
  margin: 0 0 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal h2 {
  font-size: 20px;
  color: var(--navy);
  margin: 48px 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  letter-spacing: 0.01em;
}

.legal h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 24px 0 8px;
}

.legal p,
.legal ul,
.legal ol {
  margin: 0 0 16px;
  font-size: 15px;
}

.legal ul,
.legal ol {
  padding-left: 24px;
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal a:hover,
.legal a:focus-visible {
  color: var(--navy);
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.legal th,
.legal td {
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.legal tr:first-child th,
.legal tr:first-child td {
  border-top: none;
}

.legal th {
  background: #f4f8fb;
  color: var(--navy);
  font-weight: 700;
  width: 34%;
  white-space: nowrap;
}

.legal .todo {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 4px;
  background: #fff4d6;
  color: #8a6a14;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid #f1d77a;
}

@media (max-width: 640px) {
  .legal {
    padding: 96px 18px 72px;
  }

  .legal table,
  .legal th,
  .legal td {
    display: block;
    width: 100%;
  }

  .legal th {
    border-bottom: none;
    padding-bottom: 4px;
    white-space: normal;
  }

  .legal td {
    border-top: none;
    padding-top: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .legal tr:last-child td {
    border-bottom: none;
  }
}

/* =========================================================================
   2026-05-29 問い合わせフォーム改善
   詳細設計: Obsidian [[LP問い合わせフォーム改善設計]]
   追加要素: fieldset/legend, .radio-row, select, .form-note, .consent
   ========================================================================= */
.contact-form fieldset {
  grid-column: 1 / -1;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 12px 16px 14px;
  margin: 0;
  background: rgba(248, 250, 252, 0.5);
}

.contact-form legend {
  font-size: 13px;
  font-weight: 700;
  padding: 0 6px;
}

.contact-form .radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 6px;
}

.contact-form .radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.contact-form .radio-row input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.contact-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.contact-form .form-note {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

.contact-form .consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
  font-weight: 500;
}

.contact-form .consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.contact-form .consent a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 720px) {
  .contact-form .radio-row { gap: 10px 14px; }
  .contact-form fieldset { padding: 10px 12px 12px; }
}
