/* ========================================================
   Reset & Base
======================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2a44;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.4; font-weight: 700; }
p { margin: 0; }

/* ========================================================
   Variables
======================================================== */
/* ===================================================
   ブランドカラー（テーマ別）
   - デフォルト  : back-office ページ用（明るい水色基調）
   - .theme-keiri: speedkeiriout ページ用（ディープブルー＋黄色）
   <body class="theme-keiri"> で切り替え可能
=================================================== */

/* back-office テーマ（既定） */
:root {
  --primary: #09adec;
  --primary-dark: #046bd2;
  --primary-deep: #003555;
  --sky: #2b94d3;
  --accent: #ff9022;
  --accent-dark: #e57400;
  --accent-light: #ffe9d3; /* バーチャート背景の淡いトーン */
  --accent-text: #ffffff;
  --bg-light: #e7f5fd;
  --bg-soft: #f6fbff;
  --bg-gray: #f7f9fb;
  --text: #32373c;
  --text-light: #5c6b80;
  --border: #dfe7ef;
}

/* speedkeiriout テーマ */
body.theme-keiri {
  --primary: #00669e;
  --primary-dark: #003555;
  --primary-deep: #002a45;
  --sky: #2b94d3;
  --accent: #fec322;
  --accent-dark: #d9a300;
  --accent-light: #fff3c9; /* 黄色寄りの淡いトーン */
  --accent-text: #003555; /* 黄色ボタンの文字色は濃紺 */
  --bg-light: #eaf3fa;
  --bg-soft: #f6fbff;
  --bg-gray: #f5f7fa;
  --text: #2a3340;
  --text-light: #56657a;
  --border: #d9e3ed;
}

/* payrolllp テーマ（ディープブルー＋ライトブルー＋黄色） */
body.theme-payroll {
  --primary: #0068a0;
  --primary-dark: #003555;
  --primary-deep: #002a45;
  --sky: #10afde;
  --accent: #fde047;
  --accent-dark: #c9a800;
  --accent-light: #fff7c8;
  --accent-text: #003555;
  --bg-light: #e7f5fd;
  --bg-soft: #f6fbff;
  --bg-gray: #f5f7fa;
  --text: #2a3340;
  --text-light: #56657a;
  --border: #d9e3ed;
}

/* 黄色アクセント時の影色とテキスト色を調整 */
body.theme-keiri .btn-primary,
body.theme-payroll .btn-primary {
  color: var(--accent-text);
}
body.theme-keiri .btn-primary { box-shadow: 0 6px 18px rgba(254, 195, 34, .35); }
body.theme-payroll .btn-primary { box-shadow: 0 6px 18px rgba(253, 224, 71, .45); }

body.theme-keiri .figure-num,
body.theme-keiri .solution-eyebrow,
body.theme-keiri .solution .brand,
body.theme-payroll .figure-num,
body.theme-payroll .solution-eyebrow,
body.theme-payroll .solution .brand {
  color: var(--accent);
}

/* LPモード（ヘッダー・フッターなしのページ） */
body.lp-mode .hero { padding-top: 40px; }


