:root {
  --surface: #f9f9ff;
  --surface-muted: #f1f3ff;
  --surface-blue: #e8eeff;
  --surface-high: #dde2f3;
  --white: #ffffff;
  --navy: #161c27;
  --navy-soft: #424752;
  --muted: #5f6673;
  --blue: #0056b3;
  --blue-dark: #003f87;
  --blue-light: #bbd0ff;
  --line: #dfe4ef;
  --shadow: 0 4px 20px rgba(0, 45, 100, 0.06);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--navy); background: var(--surface); font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Meiryo, sans-serif; font-size: 16px; line-height: 1.8; }
img { display: block; max-width: 100%; height: auto; }
picture { display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 100; min-height: 64px; border-bottom: 1px solid #e2e8f0; background: rgba(249, 249, 255, .96); backdrop-filter: blur(10px); }
.header-inner { display: flex; align-items: center; min-height: 64px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--blue-dark); font-size: 15px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.brand-mark { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 7px; color: var(--white); background: var(--blue); font-size: 15px; line-height: 1; }
.header-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.header-nav a { color: var(--navy-soft); font-size: 13px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.header-nav a:hover, .header-nav a:focus-visible { color: var(--blue); }
.header-cta, .mobile-menu-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 16px; border-radius: 7px; color: var(--white); background: var(--blue); font-size: 13px; font-weight: 700; text-decoration: none; }
.header-cta { flex: 0 0 auto; }
.header-cta:hover, .header-cta:focus-visible, .mobile-menu-cta:hover, .mobile-menu-cta:focus-visible { background: var(--blue-dark); }
.mobile-menu { display: none; position: relative; margin-left: auto; }
.mobile-menu summary { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 7px; color: var(--blue-dark); font-size: 24px; line-height: 1; cursor: pointer; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary:hover, .mobile-menu summary:focus-visible { background: var(--surface-blue); }
.mobile-menu-panel { position: absolute; top: 48px; right: 0; display: grid; min-width: 220px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); box-shadow: 0 10px 30px rgba(0, 45, 100, .12); }
.mobile-menu-panel a { padding: 10px 12px; color: var(--navy-soft); font-size: 14px; font-weight: 500; text-decoration: none; }
.mobile-menu-panel a:hover, .mobile-menu-panel a:focus-visible { background: var(--surface-muted); color: var(--blue); }
.mobile-menu-panel .mobile-menu-cta { margin-top: 6px; color: var(--white); text-align: center; }

.hero-section { padding: 72px 0 80px; background: var(--surface); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: 72px; }
.hero-eyebrow { display: inline-block; margin: 0 0 18px; padding: 3px 10px; border-radius: 999px; color: var(--blue-dark); background: var(--surface-blue); font-size: 12px; font-weight: 700; line-height: 1.6; }
.hero-copy h1 { margin: 0 0 22px; color: var(--navy); font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; line-height: 1.45; letter-spacing: -.02em; }
.hero-lead { margin: 0; color: var(--navy-soft); font-size: 16px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-width: 180px; min-height: 46px; padding: 0 18px; border: 1px solid transparent; border-radius: 8px; font-size: 14px; font-weight: 700; line-height: 1.2; text-align: center; text-decoration: none; transition: background-color .2s, border-color .2s, color .2s, transform .2s; }
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.button.primary { color: var(--white); background: var(--blue); }
.button.primary:hover, .button.primary:focus-visible { background: var(--blue-dark); }
.button.secondary { border-color: var(--blue); color: var(--blue); background: transparent; }
.button.secondary:hover, .button.secondary:focus-visible { color: var(--blue-dark); background: var(--surface-blue); }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.hero-points li { display: flex; flex-direction: column; min-width: 0; padding: 12px 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.hero-points strong { color: var(--blue-dark); font-size: 13px; line-height: 1.5; }
.hero-points span { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.hero-screen { margin: 0; }
.hero-screen img { width: 100%; border: 1px solid #e5e9f1; border-radius: 12px; background: var(--white); box-shadow: 0 8px 26px rgba(0, 45, 100, .10); }
.hero-screen figcaption { margin-top: 8px; color: var(--muted); font-size: 12px; text-align: right; }

.section { padding: 96px 0; }
.problems-section, .faq-section { background: var(--surface-muted); }
.section-heading { margin-bottom: 40px; }
.section-heading.centered { text-align: center; }
.section-label, .feature-kicker { margin: 0 0 8px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(24px, 3vw, 32px); font-weight: 700; line-height: 1.5; letter-spacing: -.01em; }
.section-heading > p:last-child { max-width: 640px; margin: 14px auto 0; color: var(--muted); font-size: 15px; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.problem-card { min-height: 210px; padding: 24px 20px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); box-shadow: var(--shadow); }
.line-icon { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 16px; color: var(--blue); font-size: 27px; line-height: 1; }
.problem-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 16px; line-height: 1.6; }
.problem-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.feature-row { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; gap: 72px; padding: 8px 0 80px; }
.feature-row:last-child { padding-bottom: 0; }
.feature-row-reverse { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
.feature-row-reverse .feature-copy { order: 2; }
.feature-row-reverse .feature-screen { order: 1; }
.feature-copy h3 { margin: 0 0 16px; color: var(--navy); font-size: 24px; line-height: 1.5; }
.feature-copy > p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.feature-screen { margin: 0; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
.feature-screen img { width: 100%; border-radius: 7px; }

.support-section { background: var(--surface-blue); }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.support-card { padding: 24px 20px; border: 1px solid #cfd9ed; border-radius: 10px; background: rgba(255, 255, 255, .78); }
.support-number { display: block; margin-bottom: 12px; color: var(--blue); font-size: 14px; font-weight: 700; }
.support-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 17px; }
.support-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.support-image-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 22px; }
.support-image-card { margin: 0; overflow: hidden; border: 1px solid #cfd9ed; border-radius: 10px; background: rgba(255, 255, 255, .82); box-shadow: var(--shadow); }
.support-image-card picture { padding: 12px 12px 0; background: var(--white); }
.support-image-card img { width: 100%; border: 1px solid var(--line); border-radius: 7px; }
.support-image-card figcaption { display: flex; flex-direction: column; gap: 3px; padding: 14px 16px 16px; }
.support-image-card figcaption strong { color: var(--navy); font-size: 14px; }
.support-image-card figcaption span { color: var(--muted); font-size: 12px; line-height: 1.7; }

.pricing-section { background: var(--surface); }
.pricing-card { display: grid; grid-template-columns: .9fr 1.1fr; max-width: 880px; margin: 0 auto; overflow: hidden; border: 1px solid #cbd7e9; border-top: 4px solid var(--blue); border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
.pricing-main { padding: 34px 36px; border-right: 1px solid var(--line); }
.pricing-tag { margin: 0 0 14px; color: var(--blue); font-size: 13px; font-weight: 700; }
.pricing-amount { display: flex; align-items: baseline; color: var(--blue-dark); line-height: 1; }
.pricing-amount strong { font-size: clamp(48px, 6vw, 68px); letter-spacing: -.05em; }
.pricing-amount span { margin-left: 8px; font-size: 22px; font-weight: 700; }
.pricing-regular { margin: 16px 0 0; color: var(--muted); font-size: 14px; }
.pricing-details { display: flex; flex-direction: column; justify-content: center; padding: 30px 36px; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; margin: 0 0 24px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 22px; color: var(--navy-soft); font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.pricing-details .button { align-self: flex-start; }
.pricing-notes { max-width: 880px; margin: 22px auto 0; padding: 18px 22px; border-left: 3px solid var(--blue); background: var(--surface-muted); }
.pricing-notes p { margin: 4px 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.steps-section { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.step-card { position: relative; min-height: 210px; padding: 26px 22px 22px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); box-shadow: var(--shadow); }
.step-number { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 18px; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 16px; font-weight: 700; }
.step-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 17px; line-height: 1.55; }
.step-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.faq-container { max-width: 850px; }
.faq-list details { margin-bottom: 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.faq-list summary { position: relative; padding: 16px 48px 16px 20px; color: var(--navy); font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 20px; color: var(--blue); font-size: 20px; font-weight: 400; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list summary:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.faq-list details p { margin: 0; padding: 0 20px 18px; color: var(--muted); font-size: 14px; line-height: 1.8; }

.final-cta { padding: 88px 0; color: var(--white); background: var(--blue-dark); text-align: center; }
.final-cta-inner { max-width: 760px; }
.final-cta .section-label { color: var(--blue-light); }
.final-cta h2 { margin: 0 0 14px; color: var(--white); font-size: clamp(24px, 3vw, 32px); line-height: 1.5; }
.final-cta p:not(.section-label) { margin: 0; color: #d7e2ff; font-size: 15px; }
.final-cta .button { margin-top: 26px; color: var(--blue-dark); background: var(--white); }
.final-cta .button:hover, .final-cta .button:focus-visible { color: var(--white); background: var(--blue); }

.back-to-top { display: grid; place-items: center; position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--white); background: rgba(0, 63, 135, .92); font-size: 15px; text-decoration: none; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s, transform .2s, background-color .2s; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover, .back-to-top:focus-visible { background: var(--blue); }

.site-footer { padding: 42px 0 28px; border-top: 1px solid #e2e8f0; color: var(--muted); background: var(--white); text-align: center; }
.footer-inner > p { margin: 12px 0 0; font-size: 13px; }
.footer-brand { justify-content: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 20px 0 16px; }
.footer-links a { color: var(--muted); font-size: 12px; text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.site-footer small { font-size: 11px; }

/* Contact input, confirmation and result pages */
.contact-form-page { min-height: 100vh; background: var(--surface-muted); }
.contact-form-page .contact-form-section { padding: 52px 0 72px; }
.contact-form-heading { margin: 0 0 22px; color: var(--navy); font-size: clamp(28px, 4vw, 40px); line-height: 1.4; text-align: center; }
.contact-form { max-width: 900px; margin: 0 auto; padding: 32px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; color: var(--navy-soft); font-size: 14px; font-weight: 700; }
.contact-form label span { color: var(--navy); }
.contact-form em { margin-left: 5px; padding: 2px 5px; border-radius: 3px; color: var(--white); background: #ba1a1a; font-size: 10px; font-style: normal; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #c2c6d4; border-radius: 8px; color: var(--navy); background: var(--white); font-size: 16px; outline: none; }
.contact-form input, .contact-form select { height: 46px; padding: 0 12px; }
.contact-form textarea { min-height: 100px; padding: 10px 12px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 86, 179, .13); }
.contact-form label.has-error > input, .contact-form label.has-error > select, .contact-form label.has-error > textarea { border-color: #c93838; background: #fff7f7; box-shadow: 0 0 0 2px rgba(201, 56, 56, .1); }
.contact-form label.has-error > input:focus, .contact-form label.has-error > select:focus, .contact-form label.has-error > textarea:focus { border-color: #b52e32; box-shadow: 0 0 0 3px rgba(201, 56, 56, .15); }
.contact-form label.has-error > span:first-child { color: #b52e32; }
.contact-form .field-error { display: block; width: 100%; margin: -1px 0 0; color: #c93838; font-size: 12px; font-weight: 600; line-height: 1.45; }
.contact-form .field-error:empty { display: none; }
.form-wide { grid-column: 1 / -1; }
.contact-form .consent { display: flex; flex-direction: row; align-items: center; justify-content: center; margin: 22px 0 16px; color: var(--muted); font-size: 13px; font-weight: 400; }
.contact-form .consent input { flex: 0 0 18px; width: 18px; height: 18px; margin-right: 8px; }
.contact-form .consent.has-error { display: grid; grid-template-columns: 18px 1fr; color: #b52e32; }
.contact-form .consent.has-error .field-error { grid-column: 1 / -1; margin-left: 26px; }
.form-submit { display: flex; width: min(100%, 320px); margin: 0 auto; border: 0; cursor: pointer; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.contact-confirm-page, .contact-result-page { display: flex; min-height: 100vh; flex-direction: column; background: var(--surface-muted); }
.contact-confirm-page .site-header, .contact-confirm-page .site-footer, .contact-result-page .site-header, .contact-result-page .site-footer { flex: 0 0 auto; }
.contact-confirm-main, .contact-result-main { display: grid; flex: 1; place-items: center; padding: 70px 0 86px; }
.contact-confirm-card, .contact-result-card { width: min(820px, calc(100% - 48px)); padding: 42px 48px; border: 1px solid var(--line); border-top: 4px solid var(--blue); border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
.contact-confirm-card h1, .contact-result-card h1 { margin: 0 0 18px; color: var(--navy); font-size: clamp(26px, 4vw, 36px); line-height: 1.45; }
.contact-confirm-lead, .contact-result-card p { margin: 0 0 24px; color: var(--muted); }
.contact-confirm-summary { margin: 0; border-top: 1px solid var(--line); }
.contact-confirm-summary > div { display: grid; grid-template-columns: 210px 1fr; border-bottom: 1px solid var(--line); }
.contact-confirm-summary dt, .contact-confirm-summary dd { margin: 0; padding: 12px 14px; }
.contact-confirm-summary dt { color: var(--navy); background: var(--surface-muted); font-weight: 700; }
.contact-confirm-summary dd { color: var(--muted); overflow-wrap: anywhere; }
.contact-confirm-actions, .contact-result-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.contact-confirm-actions .button { border: 0; cursor: pointer; }
.contact-confirm-error { margin: 0 0 22px; padding: 14px 16px; border: 1px solid #e9b8b8; border-radius: 7px; color: #93000a; background: #ffdad6; }
.contact-result-card { text-align: center; }
.contact-result-card.error { border-top-color: #ba1a1a; }
.contact-result-mark { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 50%; color: var(--blue); background: var(--surface-blue); font-size: 26px; font-weight: 700; }
.contact-result-card.error .contact-result-mark { color: #93000a; background: #ffdad6; }
.contact-result-card .button { min-width: 190px; }

/* Legal pages */
.legal-page { min-height: 100vh; background: var(--surface-muted); }
.legal-main { padding: 72px 0 88px; }
.legal-content { max-width: 880px; padding: 44px 52px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
.legal-content h1 { margin: 0 0 34px; color: var(--navy); font-size: clamp(28px, 4vw, 40px); line-height: 1.45; }
.legal-content h2 { margin: 32px 0 10px; padding-bottom: 7px; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 20px; }
.legal-content p, .legal-content li, .legal-table { color: var(--muted); font-size: 15px; }
.legal-content ul { padding-left: 22px; }
.legal-table { width: 100%; border-collapse: collapse; }
.legal-table th, .legal-table td { padding: 14px 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { width: 31%; color: var(--navy); background: var(--surface-muted); font-weight: 700; }

@media (max-width: 1000px) {
  .header-nav { gap: 15px; }
  .header-nav a { font-size: 12px; }
  .hero-grid { gap: 42px; }
  .feature-row, .feature-row-reverse { gap: 42px; }
}

@media (max-width: 900px) {
  .header-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .hero-grid, .feature-row, .feature-row-reverse { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { order: 1; }
  .hero-screen { order: 2; }
  .feature-row-reverse .feature-copy, .feature-row-reverse .feature-screen { order: initial; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-main { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: min(100% - 40px, 1200px); }
  .site-header, .header-inner { min-height: 58px; }
  .brand { font-size: 13px; }
  .brand-mark { width: 25px; height: 25px; }
  .hero-section { padding: 44px 0 58px; }
  .hero-eyebrow { margin-bottom: 14px; font-size: 11px; }
  .hero-copy h1 { margin-bottom: 16px; font-size: 30px; }
  .hero-lead { font-size: 14px; line-height: 1.8; }
  .hero-lead br { display: none; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 22px; }
  .button { width: 100%; min-height: 46px; font-size: 14px; }
  .hero-points { grid-template-columns: 1fr; gap: 6px; margin-top: 18px; }
  .hero-points li { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 8px 12px; }
  .hero-points span { margin-top: 0; text-align: right; }
  .hero-screen figcaption { font-size: 11px; }
  .section { padding: 64px 0; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2 { font-size: 24px; }
  .section-heading h2 br { display: none; }
  .section-heading > p:last-child { font-size: 14px; }
  .problem-grid, .support-grid, .steps-grid, .support-image-grid { grid-template-columns: 1fr; gap: 10px; }
  .problem-card { min-height: 0; padding: 18px; }
  .problem-card h3 { font-size: 16px; }
  .line-icon { margin-bottom: 10px; }
  .feature-row, .feature-row-reverse { gap: 22px; padding-bottom: 52px; }
  .feature-copy h3 { font-size: 21px; }
  .feature-copy > p:last-child { font-size: 14px; }
  .feature-screen { padding: 7px; }
  .support-card { padding: 18px; }
  .support-image-grid { margin-top: 16px; }
  .support-image-card picture { padding: 8px 8px 0; }
  .support-image-card figcaption { padding: 12px 14px 14px; }
  .pricing-main, .pricing-details { padding: 26px 22px; }
  .pricing-amount strong { font-size: 52px; }
  .check-list { grid-template-columns: 1fr; gap: 8px; }
  .pricing-notes { padding: 14px 16px; }
  .pricing-notes p { font-size: 12px; }
  .step-card { min-height: 0; padding: 20px 18px; }
  .faq-list summary { padding: 14px 42px 14px 16px; font-size: 14px; }
  .faq-list summary::after { right: 14px; }
  .faq-list details p { padding: 0 16px 16px; font-size: 13px; }
  .final-cta { padding: 64px 0; }
  .final-cta h2 { font-size: 24px; }
  .final-cta p:not(.section-label) { font-size: 14px; }
  .back-to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
  .site-footer { padding: 32px 0 22px; }
  .footer-links { gap: 7px 14px; margin: 16px 0 12px; }
  .footer-links a { font-size: 11px; }
  .contact-form-page .contact-form-section { padding: 42px 0 56px; }
  .contact-form-heading { font-size: 28px; }
  .contact-form { padding: 22px 16px; }
  .form-grid { grid-template-columns: 1fr; gap: 13px; }
  .form-wide { grid-column: auto; }
  .contact-form .consent { align-items: flex-start; justify-content: flex-start; font-size: 12px; }
  .contact-form .consent input { margin-top: 3px; }
  .contact-confirm-main, .contact-result-main { padding: 44px 0 60px; }
  .contact-confirm-card, .contact-result-card { width: min(100% - 40px, 820px); padding: 30px 20px; }
  .contact-confirm-summary > div { display: block; }
  .contact-confirm-summary dt { padding-bottom: 4px; }
  .contact-confirm-summary dd { padding-top: 4px; }
  .contact-confirm-actions { flex-direction: column; gap: 12px; }
  .contact-confirm-actions .button, .contact-result-card .button { width: 100%; }
  .legal-main { padding: 44px 0 60px; }
  .legal-content { padding: 30px 20px; }
  .legal-content h1 { margin-bottom: 26px; font-size: 28px; }
  .legal-content h2 { font-size: 18px; }
  .legal-content p, .legal-content li, .legal-table { font-size: 14px; }
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; width: 100%; }
  .legal-table th { border-bottom: 0; padding-bottom: 4px; }
  .legal-table td { padding-top: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
