/* ==========================================================================
   便利屋ストロング郡山本店 — デモLPサイト
   ========================================================================== */

:root {
  /* Color tokens */
  --green-950: #0f1e17;
  --green-900: #17301f;
  --green-850: #1b3823;
  --green-800: #204a2e;
  --green-700: #2e5c3c;
  --green-600: #3f7250;

  --cream-50: #faf6ec;
  --cream-100: #f2ead9;
  --cream-200: #e9dec4;

  --gold-500: #c99a3d;
  --gold-600: #ad8129;
  --gold-100: #f3e2b8;

  --ink: #1f2a22;
  --ink-soft: #57614f;
  --ink-faint: #7c8577;

  --white: #ffffff;

  --font-display: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', sans-serif;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-card: 0 10px 30px -16px rgba(15, 30, 23, 0.35);
  --shadow-soft: 0 24px 48px -24px rgba(15, 30, 23, 0.4);
  --shadow-lift: 0 26px 40px -18px rgba(15, 30, 23, 0.45);

  --section-py: clamp(4.5rem, 8vw, 7rem);
  --container-w: 1180px;
  --container-pad: clamp(20px, 5vw, 32px);

  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img, i.ph { display: inline-block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, dl, dd, figure, blockquote { margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

h1, h2, h3, p, span, a, dt, dd, cite, figcaption, li {
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-900);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

/* ---------- Typography ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--green-900);
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem);
  line-height: 1.4;
  max-width: 18em;
}
.section-title.on-dark { color: var(--white); }

.section-sub {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  max-width: 42em;
  line-height: 1.85;
}
.section-sub.on-dark { color: rgba(255, 255, 255, 0.82); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

/* ---------- Icon-line (LINE brand mark) ---------- */
.icon-line { display: inline-block; vertical-align: -3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  line-height: 1;
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), background-color 0.3s var(--ease-soft);
  will-change: transform;
}
.btn i.ph { font-size: 1.1em; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn-line {
  background: #06c755;
  color: var(--white);
  box-shadow: 0 10px 26px -12px rgba(6, 199, 85, 0.55);
}
.btn-line:hover { background: #05b34c; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--green-900);
  border: 1.5px solid var(--green-800);
}
.btn-outline:hover { background: var(--green-900); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Photos ---------- */
.ph-block {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  background: var(--green-900);
}
.ph-caption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(15, 30, 23, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
  letter-spacing: 0.02em;
}

.ph-hover { transition: transform 0.6s var(--ease-soft); }
.ph-hover:hover { transform: translateY(-8px); }
.ph-hover .ph-block { transition: box-shadow 0.6s var(--ease-soft); }
.ph-hover:hover .ph-block { box-shadow: var(--shadow-lift); }

/* ---------- Reveal (group rise animation) ---------- */
.reveal-group .reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
}
.reveal-group.in-view .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-group .reveal-item { opacity: 1; transform: none; transition: none; }
  .ph-hover, .ph-hover .ph-block, .btn { transition: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 48, 31, 0.08);
  transition: box-shadow 0.3s var(--ease-soft);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(15, 30, 23, 0.5); }

.header-inner {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  color: var(--green-900);
  flex-shrink: 0;
}
.brand-name { font-weight: 900; font-size: 1.15rem; }
.brand-sub { font-weight: 500; font-size: 0.78rem; color: var(--ink-soft); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-block: 4px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-soft);
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--green-900);
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-soft), opacity 0.35s var(--ease-soft);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--cream-50);
  z-index: 90;
  padding: 32px var(--container-pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-soft), visibility 0.4s;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--green-900);
  padding: 16px 4px;
  border-bottom: 1px solid var(--cream-200);
}
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(560px, calc(100dvh - var(--header-h)), 860px);
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 128px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media .ph-block { border-radius: 0; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 30, 23, 0.1) 0%, rgba(15, 30, 23, 0.58) 60%, rgba(15, 30, 23, 0.85) 100%),
    linear-gradient(90deg, rgba(15, 30, 23, 0.5) 0%, rgba(15, 30, 23, 0) 48%);
  pointer-events: none;
}
.hero-media .ph-caption { bottom: 116px; right: 24px; z-index: 1; }

.hero-content {
  position: relative;
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.hero-card {
  max-width: 620px;
  background: rgba(15, 30, 23, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
}
.hero-lead {
  font-size: 0.95rem;
  color: var(--gold-100);
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}
.hero-lead::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 2px;
  background: var(--gold-500);
}
.hero-title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 1.3rem + 3vw, 3.1rem);
  line-height: 1.35;
  max-width: 11em;
}
.hero-sub {
  margin-top: 16px;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.86);
  max-width: 28em;
  line-height: 1.8;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trustbar {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(100% - 2 * var(--container-pad), 980px);
  background: var(--cream-50);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 2;
}
.trustbar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-900);
  border-right: 1px solid var(--cream-200);
  text-align: center;
}
.trustbar-item:last-child { border-right: none; }
.trustbar-item i.ph { font-size: 1.3rem; color: var(--gold-600); flex-shrink: 0; }

