/* ============================================
   えばらまち整骨院 - Shared Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a5c5e;
  --primary-light: #237577;
  --primary-dark: #0f3d3f;
  --primary-50: rgba(26, 92, 94, 0.05);
  --primary-100: rgba(26, 92, 94, 0.1);
  --accent: #c9a96e;
  --accent-light: #dfc28e;
  --accent-dark: #a68945;
  --white: #ffffff;
  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;
  --line-green: #06c755;
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --section-padding: 100px 0;
  --container-width: 1100px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }

/* --- Animations --- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.5; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

/* --- Section Title --- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: 0.05em;
}
.section-title--light { color: var(--white); }
.section-title--light .title-en { color: rgba(255,255,255,0.4); }
.section-title--left { text-align: left; }
.title-en {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.02em; cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none; text-align: center; justify-content: center;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 20px rgba(26,92,94,0.3); }
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 6px 30px rgba(26,92,94,0.4); transform: translateY(-2px); }
.btn-secondary { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary-50); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,0.1); flex-direction: column; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn-line { background: var(--line-green); color: var(--white); box-shadow: 0 4px 20px rgba(6,199,85,0.3); flex-direction: column; }
.btn-line:hover { background: #05b04c; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(6,199,85,0.4); }
.btn-lg { padding: 20px 40px; font-size: 1.1rem; min-width: 260px; }
.btn-sub { font-size: 0.8rem; font-weight: 400; opacity: 0.85; }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* --- Image Placeholder --- */
.img-placeholder {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: var(--gray-400);
  font-size: 0.85rem; overflow: hidden;
  position: relative; border: 2px dashed var(--gray-300);
}
.img-placeholder svg { opacity: 0.3; }
.img-placeholder span { font-weight: 500; }
.img-placeholder--dark {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 100%);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
}
.img-placeholder--dark svg { opacity: 0.2; }
.img-placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  transition: all 0.4s var(--ease);
}
.header.is-scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.header--solid {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06) !important;
}
.header-inner {
  max-width: var(--container-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-main {
  font-family: var(--font-serif); font-size: 1.3rem;
  font-weight: 700; color: var(--primary); letter-spacing: 0.08em;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 0.85rem; font-weight: 500;
  color: var(--gray-600); letter-spacing: 0.02em; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.is-active { color: var(--primary); }
.nav-link.is-active::after { width: 100%; }
.nav-cta {
  background: var(--primary); color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px; font-size: 0.8rem;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--primary-light); }
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-700); transition: all 0.3s var(--ease); }
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   PAGE HERO (sub pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative; text-align: center; color: var(--white);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; }
.page-hero-en {
  font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-serif); font-size: 2.2rem;
  font-weight: 700; letter-spacing: 0.08em;
}
.page-hero-sub {
  margin-top: 16px; font-size: 0.95rem; opacity: 0.8; font-weight: 300;
}
.breadcrumb {
  margin-top: 24px; font-size: 0.8rem; opacity: 0.6;
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { opacity: 1; }

/* ============================================
   HERO (top page)
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; text-align: center; color: var(--white);
  padding: 0 24px; max-width: 700px;
}
.hero-eyebrow {
  display: inline-block; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.2em;
  padding: 8px 24px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}
.hero-title {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 700;
  line-height: 1.4; letter-spacing: 0.05em; margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}
.hero-accent { color: var(--accent-light); position: relative; }
.hero-accent::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; background: var(--accent-light); opacity: 0.4;
}
.hero-sub {
  font-size: 1rem; line-height: 2; opacity: 0.9; margin-bottom: 28px; font-weight: 300;
  animation: fadeInUp 0.8s var(--ease) 0.6s both;
}
.hero-badges {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px;
  animation: fadeInUp 0.8s var(--ease) 0.7s both;
}
.badge {
  font-size: 0.8rem; font-weight: 500; padding: 6px 18px;
  background: rgba(255,255,255,0.12); border-radius: 50px;
  letter-spacing: 0.05em; backdrop-filter: blur(10px);
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease) 0.8s both;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   COMMON SECTIONS
   ============================================ */

/* --- Trouble --- */
.trouble { padding: var(--section-padding); background: var(--gray-50); }
.trouble-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 700px; margin: 0 auto 40px;
}
.trouble-card {
  background: var(--white); padding: 28px 16px; border-radius: 16px;
  text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s var(--ease);
}
.trouble-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.trouble-icon {
  width: 64px; height: 64px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-50); border-radius: 50%; color: var(--primary);
}
.trouble-card p { font-size: 0.9rem; font-weight: 500; line-height: 1.5; color: var(--gray-700); }
.trouble-lead { text-align: center; font-size: 1rem; color: var(--gray-600); line-height: 2; }
.trouble-lead strong { color: var(--primary); }