/* ========================================================
   Layout helpers
======================================================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 88px 0;
}
.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .15em;
  font-size: 14px;
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(24px, 3.2vw, 36px);
  margin-bottom: 48px;
}
.section-title.light { color: #fff; }
.section-desc {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* ========================================================
   Buttons
======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  line-height: 1.3;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(243,156,18,.35); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-secondary { background: #fff; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); flex-direction: column; padding: 12px 28px; }
.btn-white .btn-sub { font-size: 11px; font-weight: 500; }
.btn-white .btn-main { font-size: 22px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ========================================================
   Header
======================================================== */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-img { height: 44px; width: auto; }
.logo-text { font-weight: 900; color: var(--primary); font-size: 18px; }
.header-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.header-nav a:hover { color: var(--primary); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-tel { text-align: right; line-height: 1.2; }
.tel-label { display: block; font-size: 10px; color: var(--text-light); }
.tel-num { font-size: 20px; font-weight: 900; color: var(--primary); }
.tel-time { display: block; font-size: 10px; color: var(--text-light); }
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ========================================================
   Hero
======================================================== */
.hero {
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(9,173,236,.18), transparent),
    linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
  padding: 64px 0 80px;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-lead {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.hero-title .accent {
  color: var(--accent);
  background: linear-gradient(transparent 70%, #fff3d4 70%);
}
.hero-desc {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 16px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-points li {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.hero-image { display: flex; align-items: center; justify-content: center; }
.image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(45deg, #e7eef7 0 10px, #f4f8fc 10px 20px);
  border: 2px dashed #b9c8da;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f80a0;
  text-align: center;
  font-size: 14px;
  padding: 16px;
}
.image-placeholder.small { aspect-ratio: 4 / 3; font-size: 12px; }

/* ========================================================
   Stats
======================================================== */
.stats {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}
.stats-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-num {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.stats-num small { font-size: 18px; margin-left: 4px; }
.stats-label { color: #d3ecfa; font-size: 14px; }

/* ========================================================
   Problem
======================================================== */
.problem { background: var(--bg-light); }
.problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-list li {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 32, 80, .05);
}
.problem-icon { font-size: 40px; margin-bottom: 12px; }

/* ========================================================
   Solution
======================================================== */
.solution {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%);
  color: #fff;
  text-align: center;
}
.solution-eyebrow { color: #ffc987; }
.solution .brand {
  color: #ffc987;
}
.solution-desc {
  color: #d3ecfa;
  margin: 0 auto 48px;
  max-width: 760px;
}
.solution-figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.figure-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 32px 16px;
  backdrop-filter: blur(8px);
}
.figure-num {
  font-size: 56px;
  font-weight: 900;
  color: #ffc987;
  line-height: 1;
  margin-bottom: 12px;
}
.figure-num small { font-size: 20px; }

/* ========================================================
   Reduction card（Before/After バーチャート）
======================================================== */
.reduction-card {
  background: #fff;
  border-radius: 20px;
  padding: 56px 40px 40px;
  max-width: 880px;
  margin: 48px auto 0;
  position: relative;
  color: var(--text);
  box-shadow: 0 12px 40px rgba(0, 30, 80, .15);
}
.reduction-header {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding: 8px 28px;
  font-weight: 900;
  font-size: 16px;
  white-space: nowrap;
  color: var(--text);
}
.reduction-header .reduction-brand { color: var(--accent-dark); margin-right: 4px; }
.reduction-lead {
  text-align: center;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  margin-bottom: 36px;
  line-height: 1.6;
}
.reduction-lead-highlight { color: var(--accent-dark); }

/* 達成バッジ（90% / 95% など） */
.achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  padding: 0 8px;
}
.achievement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent);
}
.achievement .laurel {
  width: 28px;
  height: 80px;
  flex-shrink: 0;
}
.achievement-text {
  text-align: center;
  flex: 1;
  max-width: 220px;
}
.achievement-label {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.achievement-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--accent-dark);
  line-height: 1;
}
.achievement-num small { font-size: 14px; margin-left: 4px; font-weight: 700; }

/* 比較バーチャート */
.comparison {
  position: relative;
  background: var(--accent-light);
  border-radius: 12px;
  padding: 32px 24px 16px;
  margin-bottom: 32px;
  overflow: hidden;
}
.comparison::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #f4f5f7;
  clip-path: polygon(0 0, 50% 0, 100% 60%, 100% 100%, 0 100%);
  z-index: 0;
}
.comparison-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
  min-height: 320px;
}
.comp-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.comp-callout {
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  position: relative;
  margin-bottom: 4px;
}
.comp-callout::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--accent);
}
.comp-service-tag {
  background: #fff;
  border: 1px dashed var(--accent);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 4px;
}
.comp-bar {
  width: 80%;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  border-radius: 6px 6px 0 0;
}
.comp-bar-tall {
  background: #9ea6b1;
  height: 260px;
}
.comp-bar-short {
  background: var(--accent);
  color: var(--accent-text);
  height: 110px;
}
.comp-cap {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
}

.reduction-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}
.reduction-note-highlight {
  color: var(--accent-dark);
  font-weight: 700;
}

/* ========================================================
   Features
======================================================== */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-list.feature-list-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-list.feature-list-4 .feature-card { padding: 32px 20px; }
.feature-list.feature-list-4 .feature-card h3 { font-size: 18px; }
@media (max-width: 1100px) {
  .feature-list.feature-list-4 { grid-template-columns: repeat(2, 1fr); }
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(11,61,140,.08);
}
.feature-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
}
.feature-icon { font-size: 48px; margin-bottom: 16px; }
.feature-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-card p {
  color: var(--text-light);
  font-size: 14px;
}