/* ==========================================================================
   Generic Section
   ========================================================================== */
.section { padding-block: var(--section-py); }

/* ---------- Pain points ---------- */
.section-pain { background: var(--cream-50); }
.section-pain .section-head { text-align: center; margin-inline: auto; }
.section-pain .section-sub { margin-inline: auto; }

.pain-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.pain-card i.ph { font-size: 2.1rem; color: var(--green-800); }
.pain-card p { margin-top: 14px; font-weight: 700; color: var(--ink); font-size: 0.98rem; line-height: 1.6; }

.pain-footnote {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-200);
  text-align: center;
  font-weight: 700;
  color: var(--green-900);
  font-size: 1.05rem;
}

/* ---------- Services ---------- */
.section-services { background: var(--cream-100); }
.section-services .section-head { text-align: center; margin-inline: auto; }
.section-services .section-sub { margin-inline: auto; }

.service-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold-500);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-900);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.service-card h3 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-900);
}
.service-card p { margin-top: 8px; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.7; }

/* ---------- Why chosen (reasons) ---------- */
.section-reasons { background: var(--green-900); }
.reasons-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.reasons-list { margin-top: 32px; display: flex; flex-direction: column; }
.reasons-list li {
  display: flex;
  gap: 22px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.reasons-list li:last-child { padding-bottom: 0; }
.reasons-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold-500);
  flex-shrink: 0;
  line-height: 1;
}
.reasons-list h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--white); }
.reasons-list p { margin-top: 8px; color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; line-height: 1.7; }

.reasons-media { aspect-ratio: 4 / 5; position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.reasons-media .ph-block { border-radius: var(--radius-lg); }

/* ---------- Work examples ---------- */
.section-work { background: var(--cream-50); }
.section-work .section-head { text-align: center; margin-inline: auto; }

.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.work-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}
.work-photo--large { grid-row: span 2; aspect-ratio: auto; }
.work-photo .ph-block { border-radius: var(--radius-md); }
.work-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(15, 30, 23, 0.78), transparent);
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 8px;
  z-index: 2;
}
.work-photo figcaption strong { font-family: var(--font-display); font-size: 1rem; }
.work-photo figcaption span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.85); }

.work-footnote { margin-top: 24px; text-align: center; font-size: 0.82rem; color: var(--ink-faint); }

/* ---------- Pricing ---------- */
.section-pricing { background: var(--cream-100); }
.pricing-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.pricing-card {
  margin-top: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-card);
}
.pricing-headline { padding-bottom: 22px; border-bottom: 1px solid var(--cream-200); }
.pricing-label { display: block; font-weight: 700; color: var(--ink-soft); font-size: 0.92rem; }
.pricing-value { display: block; margin-top: 10px; font-family: var(--font-display); font-size: 1rem; color: var(--green-900); }
.pricing-value strong { font-size: clamp(2.2rem, 2vw + 1rem, 2.7rem); color: var(--gold-600); }
.pricing-note { display: block; margin-top: 4px; font-size: 0.85rem; color: var(--ink-faint); }

.pricing-table { margin-top: 20px; display: flex; flex-direction: column; }
.pricing-table > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-block: 12px;
  border-top: 1px solid var(--cream-200);
  font-size: 0.92rem;
}
.pricing-table dt { color: var(--ink-soft); font-weight: 700; }
.pricing-table dd { margin: 0; color: var(--ink); text-align: right; }

.pricing-caveat {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--gold-100);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  line-height: 1.7;
}
.pricing-caveat i.ph { flex-shrink: 0; margin-top: 3px; color: var(--gold-600); }

.pricing-layout .btn-block { margin-top: 24px; }

.pricing-media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; }
.pricing-media .ph-block { border-radius: var(--radius-lg); }

/* ---------- Flow ---------- */
.section-flow { background: var(--cream-50); }
.section-flow .section-head { text-align: center; margin-inline: auto; }
.section-flow .section-sub { margin-inline: auto; }

.flow-steps {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.flow-steps::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--cream-200);
  z-index: 0;
}
.flow-steps li { position: relative; text-align: center; z-index: 1; }
.flow-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--gold-600);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.flow-icon {
  width: 72px; height: 72px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--green-800);
}
.flow-steps h3 { margin-top: 16px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--green-900); }
.flow-steps p { margin-top: 8px; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; }

/* ---------- LINE section ---------- */
.section-line { background: var(--cream-100); }
.line-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.line-media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; }
.line-media .ph-block { border-radius: var(--radius-lg); }

.line-steps { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.line-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
}
.line-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.line-steps li span:nth-child(2) { flex: 1; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.line-steps li i.ph { color: var(--ink-faint); font-size: 1.2rem; }

.line-text .btn-block { margin-top: 24px; }
.line-footnote { margin-top: 18px; font-size: 0.85rem; color: var(--ink-faint); text-align: center; }
.line-phone { margin-top: 6px; font-size: 0.92rem; font-weight: 700; color: var(--green-900); text-align: center; }
.line-phone a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Service area ---------- */
.section-area { background: var(--cream-50); }
.area-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.area-media { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; }
.area-media .ph-block { border-radius: var(--radius-lg); }

.area-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
}
.area-list div {
  padding-block: 14px;
  border-top: 1px solid var(--cream-200);
  font-weight: 700;
  color: var(--green-900);
  font-size: 0.95rem;
}
.area-footnote { margin-top: 20px; font-size: 0.85rem; color: var(--ink-faint); }