/* --- Two Column --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* --- Feature Cards --- */
.feature-number {
  font-family: var(--font-serif); font-size: 1.5rem;
  font-weight: 700; color: var(--accent); line-height: 1; min-width: 36px;
}

/* --- Menu Cards --- */
.menu-section { padding: var(--section-padding); background: var(--primary-dark); position: relative; }
.menu-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.menu-section .container { position: relative; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.menu-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
  padding: 0; text-align: center; transition: all 0.4s var(--ease); overflow: hidden;
}
.menu-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.menu-card-img { width: 100%; aspect-ratio: 4/3; }
.menu-card-body { padding: 28px 24px; }
.menu-card-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,169,110,0.15); border-radius: 50%; color: var(--accent-light);
}
.menu-card-title {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 12px; letter-spacing: 0.03em;
}
.menu-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }
.menu-card-price { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--accent-light); }
.menu-card-price span { font-size: 0.75rem; font-weight: 400; opacity: 0.8; }
.menu-note { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 2; }

/* --- Flow Steps --- */
.flow-section { padding: var(--section-padding); background: var(--white); }
.flow-steps { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; position: relative; }
.flow-steps::before {
  content: ''; position: absolute; left: 28px; top: 30px; bottom: 30px;
  width: 2px; background: linear-gradient(to bottom, var(--primary-100), var(--accent), var(--primary-100));
}
.flow-step { display: flex; gap: 28px; align-items: flex-start; padding: 24px 0; position: relative; }
.flow-step-number {
  width: 58px; height: 58px; min-width: 58px;
  background: var(--primary); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
  position: relative; z-index: 1; box-shadow: 0 4px 15px rgba(26,92,94,0.25);
}
.flow-step-content h3 {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600;
  color: var(--gray-800); margin-bottom: 8px; padding-top: 4px;
}
.flow-step-content p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }
.flow-step-img { margin-top: 16px; border-radius: 12px; overflow: hidden; }

/* --- Voice --- */
.voice-section { padding: var(--section-padding); background: var(--gray-50); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card {
  background: var(--white); border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: all 0.3s var(--ease);
}
.voice-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.voice-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.voice-text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.9; margin-bottom: 20px; }
.voice-author {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 16px; border-top: 1px solid var(--gray-200);
}
.voice-name { font-weight: 600; font-size: 0.9rem; color: var(--gray-800); }
.voice-meta { font-size: 0.8rem; color: var(--gray-400); }

/* --- CTA Section --- */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%); }
.cta-section--dark {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}
.cta-content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-title { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--gray-800); margin-bottom: 16px; }
.cta-section--dark .cta-title { color: var(--white); }
.cta-sub { font-size: 0.95rem; color: var(--gray-500); line-height: 2; margin-bottom: 40px; }
.cta-section--dark .cta-sub { color: rgba(255,255,255,0.7); }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* --- Access --- */
.access-section { padding: var(--section-padding); background: var(--primary); color: var(--white); }
.access-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.access-map iframe { border-radius: 12px; }
.access-info { display: flex; flex-direction: column; gap: 28px; }
.info-block h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 600; margin-bottom: 10px; color: var(--accent-light);
}
.info-block p { font-size: 0.9rem; line-height: 1.8; opacity: 0.9; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; margin-top: 8px; }
.hours-table th, .hours-table td { padding: 8px 6px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hours-table th { font-weight: 600; color: var(--accent-light); font-size: 0.75rem; }
.hours-table td:first-child { text-align: left; font-size: 0.75rem; white-space: nowrap; }
.hours-note { font-size: 0.75rem !important; opacity: 0.6 !important; margin-top: 8px; }
.phone-link {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.05em;
}
.phone-link:hover { color: var(--accent-light); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900); color: var(--gray-400); padding: 60px 0 24px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: 0.08em; }
.footer-address, .footer-tel { font-size: 0.8rem; margin-top: 8px; line-height: 1.6; }
.footer-tel a { color: var(--gray-400); }
.footer-tel a:hover { color: var(--accent-light); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.8rem; color: var(--gray-400); }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; text-align: center; font-size: 0.75rem; color: var(--gray-500); }