/* ========================================================
   Case
======================================================== */
.case { background: var(--bg-gray); }
.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15,32,80,.06);
  display: flex;
  flex-direction: column;
}
.case-image { background: var(--bg-light); }
.case-image .image-placeholder { border: none; border-radius: 0; }
.case-body { padding: 24px; flex: 1; }
.case-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.case-body h3 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 16px;
}
.case-body dl {
  margin: 0;
  font-size: 14px;
}
.case-body dt {
  font-weight: 700;
  color: var(--accent);
  margin-top: 12px;
}
.case-body dd {
  margin: 4px 0 0;
  color: var(--text-light);
}

/* ========================================================
   Service
======================================================== */
.service-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-cat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
}
.service-cat header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bg-light);
  margin-bottom: 16px;
}
.cat-icon { font-size: 28px; }
.service-cat h3 { color: var(--primary); font-size: 20px; }
.service-cat ul { columns: 2; column-gap: 24px; }
.service-cat li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
}
.service-cat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.service-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-light);
}

/* ========================================================
   Price
======================================================== */
.price { background: var(--bg-gray); }
.price-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
}
.price-card.recommended {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(243,156,18,.18);
  transform: translateY(-8px);
}
.price-card .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;
}
.price-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
}
.price-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
}
.price-num small { font-size: 14px; color: var(--text-light); margin-left: 4px; }
.price-card ul { margin-bottom: 24px; }
.price-card li {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.price-card li:last-child { border-bottom: 1px solid var(--border); }

/* ========================================================
   Flow
======================================================== */
.flow-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step;
  max-width: 800px;
  margin: 0 auto;
}
.flow-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px 24px 100px;
  position: relative;
}
.flow-list li::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  opacity: .12;
}
.flow-num {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.flow-list h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 6px;
}
.flow-list p { color: var(--text-light); font-size: 14px; }

/* ========================================================
   FAQ
======================================================== */
.faq { background: var(--bg-light); }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 56px 20px 56px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  font-family: inherit;
}
.faq-q::before {
  content: "Q";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary);
  transition: transform .2s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 56px;
  position: relative;
  background: #fafcff;
}
.faq-a::before {
  content: "A";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 20px 56px; }

/* ========================================================
   Final CTA
======================================================== */
.cta-final {
  background:
    linear-gradient(135deg, rgba(9,173,236,.92), rgba(4,107,210,.95)),
    radial-gradient(800px 400px at 10% 50%, rgba(255,144,34,.3), transparent);
  color: #fff;
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 16px;
}
.cta-final p {
  color: #e7f5fd;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================================
   Contact form
======================================================== */
.contact-form .form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
}
.req {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: #fafcff;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}
.form-check label { font-weight: 400; }
.form-check a { color: var(--primary); text-decoration: underline; }
.form-submit { text-align: center; margin-top: 24px; }

/* ========================================================
   Footer
======================================================== */
.site-footer {
  background: var(--primary-deep);
  color: #b6ccdc;
  padding: 64px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-logo {
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 12px;
}
.footer-links h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 15px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a:hover { color: #fff; }
.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: #7d97ad;
}

/* ========================================================
   Floating CTA
======================================================== */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: none;
}

/* ========================================================
   Responsive
======================================================== */
@media (max-width: 960px) {
  section { padding: 64px 0; }
  .header-nav,
  .header-tel { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .header-cta { margin-left: 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .stats-list,
  .problem-list,
  .solution-figures,
  .feature-list,
  .case-list,
  .service-categories,
  .price-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-cat ul { columns: 1; }
  .price-card.recommended { transform: none; }
  .flow-list li { padding: 20px 20px 20px 90px; }
  .floating-cta { display: block; }
  .header-cta .btn { display: none; }
}

@media (max-width: 480px) {
  .section-title { font-size: 22px; }
  .hero-title { font-size: 26px; }
  .stats-num { font-size: 32px; }
  .figure-num { font-size: 40px; }
  .contact-form .form { padding: 24px; }
  .reduction-card { padding: 48px 16px 24px; }
  .achievements { grid-template-columns: 1fr; gap: 16px; }
  .achievement .laurel { height: 60px; }
  .comp-bar-tall { height: 200px; }
  .comp-bar-short { height: 90px; }
  .comp-callout { font-size: 11px; }
  .comp-service-tag { font-size: 11px; }
}
