/*
Theme Name: 田邉コンサルティング
Theme URI: https://tanabe-shindan.com
Author: 田邉直樹
Author URI: https://tanabe-shindan.com
Description: 田邉中小企業診断士事務所 公式サイトテーマ
Version: 1.0
License: Private
Text Domain: tanabe-consulting
*/

/* ============================================
   田邉中小企業診断士事務所 - メインスタイル
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B2B5E;
  --navy-dark:  #111E42;
  --navy-light: #2A3F7A;
  --accent:     #2B5CE6;
  --accent-sub: #E8EFF9;
  --gold:       #B8924A;
  --white:      #FFFFFF;
  --off-white:  #F6F8FC;
  --text:       #1A1A2E;
  --text-mid:   #4A4A6A;
  --text-light: #8A8AAA;
  --border:     #DDE3F0;
  --shadow:     0 4px 24px rgba(27,43,94,0.10);
  --shadow-lg:  0 12px 48px rgba(27,43,94,0.15);

  --font-sans:  'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;

  --max-w: 1100px;
  --section-py: 96px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- レイアウト ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section-py) 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy-dark { background: var(--navy-dark); color: var(--white); }

/* ---------- 見出し ---------- */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section--navy .section-label,
.section--navy-dark .section-label { color: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 20px;
}
.section--navy .section-title,
.section--navy-dark .section-title { color: var(--white); }

.section-lead {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.9;
}
.section--navy .section-lead,
.section--navy-dark .section-lead { color: rgba(255,255,255,0.88); }

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-lead { margin: 0 auto; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-logo { display: flex; flex-direction: column; gap: 1px; }
.logo-en { font-size: 0.65rem; letter-spacing: 0.12em; color: var(--text-light); font-weight: 400; }
.logo-ja { font-size: 0.92rem; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; }

/* WordPress wp_nav_menu 生成ULのリセット */
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav ul,
.site-nav .menu { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.site-nav li { margin: 0; padding: 0; }

.site-nav a, .nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}
.site-nav a::after, .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.site-nav a:hover, .nav-link:hover { color: var(--navy); }
.site-nav a:hover::after, .nav-link:hover::after { transform: scaleX(1); }

.btn-contact {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white) !important;
  background: var(--navy);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-contact:hover { background: var(--navy-light); }
.btn-contact::after { display: none !important; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: #1F4DC4; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(43,92,230,0.35); }
.btn--outline { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn--outline-white { border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-arrow::after { content: '→'; font-size: 0.9em; }

/* ---------- ヒーロー ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(43,92,230,0.18) 0%, transparent 70%),
    linear-gradient(135deg, rgba(17,30,66,0.88) 0%, rgba(13,23,48,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.hero-eyebrow-text { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); font-weight: 500; text-transform: uppercase; }
.hero-title { font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; color: var(--white); line-height: 1.5; margin-bottom: 28px; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 0.95rem; color: rgba(255,255,255,0.88); line-height: 1.9; margin-bottom: 48px; max-width: 420px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; z-index: 1; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; mix-blend-mode: luminosity; }
.hero-image-placeholder { width: 100%; height: 100%; background: linear-gradient(145deg, #1E3270 0%, #0A1530 100%); display: flex; align-items: center; justify-content: center; }
.hero-image-placeholder p { color: rgba(255,255,255,0.2); font-size: 0.82rem; letter-spacing: 0.1em; text-align: center; }
.hero-scroll { position: absolute; bottom: 36px; left: 60px; display: flex; align-items: center; gap: 12px; z-index: 3; }
.hero-scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.3); }
.hero-scroll-text { font-size: 0.65rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); text-transform: uppercase; }

/* ---------- 実績バー ---------- */
.stats-bar { background: var(--accent); }
.stats-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { padding: 32px 40px; border-right: 1px solid rgba(255,255,255,0.2); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-family: var(--font-serif); font-size: 1.9rem; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.75); letter-spacing: 0.08em; }

/* ---------- 強み ---------- */
.strengths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.strength-card { background: var(--white); padding: 48px 36px; position: relative; }
.strength-num { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--accent); font-weight: 700; margin-bottom: 20px; display: block; }
.strength-card h3 { font-family: var(--font-serif); font-size: 1.08rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; line-height: 1.5; }
.strength-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.9; }
.strength-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.strength-card:hover::before { transform: scaleX(1); }

/* ---------- サービス ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.service-card { border: 1px solid var(--border); padding: 48px 40px; position: relative; background: var(--white); transition: box-shadow 0.3s, transform 0.3s; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-num { font-size: 2.5rem; font-weight: 700; color: var(--accent-sub); font-family: var(--font-serif); position: absolute; top: 28px; right: 36px; line-height: 1; }
.service-card h3 { font-family: var(--font-serif); font-size: 1.22rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; line-height: 1.4; }
.service-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 28px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; color: var(--accent); letter-spacing: 0.05em; transition: gap 0.2s; }
.service-link:hover { gap: 14px; }
.service-link::after { content: '→'; }

/* ---------- 事例（TOPページ） ---------- */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 36px 32px; }
.case-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); border: 1px solid rgba(184,146,74,0.4); padding: 3px 10px; margin-bottom: 16px; }
.case-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.5; }
.case-card p { font-size: 0.84rem; color: rgba(255,255,255,0.85); line-height: 1.85; }
.case-result { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.82rem; color: rgba(255,255,255,0.80); }
.case-result strong { color: var(--gold); font-weight: 500; }