/* ============================================
   FIXED CTA (Mobile)
   ============================================ */
.fixed-cta { position: fixed; bottom: 0; left: 0; right: 0; display: none; z-index: 999; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
.fixed-cta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 16px; font-size: 0.9rem; font-weight: 600; text-align: center;
}
.fixed-cta-tel { background: var(--primary); color: var(--white); }
.fixed-cta-line { background: var(--line-green); color: var(--white); }

/* ============================================
   EXTRA COMPONENTS
   ============================================ */

/* --- Gallery Grid --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }

/* --- Info Cards --- */
.info-card {
  background: var(--white); border-radius: 16px; padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.info-card h3 {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--gray-800); margin-bottom: 12px;
}
.info-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.faq-question {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--gray-700);
  transition: background 0.3s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question .q-mark {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; min-width: 32px;
  background: var(--primary); color: var(--white);
  border-radius: 50%; font-family: var(--font-serif); font-size: 0.9rem; font-weight: 700;
}
.faq-question .arrow {
  margin-left: auto; transition: transform 0.3s;
  color: var(--gray-400);
}
.faq-item.is-open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding: 0 24px 20px 72px;
  font-size: 0.9rem; color: var(--gray-600); line-height: 1.9;
}
.faq-item.is-open .faq-answer { max-height: 500px; }

/* --- Table Styled --- */
.styled-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.styled-table th, .styled-table td { padding: 16px 20px; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--gray-200); }
.styled-table th { background: var(--primary); color: var(--white); font-weight: 600; font-size: 0.85rem; }
.styled-table td:last-child { text-align: right; font-family: var(--font-serif); font-weight: 600; color: var(--primary); }

/* --- Section with BG --- */
.section-light { padding: var(--section-padding); background: var(--white); }
.section-gray { padding: var(--section-padding); background: var(--gray-50); }

/* --- Text Blocks --- */
.text-block { max-width: 800px; margin: 0 auto; }
.text-block h3 {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600;
  color: var(--gray-800); margin-bottom: 16px; line-height: 1.6;
}
.text-block p { font-size: 0.95rem; color: var(--gray-600); line-height: 2; margin-bottom: 16px; }
.text-block p:last-child { margin-bottom: 0; }

/* --- Highlight Box --- */
.highlight-box {
  background: var(--primary-50); border-left: 4px solid var(--primary);
  padding: 24px 28px; border-radius: 0 12px 12px 0; margin: 32px 0;
}
.highlight-box p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.9; margin: 0; }

/* --- Stat Cards --- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  text-align: center; padding: 32px 16px; background: var(--white);
  border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stat-number {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700;
  color: var(--primary); line-height: 1;
}
.stat-number span { font-size: 1rem; color: var(--gray-500); }
.stat-label { font-size: 0.85rem; color: var(--gray-500); margin-top: 8px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  :root { --section-padding: 72px 0; }
  .nav {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  }
  .nav.is-open { display: flex; }
  .nav-link { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 0.9rem; }
  .trouble-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse { direction: ltr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .voice-grid { grid-template-columns: 1fr; gap: 16px; }
  .access-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .fixed-cta { display: flex; }
  .footer { padding-bottom: 80px; }
  .section-title { font-size: 1.5rem; margin-bottom: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-title { font-size: 1.7rem; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .trouble-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trouble-card { padding: 20px 12px; }
  .menu-grid { grid-template-columns: 1fr; }
  .flow-steps::before { left: 20px; }
  .flow-step-number { width: 42px; height: 42px; min-width: 42px; font-size: 0.9rem; }
  .flow-step { gap: 20px; }
  .btn-lg { min-width: 100%; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
