/* =====================================================
   NeWARP LP - Style
   元LP（https://newarp.jp/）の見た目に寄せたスタイル
   - 主要カラー: #0068BE (CTAボタン), #189CE9 (セクションラベル)
   - フォント: Noto Sans JP
   ===================================================== */

:root {
  --color-primary: #0068BE;
  --color-primary-dark: #00518f;
  --color-accent: #189CE9;
  --color-accent-soft: #B6E0F5;
  --color-teal: #2EC4B6;
  --color-text: #1a1a1a;
  --color-muted: #5a6470;
  --color-border: #e4e8ee;
  --color-bg: #ffffff;
  --color-bg-soft: #f5f8fb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06);
  --radius-pill: 999px;
  --radius-md: 8px;
  --max-width: 1120px;
  --header-height: 76px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 16px;
  font-feature-settings: "palt";
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
h1, h2, h3 { line-height: 1.4; }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============== Header ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
.logo-img { height: 36px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 16px; }
.nav-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 14px; }
.nav-list a { color: var(--color-text); font-size: 13px; font-weight: 500; white-space: nowrap; }
.header-cta { display: flex; gap: 12px; }
.nav-toggle { display: none; background: transparent; border: 0; width: 40px; height: 40px; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--color-text); margin: 5px 0; transition: transform .2s; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 24px; font-weight: 700; font-size: 14px;
  border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform .12s, box-shadow .12s, background .12s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); opacity: 1; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-outline { background: #fff; color: var(--color-primary); border-color: var(--color-primary); }
.btn-light { background: var(--color-accent-soft); color: var(--color-primary-dark); }
.btn-light:hover { background: #a5d4ee; }
.btn-pill { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; min-width: 280px; }
.btn .chev { display: inline-block; font-weight: 700; margin-left: 6px; transform: translateY(-1px); }
.btn-icon { font-size: 14px; opacity: .9; }

/* ============== Hero ============== */
.hero { padding: 48px 0 80px; background: #fff; }
/* TOPヒーロー：本番LPと同じアイソメトリック背景を全幅で敷く */
.hero-bg {
  /* 背景イラストは白のベールを重ねて少し薄く見せる（濃さは0.4の値で調整） */
  background:
    linear-gradient(rgba(255,255,255,.4), rgba(255,255,255,.4)),
    url('images/top-hero-bg.jpg') center top / cover no-repeat;
  padding: 72px 0 88px;
}
.hero-bg .hero-inner { min-height: 560px; }
.hero-spacer { min-height: 1px; }
/* 本番と同じく、文字の行だけを白で塗り抜いて可読性を確保する */
.hl {
  background: #fff;
  padding: 2px 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-bg .hero-text h1 { line-height: 1.65; }
.hero-bg .hero-sub { line-height: 2.2; }
.hero-bg .hero-lead { line-height: 2.2; }
.hero-bg .hero-lead strong {
  background: #fff;
  padding: 2px 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-bg .hero-tpm-link a.hl { text-decoration: underline; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-visual img { width: 100%; max-width: 520px; margin: 0 auto; }
.hero-text h1 { font-size: 46px; font-weight: 700; margin: 0 0 24px; letter-spacing: 0.02em; }
.hero-sub { font-size: 18px; font-weight: 500; margin: 0 0 28px; color: var(--color-text); }
.hero-lead { font-size: 14px; line-height: 1.9; margin: 0 0 16px; color: var(--color-text); }
.hero-actions { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

/* ============== Section common ============== */
.section { padding: 96px 0; }
.section-label { text-align: center; color: var(--color-accent); font-size: 16px; letter-spacing: 0.2em; margin: 0 0 12px; font-weight: 400; }
.section-title { text-align: center; font-size: 32px; font-weight: 700; margin: 0 0 32px; }
.section-desc { max-width: 880px; margin: 0 auto 56px; font-size: 15px; line-height: 2; }
.section-cta { text-align: center; margin-top: 48px; }

/* ============== Solution / Features ============== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 32px; }
.feature { text-align: center; padding: 24px 12px; }
.feature-icon { width: 140px; height: 140px; margin: 0 auto 24px; object-fit: contain; }
.feature-title { font-size: 17px; font-weight: 700; margin: 0; line-height: 1.7; }
.feature-desc { font-size: 14px; line-height: 1.9; margin: 12px 0 0; text-align: left; color: var(--color-text); }

/* ============== Hero TPM link ============== */
.hero-tpm-link { margin: 16px 0 0; font-size: 14px; }
.hero-tpm-link a { color: var(--color-primary); font-weight: 500; text-decoration: underline; }

/* ============== Problem ============== */
.section-problem { background: var(--color-bg-soft); }
.problem-bridge { text-align: center; margin: 48px 0 0; font-size: 20px; font-weight: 700; color: var(--color-primary); }

/* ============== News ============== */
.news-list { list-style: none; padding: 0; margin: 0 auto; max-width: 800px; }
.news-item { display: grid; grid-template-columns: 120px 110px 1fr; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--color-border); }
.news-item time { color: var(--color-muted); font-size: 14px; font-weight: 500; }
.news-tag { display: inline-block; text-align: center; padding: 4px 12px; font-size: 12px; border: 1px solid var(--color-primary); color: var(--color-primary); border-radius: var(--radius-pill); font-weight: 500; }
.news-item a { color: var(--color-text); font-size: 15px; }
.news-item a:hover { color: var(--color-primary); opacity: 1; }

/* ============== Case study ============== */
.section-case { background: var(--color-bg-soft); }
.case-card { background: #fff; border-radius: 12px; padding: 40px; box-shadow: var(--shadow-md); }
.case-company { font-size: 18px; margin: 0 0 24px; font-weight: 700; }
.case-body { display: grid; grid-template-columns: 320px 1fr; gap: 32px; align-items: start; }
.case-image img { width: 100%; max-width: 320px; border-radius: 8px; }
.case-lead { font-size: 16px; margin: 0 0 16px; }
.case-text p { font-size: 14px; line-height: 1.9; margin: 0 0 12px; }

/* ============== FAQ ============== */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: grid; grid-template-columns: 40px 1fr 24px; gap: 16px; align-items: center; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { color: var(--color-primary); font-weight: 700; font-size: 18px; }
.faq-mark.answer { color: var(--color-accent); }
.faq-question { font-size: 15px; }
.faq-toggle { color: var(--color-primary); font-size: 22px; text-align: center; transition: transform .2s; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 0 24px 24px; border-top: 1px solid var(--color-border); padding-top: 20px; }
.faq-answer p { margin: 0; font-size: 14px; line-height: 1.9; }

/* ============== Contact ============== */
.section-contact {
  background: url('images/contact-section-bg.jpg') center / cover no-repeat, #0b62d6;
}
.section-contact .section-label,
.section-contact .section-title { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 880px; margin: 48px auto 0; }
.contact-card { background: #fff; padding: 40px 24px; border-radius: 12px; text-align: center; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; gap: 20px; }
.contact-lead { margin: 0; font-size: 16px; line-height: 1.7; }

/* ============== Footer ============== */
.site-footer { background: #1f2933; color: #cdd5df; padding: 56px 0 24px; margin-top: 0; }
.footer-inner { display: grid; grid-template-columns: 240px 1fr; gap: 48px; margin-bottom: 32px; }
.footer-logo { height: 36px; filter: brightness(0) invert(1); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #cdd5df; font-size: 13px; }
.footer-col a:hover { color: #fff; opacity: 1; }
.copyright { text-align: center; font-size: 12px; color: #8997a6; margin: 0; padding-top: 24px; border-top: 1px solid #2c3744; }

/* ============== Sub-page Hero ============== */
.page-hero { background: linear-gradient(180deg, #f5fafe 0%, #e7f1fa 100%); padding: 64px 0 56px; text-align: center; }
.page-hero h1 { font-size: 36px; margin: 0 0 16px; }
.page-hero p { margin: 0 auto; max-width: 720px; color: var(--color-muted); font-size: 15px; }

/* ============== Form ============== */
.form-section { padding: 64px 0; }
.form { max-width: 720px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 12px; box-shadow: var(--shadow-md); }
.form-row { margin-bottom: 24px; }
.form-row label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 14px; }
.form-row .required { display: inline-block; margin-left: 6px; padding: 1px 6px; background: #e63946; color: #fff; font-size: 11px; border-radius: 3px; font-weight: 700; vertical-align: middle; }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea,
.form-row select {
  width: 100%; padding: 12px 14px; font-size: 15px;
  border: 1px solid var(--color-border); border-radius: 6px;
  font-family: inherit; background: #fafcfe;
  transition: border-color .15s, background .15s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--color-primary); background: #fff;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.radio-list { display: flex; flex-direction: column; gap: 10px; }
.radio-list label { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: #fafcfe; border: 1px solid var(--color-border); border-radius: 6px; font-weight: 500; cursor: pointer; margin: 0; }
.radio-list label:hover { border-color: var(--color-primary); }
.privacy { margin: 24px 0; padding: 16px; background: #f5f8fb; border-radius: 6px; font-size: 13px; line-height: 1.7; }
.privacy a { color: var(--color-primary); text-decoration: underline; }
.consent { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.form-actions { text-align: center; }
.form-actions .btn { min-width: 240px; }

/* ============== Service page extras ============== */
.service-hero-bg {
  background: url('images/service-hero-bg.jpg') center bottom / cover no-repeat;
  padding: 24px 0 56px;
}
.service-hero-bg .service-hero { min-height: 420px; }
.service-hero-bg .service-hero h1,
.service-hero-bg .service-hero .lead,
.service-hero-bg .service-hero .lead strong { color: #fff; }
/* 本番と同じく、青背景の上では落ち着いた紺のボタン */
.service-hero-bg .btn-primary { background: rgba(26,70,124,.78); border-color: rgba(255,255,255,.32); color: #fff; }
.service-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 64px 0 48px; }
.service-hero h1 { font-size: 42px; margin: 0 0 16px; }
.service-hero .lead { font-size: 18px; margin-bottom: 28px; }
.service-hero .visual img { width: 100%; max-width: 480px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.about-card { padding: 32px 24px; background: #fff; border: 1px solid var(--color-border); border-radius: 10px; }
.about-card h3 { color: var(--color-primary); font-size: 17px; margin: 0 0 12px; }
.about-card p { font-size: 14px; margin: 0; line-height: 1.8; }
.point-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 72px; }
.point-block.reverse > .point-text { order: 2; }
.point-block .point-number { display: inline-block; color: var(--color-primary); font-size: 64px; font-weight: 700; line-height: 1; letter-spacing: 0.05em; }
.point-block h3 { font-size: 24px; margin: 8px 0 16px; line-height: 1.5; }
.point-block p { font-size: 14px; line-height: 1.9; }
.point-block .point-visual img { width: 100%; border-radius: 8px; box-shadow: var(--shadow-md); }
.flow-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.section-flow .flow-item:not(:last-child)::after {
  content: ''; position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%);
  width: 120px; height: 26px;
  background: url('images/flow-arrow.png') center top / contain no-repeat;
}
.flow-item { display: grid; grid-template-columns: 100px 240px 1fr; gap: 24px; align-items: center; padding: 24px; background: #fff; border: 1px solid var(--color-border); border-radius: 10px; position: relative; }
.flow-icon { width: 100px; height: 100px; background: #eaf3fb; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-primary); font-size: 18px; font-weight: 700; }
.flow-item h3 { font-size: 18px; margin: 0 0 8px; }
.flow-item p { font-size: 14px; margin: 0; line-height: 1.8; }
.flow-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; display: block; }

/* ============== TPM page ============== */
.tpm-hero { background: linear-gradient(135deg, #f7fbff 0%, #e1eef9 100%); padding: 72px 0; text-align: center; }
.tpm-hero-bg {
  background: linear-gradient(rgba(12,26,60,.22), rgba(12,26,60,.22)), url('images/tpm-hero-bg.jpg') center / cover no-repeat;
  padding: 104px 0;
}
.tpm-hero-label { margin: 0 0 24px; font-size: 20px; font-weight: 700; letter-spacing: 0.03em; }
.tpm-hero-bg .tpm-hero-label,
.tpm-hero-bg h1, .tpm-hero-bg .lead { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.tpm-hero-bg .lead { line-height: 2.2; }
.tpm-hero-bg .lead .hl { background: rgba(255,255,255,.88); color: var(--color-text); text-shadow: none; }
.tpm-hero-bg .btn-primary { background: #fff; color: var(--color-primary); border-color: #fff; }
.tpm-hero h1 { font-size: 40px; margin: 0 0 24px; line-height: 1.5; }
.tpm-hero .lead { max-width: 720px; margin: 0 auto 12px; font-size: 15px; line-height: 2; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.problem-card { padding: 32px 24px; background: #fff; border-top: 4px solid var(--color-primary); border-radius: 8px; box-shadow: var(--shadow-sm); }
.problem-card h3 { color: var(--color-primary); font-size: 17px; margin: 0 0 12px; }
.problem-icon { display: block; width: 84px; height: 84px; object-fit: contain; margin: 0 auto 18px; }
.benefit-icon { display: block; width: 96px; height: 96px; object-fit: contain; margin: 0 auto 16px; }
.problem-avatar { display: block; width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; }
.problem-card p { font-size: 14px; line-height: 1.9; margin: 0; }
.solution-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.solution-block.reverse > .solution-text { order: 2; }
.solution-block h3 { font-size: 22px; margin: 0 0 16px; line-height: 1.5; color: var(--color-text); }
.solution-block .bullets { list-style: none; padding: 0; margin: 16px 0 0; }
.solution-block .bullets li { position: relative; padding-left: 24px; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.solution-block .bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }
.solution-block .visual img { width: 100%; border-radius: 8px; box-shadow: var(--shadow-md); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.benefit-card { padding: 32px 24px; background: #fff; border: 1px solid var(--color-border); border-radius: 10px; text-align: center; }
.benefit-card h3 { color: var(--color-primary); font-size: 17px; margin: 0 0 12px; }
.benefit-card p { font-size: 14px; line-height: 1.9; margin: 0; }

/* ============== Pamphlet doc list ============== */
.pamphlet-layout { display: grid; grid-template-columns: 1fr 440px; gap: 48px; align-items: start; }
.pamphlet-form-col .form { max-width: none; }
.pamphlet-form-sticky { position: sticky; top: calc(var(--header-height) + 24px); }

/* コンパクトフォーム（資料DLページのサイドバー用） */
.form--compact { padding: 28px; }
.form--compact .form-row { margin-bottom: 16px; }
.form--compact .radio-list { gap: 8px; }
.form--compact .radio-list label { padding: 10px 12px; font-size: 13px; }
.form--compact textarea { min-height: 72px; }
.form--compact .privacy { padding: 12px; margin: 16px 0; font-size: 12px; line-height: 1.6; }
.form--compact .consent { margin-bottom: 16px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-grid-2 .form-row { margin-bottom: 0; }
.radio-list-inline { flex-direction: row; flex-wrap: wrap; }
.radio-list-inline label { flex: 1 1 140px; }
.doc-block { margin-bottom: 64px; }
.pamphlet-docs .doc-block:last-child { margin-bottom: 0; }
.doc-block h3 { font-size: 22px; margin: 0 0 16px; padding-left: 16px; border-left: 4px solid var(--color-primary); }
.doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.doc-thumb { background: #f5f8fb; padding: 24px; border-radius: 8px; text-align: center; }
.doc-thumb img { max-width: 320px; margin: 0 auto; width: 100%; }
.doc-pages { display: flex; gap: 10px; margin: 16px auto 0; max-width: 320px; }
.doc-pages img { width: 50%; max-width: none; border: 1px solid var(--color-border); border-radius: 4px; background: #fff; }
.target-list { list-style: none; padding: 0; margin: 16px 0; }
.target-list li { position: relative; padding-left: 22px; font-size: 14px; margin-bottom: 6px; }
.target-list li::before { content: '・'; position: absolute; left: 0; color: var(--color-primary); }
.form-error { color: #d0342c; font-size: 13px; font-weight: 700; margin: 8px 0 0; }
.hp-field { position: absolute !important; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
.form-complete { max-width: 720px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--color-border); border-radius: 12px; padding: 48px 32px; box-shadow: var(--shadow-md); }
.form-complete h2 { margin: 0 0 12px; font-size: 24px; color: var(--color-primary); }
.form-complete p { font-size: 14px; line-height: 1.9; margin: 0; }
.form-complete .dl-links { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-top: 24px; }

/* ============== Responsive ============== */
@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; top: var(--header-height); right: 0; left: 0;
    background: #fff; flex-direction: column; padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%); transition: transform .3s;
  }
  .site-nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; gap: 12px; width: 100%; }
  .nav-list li { border-bottom: 1px solid var(--color-border); padding-bottom: 8px; }
  .header-cta { width: 100%; flex-direction: column; }
  .header-cta .btn { width: 100%; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-text h1 { font-size: 32px; }
  .hero-visual { order: -1; }
  .hero-spacer { display: none; }
  .hero-bg .hero-inner { min-height: 0; }
  .service-hero-bg .service-hero { min-height: 0; }
  .tpm-hero-bg { padding: 64px 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .case-body { grid-template-columns: 1fr; }
  .case-image img { max-width: 280px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .flow-item { grid-template-columns: 88px 180px 1fr; gap: 16px; }
  .pamphlet-layout { grid-template-columns: 1fr; gap: 40px; }
  .pamphlet-form-sticky { position: static; }
  .pamphlet-form-col .form { max-width: 640px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-title { font-size: 24px; }
  .hero-text h1 { font-size: 26px; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .news-item { grid-template-columns: 1fr; gap: 6px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .form { padding: 24px; }
  .service-hero { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .service-hero h1 { font-size: 26px; }
  .about-grid { grid-template-columns: 1fr; }
  .point-block { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .point-block.reverse > .point-text { order: 0; }
  .flow-item { grid-template-columns: 1fr; text-align: center; }
  .flow-icon { margin: 0 auto; }
  .flow-photo img { max-width: 360px; margin: 0 auto; }
  .tpm-hero h1 { font-size: 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-block { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .solution-block.reverse > .solution-text { order: 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .form-grid-2 .form-row:first-child { margin-bottom: 16px; }
}