/* ---------- プロフィール ---------- */
.profile-layout { display: grid; grid-template-columns: 320px 1fr; gap: 72px; align-items: start; }
.profile-photo-inner { aspect-ratio: 3/4; background: var(--off-white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.profile-photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.profile-photo-placeholder { text-align: center; color: var(--text-light); font-size: 0.82rem; letter-spacing: 0.08em; line-height: 2; }
.profile-photo-caption { margin-top: 16px; }
.profile-photo-caption h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.profile-photo-caption p { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }
.profile-story { border-left: 2px solid var(--border); padding-left: 32px; margin: 24px 0 32px; }
.profile-story p { font-size: 0.92rem; color: var(--text-mid); line-height: 2; margin-bottom: 1em; }
.profile-story p:last-child { margin-bottom: 0; }
.profile-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.profile-meta-item dt { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-light); text-transform: uppercase; margin-bottom: 6px; }
.profile-meta-item dd { font-size: 0.88rem; color: var(--text); line-height: 1.7; }

/* ---------- CTA ---------- */
.cta-section { background: var(--navy-dark); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(43,92,230,0.2) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 1; }
.cta-section .section-label { color: var(--gold); }
.cta-section .section-title { color: var(--white); }
.cta-section .section-lead { color: rgba(255,255,255,0.88); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- フッター ---------- */
.site-footer { background: #0A0F1E; color: rgba(255,255,255,0.75); padding: 56px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; margin-bottom: 48px; align-items: start; }
.footer-logo .logo-ja { color: var(--white); font-size: 1rem; }
.footer-logo .logo-en { color: rgba(255,255,255,0.6); }
.footer-info { margin-top: 16px; font-size: 0.78rem; line-height: 2; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; text-align: right; }
.footer-nav a, .footer-nav ul li a { font-size: 0.78rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-nav a:hover, .footer-nav ul li a:hover { color: var(--white); }
/* WordPress nav menu reset in footer */
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-nav li { margin: 0; padding: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.72rem; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.72rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ---------- 内部ページ ---------- */
.page-hero { background: var(--navy-dark); padding: 148px 0 72px; position: relative; overflow: hidden; }
.page-hero-label { font-size: 0.68rem; letter-spacing: 0.18em; color: var(--gold); font-weight: 500; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.page-hero-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; color: var(--white); line-height: 1.45; margin-bottom: 20px; }
.page-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.85); max-width: 560px; line-height: 1.9; }

.check-list { margin: 20px 0; }
.check-list li { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--border); }
.check-list li:first-child { border-top: 1px solid var(--border); }
.check-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; border-radius: 50%; background: var(--accent-sub); border: 1.5px solid var(--accent); }

.step-list { counter-reset: step; }
.step-list li { counter-increment: step; position: relative; padding: 28px 0 28px 72px; border-bottom: 1px solid var(--border); }
.step-list li:first-child { border-top: 1px solid var(--border); }
.step-list li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 24px; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: var(--accent-sub); line-height: 1; }
.step-list li strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.step-list li p { font-size: 0.88rem; margin: 0; color: var(--text-mid); }