/* ---------- Testimonials ---------- */
.section-testimonials { background: var(--cream-100); }
.section-testimonials .section-head { text-align: center; margin-inline: auto; }
.section-testimonials .section-sub { margin-inline: auto; }

.testimonial-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.testimonial-card {
  padding: clamp(28px, 3vw, 36px) clamp(22px, 3vw, 30px);
  border-left: 1px solid var(--cream-200);
}
.testimonial-card:first-child { border-left: none; }
.testimonial-card i.ph { font-size: 1.6rem; color: var(--gold-500); }
.testimonial-card h3 { margin-top: 14px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--green-900); }
.testimonial-card p { margin-top: 10px; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.75; }
.testimonial-card cite {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-200);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-faint);
}
.testimonial-footnote { margin-top: 22px; text-align: center; font-size: 0.8rem; color: var(--ink-faint); }

/* ---------- FAQ ---------- */
.section-faq { background: var(--cream-50); }
.section-faq .section-head { text-align: center; margin-inline: auto; }
.section-faq .section-sub { margin-inline: auto; }

.faq-list {
  margin-top: 8px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  padding: 26px clamp(20px, 3vw, 34px);
  border-top: 1px solid var(--cream-200);
  transition: background-color 0.3s var(--ease-soft);
}
.faq-row:first-child { border-top: none; }
.faq-row:hover { background: var(--cream-100); }
.faq-q, .faq-a { display: flex; gap: 12px; font-size: 0.96rem; line-height: 1.7; }
.faq-q { font-weight: 700; color: var(--green-900); }
.faq-a { color: var(--ink-soft); }
.faq-q span, .faq-a span {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8rem;
}
.faq-q span { background: var(--green-900); color: var(--white); }
.faq-a span { background: var(--gold-100); color: var(--gold-600); }

/* ---------- Final CTA ---------- */
.section-final { background: var(--green-950); }
.final-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.final-inner .section-title { max-width: 16em; }
.final-inner .section-sub { margin-inline: auto; }
.final-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.final-sub { margin-top: 26px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); }
.final-sub a { text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.final-note { margin-top: 6px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-950); color: rgba(255, 255, 255, 0.75); padding-top: 40px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-name { font-family: var(--font-display); font-weight: 900; color: var(--white); font-size: 1.05rem; }
.footer-name span { font-weight: 500; font-size: 0.8rem; margin-left: 6px; color: rgba(255, 255, 255, 0.7); }
.footer-brand p { font-size: 0.85rem; margin-top: 6px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-nav a { font-size: 0.88rem; }
.footer-nav a:hover { color: var(--gold-500); }
.footer-top { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; flex-shrink: 0; }
.footer-top:hover { color: var(--gold-500); }
.footer-demo-note {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 18px var(--container-pad) 28px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1280px) {
  :root { --container-w: 1040px; }
  .service-grid { gap: 18px; }
}

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { max-width: 9em; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }

  .reasons-layout, .pricing-layout, .line-layout, .area-layout {
    grid-template-columns: 1fr;
  }
  .reasons-media, .pricing-media, .line-media { aspect-ratio: 16 / 9; order: -1; }
  .area-media { aspect-ratio: 4 / 3; order: -1; }

  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-photo--large { grid-column: span 2; aspect-ratio: 16 / 9; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { border-left: none; border-top: 1px solid var(--cream-200); }
  .testimonial-card:first-child { border-top: none; }

  .flow-steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .flow-steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .header-actions .btn-sm span { display: none; }
  .header-actions .btn-sm { padding: 10px 14px; }

  .hero { align-items: flex-start; padding-top: 32px; padding-bottom: 264px; }
  .hero-card { max-width: none; }
  .hero-trustbar { grid-template-columns: 1fr; width: calc(100% - 2 * var(--container-pad)); }
  .trustbar-item { border-right: none; border-bottom: 1px solid var(--cream-200); justify-content: flex-start; }
  .trustbar-item:last-child { border-bottom: none; }
  .hero-media .ph-caption { bottom: 260px; }

  .pain-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }

  .faq-row { grid-template-columns: 1fr; gap: 12px; }

  .work-grid { grid-template-columns: 1fr; }
  .work-photo--large { grid-column: auto; }

  .final-actions { flex-direction: column; width: 100%; }
  .final-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  :root { --container-pad: 18px; }
  .brand-sub { display: none; }
  .hero-title { max-width: none; font-size: 1.75rem; }
  .flow-steps { grid-template-columns: 1fr; }
  .pricing-table > div { flex-direction: column; gap: 2px; }
  .pricing-table dd { text-align: left; }
}
