/*
Theme Name: SalesRev LP (eigyodx.com)
Theme URI: https://eigyodx.com/
Author: PPF Partners Co., Ltd.
Description: SalesRev（Zoom Phone × Salesforce × Slack連携の営業DXサービス）専用ランディングページ用のWordPressテーマです。折パンフレットのデザインシステム（濃紺×ゴールド×深紅、斜めの幾何学モチーフ、イタリック体のロゴタイプ）を継承しています。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eigyodx-theme
*/

/* ==========================================================================
   WordPress標準クラス（最低限）
   ========================================================================== */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: none; width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: #5B6178; text-align: center; }

/* ==========================================================================
   SalesRev LP — 折パンフレット（表紙／裏表紙）のデザインシステム
   （濃紺×ゴールド×深紅、斜めの幾何学モチーフ、イタリック体のロゴタイプ、
   金の点グリッド、紺の帯フッター）を継承。外部ライブラリ・外部フォント不使用。
   ========================================================================== */
:root {
  --navy: #12193A;
  --navy-2: #1B2450;
  --navy-3: #232E5C;
  --gold: #B8912A;
  --gold-dark: #8C6D1E;
  --gold-pale: #F6EFDA;
  --gold-line: #E3D3A3;
  --red: #A91E32;
  --red-pale: #FBEAEC;
  --white: #FFFFFF;
  --paper: #FAFAF9;
  --text: #1A1F33;
  --text-sub: #5B6178;
  --text-mute: #848B9E;
  --line: #E7E4DB;
  --line-strong: #D4D0C4;
  --shadow: 0 12px 30px rgba(18, 25, 58, 0.09), 0 2px 8px rgba(18, 25, 58, 0.06);
  --shadow-hover: 0 20px 44px rgba(18, 25, 58, 0.14), 0 4px 10px rgba(18, 25, 58, 0.07);
  --maxw: 1160px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", Meiryo, Arial, sans-serif;
  --font-logo: Georgia, "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; font-weight: 800; color: var(--navy); line-height: 1.5; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.container { max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; position: relative; }
.section--paper { background: var(--paper); }
.section--navy { background: linear-gradient(160deg, var(--navy-2) 0%, var(--navy) 100%); }
.section--navy .section-title, .section--navy h2 { color: #FFFFFF; }
.section--navy .section-lead { color: #C7CCE0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::after { content: ""; width: 34px; height: 2px; background: var(--gold); }
.eyebrow--dark { color: #E4C766; }
.eyebrow--dark::after { background: #E4C766; }

.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-title { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 16px; }
.section-lead { font-size: 15.5px; color: var(--text-sub); line-height: 1.9; margin: 0; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  font-weight: 800;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  line-height: 1.3;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.btn--primary {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); background: var(--navy-2); }
.btn--secondary { background: #FFFFFF; color: var(--navy); border-color: var(--line-strong); }
.btn--secondary:hover { border-color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ondark { background: rgba(255,255,255,0.08); color: #FFFFFF; border-color: rgba(228,199,102,0.55); }
.btn--ondark:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #FFFFFF;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.site-logo { display: flex; align-items: center; }
.site-logo img, .site-logo svg { height: 34px; width: auto; }
.site-logo-text { display: flex; flex-direction: column; }
.logo-mark { font-family: var(--font-logo); font-style: italic; font-size: 23px; font-weight: 700; color: var(--navy); letter-spacing: 0.01em; }
.logo-rule { width: 34px; height: 2px; background: var(--gold); margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a:not(.btn) { font-size: 13.5px; font-weight: 700; color: var(--text-sub); }
.main-nav a:not(.btn):hover { color: var(--navy); }
.main-nav .btn { padding: 11px 24px; font-size: 13px; }
.hamburger {
  display: none;
  width: 30px; height: 22px;
  position: relative;
  background: transparent; border: none; cursor: pointer; padding: 0;
}
.hamburger span {
  position: absolute; left: 0; width: 100%; height: 2.5px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9.5px; }
.hamburger span:nth-child(3) { top: 19px; }
.hamburger.is-active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 72px 0 100px; overflow: hidden; background: #FFFFFF; }
.hero-deco { position: absolute; top: 0; right: 0; width: min(62vw, 760px); height: 100%; pointer-events: none; z-index: 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-kicker { font-size: 13px; font-weight: 800; color: var(--gold-dark); letter-spacing: 0.08em; margin-bottom: 18px; }
.hero h1 { font-size: clamp(30px, 4vw, 47px); line-height: 1.5; margin-bottom: 10px; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero-rule { width: 56px; height: 3px; background: var(--gold); margin: 18px 0 26px; }
.hero-sub { font-size: 15.5px; color: var(--text-sub); line-height: 1.95; margin-bottom: 34px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.flowcard {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-hover);
  padding: 32px;
}
.flowcard-title { font-size: 16.5px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.flowcard-note { font-size: 12.5px; color: var(--text-mute); margin-bottom: 22px; }
.flow { display: flex; flex-direction: column; gap: 0; }
.flow-step {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line);
  padding: 14px 16px;
  background: var(--paper);
}
.flow-step--core { background: var(--navy); border-color: var(--navy); }
.flow-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--navy); font-weight: 800; font-size: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: #FFFFFF;
}
.flow-step--core .flow-step-num { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.flow-step-body { min-width: 0; }
.flow-step-name { font-size: 14.5px; font-weight: 800; color: var(--navy); }
.flow-step--core .flow-step-name { color: #FFFFFF; }
.flow-step-desc { font-size: 12px; color: var(--text-sub); margin-top: 3px; line-height: 1.6; }
.flow-step--core .flow-step-desc { color: #C7CCE0; }
.flow-arrow { display: flex; align-items: center; justify-content: center; color: var(--line-strong); font-weight: 800; font-size: 15px; padding: 4px 0; }
.flow-outcome {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.8;
}

/* ---------- 課題カード ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card .num-badge { margin-bottom: 18px; }
.card h3 { font-size: 16.5px; margin-bottom: 10px; line-height: 1.6; }
.card p { font-size: 13.5px; color: var(--text-sub); line-height: 1.8; }

/* ---------- オートコール：Before/After比較 ---------- */
.highlight-panel {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  padding: 40px;
}
.compare-strip { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 40px; }
.compare-col { flex: 1 1 260px; max-width: 320px; padding: 20px 22px; text-align: center; }
.compare-col--before { background: var(--paper); border: 1px solid var(--line-strong); }
.compare-col--after { background: var(--navy); border: 1px solid var(--navy); }
.compare-label { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em; margin-bottom: 8px; }
.compare-col--before .compare-label { color: var(--text-mute); }
.compare-col--after .compare-label { color: #E4C766; }
.compare-path { display: block; font-size: 15px; font-weight: 800; color: var(--navy); }
.compare-col--after .compare-path { color: #FFFFFF; }
.compare-arrow { color: var(--gold-dark); font-size: 26px; font-weight: 800; }

.feature-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-item { background: var(--paper); border: 1px solid var(--line); padding: 22px 20px; }
.feature-icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transform: rotate(45deg);
}
.feature-icon svg { width: 20px; height: 20px; transform: rotate(-45deg); }
.feature-item-tag { font-size: 11.5px; font-weight: 800; color: var(--gold-dark); margin-bottom: 8px; letter-spacing: 0.04em; }
.feature-item h4 { font-size: 15px; margin-bottom: 8px; }
.feature-item p { font-size: 12.5px; color: var(--text-sub); line-height: 1.75; }

/* ---------- ソリューション：機能ブロック ---------- */
.func-block {
  display: flex; gap: 22px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 30px 32px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.func-block:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.func-block .num-badge { margin-top: 2px; }
.func-tag { font-size: 12px; font-weight: 800; color: var(--gold-dark); letter-spacing: 0.04em; margin-bottom: 8px; }
.func-block h3 { font-size: clamp(17px, 2vw, 20px); margin-bottom: 10px; }
.func-lead { font-size: 14px; color: var(--text-sub); line-height: 1.9; margin-bottom: 18px; }
.func-result {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-size: 13.5px; font-weight: 800; color: var(--navy);
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 8px 18px;
}
.func-result span { color: var(--gold-dark); }

/* ---------- 実績（数値） ---------- */
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.metric-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(228,199,102,0.35);
  padding: 36px 30px;
  text-align: center;
}
.metric-label { font-size: 14px; font-weight: 700; color: #C7CCE0; margin-bottom: 16px; }
.metric-row { display: flex; align-items: baseline; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.metric-before { font-size: 16px; color: rgba(255,255,255,0.55); text-decoration: line-through; }
.metric-after { font-size: 40px; font-weight: 900; color: #FFFFFF; }
.metric-delta {
  display: inline-block; font-size: 14.5px; font-weight: 800; color: var(--navy);
  background: var(--gold);
  padding: 6px 20px;
}

/* ---------- データ連携フロー（4STEP） ---------- */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.journey-step { display: flex; flex-direction: column; position: relative; }
.journey-card { flex: 1; background: #FFFFFF; border: 1px solid var(--line); padding: 26px 22px; box-shadow: var(--shadow); }
.journey-card--hub { background: var(--navy); border-color: var(--navy); box-shadow: var(--shadow-hover); }
.journey-card h3 { font-size: 16px; margin: 14px 0 10px; }
.journey-card--hub h3 { color: #FFFFFF; }
.journey-card p { font-size: 12.5px; color: var(--text-sub); line-height: 1.8; }
.journey-card--hub p { color: #C7CCE0; }
.journey-tagline {
  display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 800;
  color: var(--navy); background: var(--gold); padding: 4px 12px;
}
@media (min-width: 901px) {
  .journey-step:not(:last-child)::after {
    content: "→"; position: absolute; top: 30px; right: -20px;
    color: var(--line-strong); font-size: 20px; font-weight: 800;
  }
}

/* ---------- 会社見学会 ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item {
  overflow: hidden; aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.gallery-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption { margin-top: 12px; text-align: center; font-size: 13px; font-weight: 700; color: var(--text-sub); }

/* ---------- 最終CTA ---------- */
.final-cta { text-align: center; border: 1px solid rgba(228,199,102,0.3); padding: 64px 44px; }
.final-cta h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 16px; }
.final-cta p { font-size: 15px; color: #C7CCE0; max-width: 620px; margin: 0 auto 32px; line-height: 1.9; }

/* ---------- フォーム ---------- */
.form-box {
  max-width: 680px; margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-hover);
  padding: 44px;
}
.form-group { margin-bottom: 26px; }
.form-label { display: block; font-size: 13.5px; font-weight: 800; margin-bottom: 10px; color: var(--navy); }
.req { color: var(--red); font-size: 11px; margin-left: 6px; font-weight: 700; }
.optional { color: var(--text-mute); font-size: 11px; margin-left: 6px; font-weight: 500; }
.radio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.radio input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.radio label {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px;
  border: 1.5px solid var(--line-strong);
  font-size: 13px; font-weight: 700;
  cursor: pointer; color: var(--text-sub);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.radio label::before { content: ""; width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--line-strong); flex-shrink: 0; }
.radio input:checked + label { border-color: var(--gold); color: var(--navy); background: var(--gold-pale); }
.radio input:checked + label::before { border-color: var(--gold); background: var(--gold); box-shadow: inset 0 0 0 2.5px #FFF; }
.radio input:focus-visible + label { outline: 3px solid var(--gold); outline-offset: 2px; }
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-box input[type="text"], .form-box input[type="email"], .form-box input[type="tel"], .form-box textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  font-size: 15px; font-family: inherit;
  background: #FFFFFF; color: var(--text);
}
.form-box input:focus, .form-box textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-pale); }
.form-box textarea { resize: vertical; min-height: 110px; }
.form-note { display: none; font-size: 13.5px; font-weight: 700; padding: 14px 18px; margin-bottom: 22px; line-height: 1.7; border-left: 3px solid transparent; }
.form-note--error { background: var(--red-pale); border-color: var(--red); color: var(--red); }
.form-note--success { background: var(--gold-pale); border-color: var(--gold); color: var(--navy); }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- フッター ---------- */
.site-footer { background: var(--navy); color: #B7BDD6; padding: 0; border-top: 3px solid var(--gold); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 26px; align-items: center; padding: 44px 0; }
.footer-name { font-family: var(--font-logo); font-style: italic; font-size: 19px; color: #FFFFFF; margin-bottom: 10px; }
.footer-info { font-size: 13px; line-height: 2; }
.footer-info a { color: #E4C766; font-weight: 700; }
.footer-copy { text-align: center; font-size: 12px; color: #6E759A; padding: 18px 0 34px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 0; }

/* ---------- 固定CTA（スマホ） ---------- */
.fixed-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 600;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(18,25,58,0.12);
  transition: transform 0.3s ease;
}
.fixed-cta.is-hidden { transform: translateY(100%); }
.fixed-cta .btn { width: 100%; padding: 15px; font-size: 14.5px; }

/* ---------- トップへ戻るボタン ---------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 590;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border: 1.5px solid var(--gold);
  color: #FFFFFF;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-2); }
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 768px) {
  .back-to-top { right: 16px; bottom: 84px; width: 46px; height: 46px; }
}

/* ---------- フェードイン（控えめ／JS未実行時も常に可読） ---------- */
.fade { opacity: 1; transform: translateY(10px); transition: transform 0.6s ease; }
.fade.is-visible { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .fade { transform: none; transition: none; } }

/* ==========================================================================
   レスポンシブ
   PC（1280〜1920px）ではコンテナ幅が --maxw で頭打ちになるため、
   本文・見出しの折り返し位置は1280px以上で常に同一になります。
   ========================================================================== */
@media (max-width: 1080px) {
  .hamburger { display: block; }
  .main-nav {
    position: fixed; top: 78px; right: 0;
    width: 280px; max-width: 84vw; height: calc(100vh - 78px);
    background: #FFFFFF;
    flex-direction: column; align-items: flex-start;
    padding: 28px 24px; gap: 22px;
    box-shadow: -12px 0 28px rgba(18,25,58,0.14);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid var(--line);
    overflow-y: auto;
  }
  .main-nav.is-active { transform: translateX(0); }
  .main-nav a:not(.btn) { width: 100%; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .main-nav .btn { width: 100%; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .feature-list, .metric-grid, .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-deco { width: 70vw; opacity: 0.7; }
}
@media (max-width: 900px) { .journey { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
  .hero { padding: 36px 0 52px; }
  .grid-3, .metric-grid, .gallery, .feature-list, .input-grid, .radio-grid, .compare-strip {
    grid-template-columns: 1fr;
  }
  .func-block { flex-direction: column; padding: 24px 20px; }
  .form-box, .highlight-panel, .flowcard { padding: 24px 18px; }
  .btn { width: 100%; min-width: 0; }
  .hero-cta .btn { width: auto; flex: 1 1 auto; min-width: 0; }
  .fixed-cta { display: block; }
  body { padding-bottom: 76px; }
  .hero-deco { width: 78vw; opacity: 0.55; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 27px; }
  .metric-after { font-size: 30px; }
}