.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.compare-table th { background: var(--navy); color: var(--white); padding: 14px 20px; text-align: left; font-weight: 500; font-size: 0.82rem; letter-spacing: 0.05em; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--text-mid); vertical-align: top; line-height: 1.7; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }

.case-article { border: 1px solid var(--border); padding: 40px; margin-bottom: 24px; }
.case-article-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); border: 1px solid var(--accent); padding: 3px 10px; margin-bottom: 16px; }
.case-article h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.case-dl dt { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-light); text-transform: uppercase; margin-bottom: 4px; margin-top: 16px; }
.case-dl dt:first-child { margin-top: 0; }
.case-dl dd { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }

/* ---------- お問い合わせフォーム ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 72px; align-items: start; }
.form-group { margin-bottom: 28px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; margin-bottom: 8px; }
.form-label .required { color: #E05252; font-size: 0.7rem; margin-left: 6px; font-weight: 400; }
/* CF7デフォルト要素を統一 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea,
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  border-radius: 0;
  line-height: 1.6;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus,
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(43,92,230,0.1); }
.wpcf7 textarea, textarea.form-control { height: 160px; resize: vertical; }
.wpcf7 input[type="submit"] {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.wpcf7 input[type="submit"]:hover { background: #1F4DC4; transform: translateY(-1px); }
.wpcf7-response-output { margin-top: 16px; padding: 12px 16px; font-size: 0.85rem; border-radius: 2px; }

.contact-info-box { background: var(--off-white); padding: 36px; border-top: 3px solid var(--navy); }
.contact-info-box h3 { font-family: var(--font-serif); font-size: 1rem; color: var(--navy); margin-bottom: 20px; }
.contact-info-dl dt { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-light); text-transform: uppercase; margin-top: 16px; margin-bottom: 4px; }
.contact-info-dl dt:first-child { margin-top: 0; }
.contact-info-dl dd { font-size: 0.88rem; color: var(--text); line-height: 1.7; }

/* パンくず */
.breadcrumb { padding: 16px 0; border-bottom: 1px solid var(--border); }
.breadcrumb-list { display: flex; gap: 8px; font-size: 0.75rem; color: var(--text-light); }
.breadcrumb-list li + li::before { content: '/'; margin-right: 8px; }
.breadcrumb-list a { color: var(--accent); }

/* ---------- ハンバーガーボタン ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- モバイルドロワー ---------- */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--white);
  z-index: 150;
  padding: 88px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-menu,
.mobile-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu li,
.mobile-nav .menu li { border-bottom: 1px solid var(--border); }
.mobile-menu li a,
.mobile-nav .menu li a {
  display: block;
  padding: 16px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 140;
}
.mobile-nav-overlay.is-open { display: block; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 80px 28px; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-layout .profile-photo { max-width: 280px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .container { padding: 0 20px; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: 1.8rem; }
  .hero-content { padding: 64px 20px; }
  .strengths-grid,
  .services-grid,
  .cases-grid,
  .profile-meta { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .header-inner { padding: 0 20px; }
  .page-hero { padding: 120px 0 56px; }
}
