/* ==========================================================================
   介護経営パートナーズ  共通スタイルシート
   ========================================================================== */

/* ---- リセット ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }

/* ---- カラー・変数 ------------------------------------------------------- */
:root {
  --navy-900: #0a1830;
  --navy-800: #0f2140;
  --navy-700: #16304f;
  --navy-600: #1f4068;
  --navy-500: #2c5586;
  --gold: #b8934a;
  --gold-light: #d8bd82;
  --pale-blue: #a9c6e8;
  --bg: #f6f7f9;
  --bg-alt: #eef1f5;
  --white: #ffffff;
  --text: #1c2530;
  --text-muted: #5b6674;
  --border: #dfe3e9;
  --border-dark: #2c3e5c;
  --radius: 4px;
  --max-width: 1120px;
  --font: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

/* ---- 基本 --------------------------------------------------------------- */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
main { display: block; }

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

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

a.link-inline {
  color: var(--navy-600);
  border-bottom: 1px solid var(--pale-blue);
}
a.link-inline:hover { color: var(--gold); border-color: var(--gold); }

/* ---- スキップリンク ------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy-900);
  padding: 8px 16px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.site-header {
  background: var(--navy-900);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-dark);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.brand .brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.brand .brand-name span { color: var(--gold-light); }
.brand .brand-tagline {
  font-size: 0.65rem;
  color: var(--pale-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ナビ（チェックボックスハック：JSなしのモバイルメニュー） */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle-label {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle-label svg { width: 26px; height: 26px; }

.global-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: center;
}
.global-nav a {
  display: inline-block;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius);
  white-space: nowrap;
}
.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--navy-900);
  background: var(--gold-light);
}
.global-nav .nav-cta {
  background: var(--gold);
  color: var(--navy-900);
  font-weight: 700;
}
.global-nav .nav-cta:hover { background: var(--gold-light); }

@media (max-width: 900px) {
  .nav-toggle-label { display: flex; }
  .global-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-800);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--border-dark);
  }
  .global-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    gap: 2px;
  }
  .global-nav a { padding: 12px 8px; width: 100%; }
  .nav-toggle:checked ~ .global-nav { max-height: 640px; }
}

/* ==========================================================================
   ヒーロー
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: var(--white);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(184, 147, 74, 0.35);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 700;
  max-width: 760px;
  margin-bottom: 18px;
}
.hero-tagline {
  font-size: 0.95rem;
  color: var(--pale-blue);
  letter-spacing: 0.05em;
  font-style: italic;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 56px 0;
}
.page-hero .hero-eyebrow { margin-bottom: 12px; }
.page-hero h1 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.page-hero p { color: var(--pale-blue); max-width: 680px; margin-bottom: 0; }

/* ---- パンくず ------------------------------------------------------------ */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.breadcrumb a { color: var(--navy-600); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-hidden] { margin: 0 6px; color: var(--border-dark); }

/* ==========================================================================
   ボタン
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-900);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-600); }
.btn svg { width: 16px; height: 16px; }

/* ==========================================================================
   セクション共通
   ========================================================================== */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-tight { padding: 56px 0; }

.section-head { margin-bottom: 40px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin-bottom: 12px; }
.section-head p { color: var(--text-muted); margin-bottom: 0; }

.divider-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
}
.center .divider-rule { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   カード類
   ========================================================================== */
.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { border-color: var(--gold); box-shadow: 0 10px 24px rgba(10, 24, 48, 0.08); transform: translateY(-2px); }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 { font-size: 1.08rem; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 18px; }
.card .card-more {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card:hover .card-more { color: var(--gold); }
.card a.card-link-wrap {
  position: absolute;
  inset: 0;
}
.card.link-card { position: relative; }

/* サービスハブ用カード（8サービス） */
.service-hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.service-hub-card h3 { font-size: 1rem; margin-bottom: 8px; }
.service-hub-card p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 0; }
.service-hub-card .tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--navy-600);
  background: var(--bg-alt);
  padding: 3px 8px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.service-hub-card.prep .tag { color: var(--text-muted); }

/* ==========================================================================
   CTA バナー
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; }
.cta-banner p { color: var(--pale-blue); margin-bottom: 28px; }

/* ==========================================================================
   ステップ（コンサル開始までの流れ）
   ========================================================================== */
.step-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
  counter-reset: step;
}
@media (max-width: 900px) { .step-list { grid-template-columns: 1fr; } }
.step-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  position: relative;
}
.step-item .step-num {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.step-item h3 { font-size: 0.95rem; margin-bottom: 6px; }
.step-item p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }

/* ==========================================================================
   お悩みリスト
   ========================================================================== */
.issue-list { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .issue-list { grid-template-columns: 1fr; } }
.issue-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.92rem;
}
.issue-item svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }

/* ==========================================================================
   特徴（3つの特徴）
   ========================================================================== */
.feature-block {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.feature-block:last-child { border-bottom: none; }
.feature-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.feature-block h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-block p { color: var(--text-muted); margin-bottom: 0; }

/* ==========================================================================
   事例（CASE）
   ========================================================================== */
.case-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  margin-bottom: 24px;
}
.case-block:last-child { margin-bottom: 0; }
.case-tag {
  display: inline-block;
  background: var(--navy-900);
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.case-block h3 { font-size: 1.1rem; margin-bottom: 12px; }
.case-block p { color: var(--text-muted); margin-bottom: 0; }

/* 事例ページ用の詳細レイアウト */
.case-study {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  margin-bottom: 28px;
}
.case-study:last-child { margin-bottom: 0; }
.case-study h2 { font-size: 1.25rem; margin-bottom: 6px; }
.case-study .case-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; }
.case-study h3 {
  font-size: 0.95rem;
  color: var(--navy-700);
  margin: 22px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}
.case-study p { color: var(--text); font-size: 0.94rem; }

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 18px 0;
}
@media (max-width: 640px) { .case-metrics { grid-template-columns: 1fr; } }
.case-metric {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.case-metric .label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
.case-metric .before-after { display: flex; align-items: baseline; gap: 8px; font-weight: 700; color: var(--navy-800); }
.case-metric .before-after .arrow { color: var(--gold); }

/* ==========================================================================
   コラム
   ========================================================================== */
.column-list { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .column-list { grid-template-columns: 1fr; } }
.column-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.column-card .column-thumb {
  height: 8px;
  background: linear-gradient(90deg, var(--navy-800), var(--gold));
}
.column-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.column-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.03em; }
.column-card h3 { font-size: 1rem; margin-bottom: 12px; line-height: 1.6; }
.column-card .card-more { margin-top: auto; }

.column-list.full .column-card-body { position: relative; }

article.column-article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
@media (max-width: 640px) { article.column-article { padding: 26px 20px; } }
.article-header { border-bottom: 1px solid var(--border); padding-bottom: 24px; margin-bottom: 28px; }
.article-header .column-date { margin-bottom: 10px; }
.article-header h1 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); color: var(--navy-900); }
.article-body h2 {
  font-size: 1.08rem;
  color: var(--navy-800);
  margin: 34px 0 14px;
  padding: 10px 16px;
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
}
.article-body p { margin-bottom: 1.3em; color: var(--text); }
.article-body p.note { font-size: 0.85rem; color: var(--text-muted); }
.article-nav {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   準備中ページ
   ========================================================================== */
.prep-box {
  background: var(--white);
  border: 1px dashed var(--border-dark);
  border-radius: var(--radius);
  padding: 60px 32px;
  text-align: center;
}
.prep-box svg { width: 48px; height: 48px; color: var(--gold); margin: 0 auto 20px; }
.prep-box h2 { font-size: 1.2rem; margin-bottom: 12px; }
.prep-box p { color: var(--text-muted); margin-bottom: 26px; }

/* ==========================================================================
   フォーム
   ========================================================================== */
.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
@media (max-width: 640px) { .form-box { padding: 26px 20px; } }
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--navy-900);
}
.form-row .required {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-row .optional {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 0.95rem;
  color: var(--text);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  background: var(--white);
}
.form-row textarea { min-height: 160px; resize: vertical; }
.checkbox-group { display: flex; flex-direction: column; gap: 12px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.checkbox-item input { width: 18px; height: 18px; accent-color: var(--navy-700); }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }
.form-submit { text-align: center; margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
@media (min-width: 480px) { .form-submit .btn { width: auto; padding: 15px 48px; } }

/* ==========================================================================
   会社情報テーブル
   ========================================================================== */
.info-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table th, .info-table td { text-align: left; padding: 18px 24px; font-size: 0.94rem; }
.info-table th { width: 200px; background: var(--bg-alt); color: var(--navy-900); font-weight: 700; }
.info-table td { color: var(--text); }
@media (max-width: 640px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: auto; }
  .info-table th { border-bottom: none; padding-bottom: 6px; }
  .info-table td { padding-top: 6px; padding-bottom: 18px; }
}

/* ==========================================================================
   プライバシーポリシー本文
   ========================================================================== */
.policy-body h2 {
  font-size: 1.1rem;
  color: var(--navy-800);
  margin: 30px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.policy-body h2:first-child { margin-top: 0; }
.policy-body p { color: var(--text); font-size: 0.94rem; }
.policy-body ul { margin: 0 0 1.2em; }
.policy-body li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.94rem;
  color: var(--text);
}
.policy-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ==========================================================================
   サンクスページ
   ========================================================================== */
.thanks-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 72px 32px;
  text-align: center;
}
.thanks-box .check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thanks-box .check-icon svg { width: 32px; height: 32px; }
.thanks-box h1 { font-size: 1.3rem; margin-bottom: 14px; }
.thanks-box p { color: var(--text-muted); margin-bottom: 30px; }

/* ==========================================================================
   フッター
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  color: var(--pale-blue);
  margin-top: 80px;
}
.footer-main {
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
}
.footer-brand .brand-name { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.footer-brand .brand-name span { color: var(--gold-light); }
.footer-brand p { font-size: 0.85rem; color: var(--pale-blue); line-height: 1.8; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: var(--pale-blue); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(169, 198, 232, 0.7);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(169, 198, 232, 0.7); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ==========================================================================
   ユーティリティ
   ========================================================================== */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.bg-list { display: flex; flex-direction: column; gap: 10px; }

@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .hero { padding: 60px 0 64px; }
  .cta-banner { padding: 36px 22px; }
}
