/* ─────────────────────────────────── */
/* ── SUBPAGE STYLES (services/*.html) */
/* ─────────────────────────────────── */

/* DAWA address autocomplete */
.form-field-autocomplete { position: relative; }
.dawa-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  max-height: 260px;
  overflow-y: auto;
  z-index: 50;
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  display: none;
}
.dawa-suggestions.open { display: block; }
.dawa-suggestion {
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.4;
  transition: background .12s ease;
}
.dawa-suggestion:last-child { border-bottom: none; }
.dawa-suggestion:hover,
.dawa-suggestion.active { background: var(--green-100, #ecf5ec); color: var(--green-900, #0b1a0b); }

/* Sub-hero */
.subhero {
  position: relative;
  padding: 168px 0 88px;
  background: var(--green-900);
  overflow: hidden;
}
.subhero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(55,100,55,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(42,72,48,0.45) 0%, transparent 70%);
  pointer-events: none;
}
.subhero-inner { position: relative; z-index: 1; max-width: 720px; }
.subhero-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.subhero-breadcrumb a { color: rgba(255,255,255,0.45); transition: color .2s; }
.subhero-breadcrumb a:hover { color: var(--green-200); }
.subhero-breadcrumb svg { color: rgba(255,255,255,0.25); }
.subhero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-200);
  margin-bottom: 18px;
}
.subhero-eyebrow-dot { width: 6px; height: 6px; background: var(--green-400); border-radius: 50%; }
.subhero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.subhero h1 em { font-style: italic; color: var(--green-200); }
.subhero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
}
.subhero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Service intro grid */
.sp-intro { padding: 96px 0; background: var(--white); }
.sp-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.sp-intro-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}
.sp-intro-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-intro-copy h2 { margin-bottom: 22px; }
.sp-intro-copy .body-text { margin-bottom: 28px; }

/* Inclusion list */
.inclusion-list { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 0; }
.inclusion-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; line-height: 1.6; color: var(--text);
}
.inclusion-check {
  width: 24px; height: 24px; min-width: 24px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.inclusion-check svg { color: var(--green-600); }

/* Use cases */
.sp-cases { padding: 96px 0; background: var(--gray-50); }
.sp-cases-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.sp-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sp-case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  transition: box-shadow .2s, transform .2s;
}
.sp-case-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }
.sp-case-icon {
  width: 44px; height: 44px;
  background: var(--green-100); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sp-case-icon svg { color: var(--green-600); }
.sp-case-title {
  font-family: var(--font-head); font-size: 22px; font-weight: 400;
  color: var(--text); margin-bottom: 8px; line-height: 1.25;
}
.sp-case-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Pricing strip */
.sp-pricing { padding: 80px 0; background: var(--green-800); color: var(--white); }
.sp-pricing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.sp-pricing-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green-200);
  margin-bottom: 14px;
}
.sp-pricing h2 { color: var(--white); margin-bottom: 14px; }
.sp-pricing h2 em { color: var(--green-200); }
.sp-pricing-text { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 540px; }

/* Image gallery */
.sp-gallery { padding: 96px 0; background: var(--white); }
.sp-gallery-header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.sp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sp-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.sp-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.sp-gallery-item:hover img { transform: scale(1.04); }

/* Other services cross-link (photo-tile style — matcher forsiden) */
.sp-other { padding: 96px 0; background: var(--gray-50); }
.sp-other-header { text-align: left; max-width: 560px; margin-bottom: 48px; }
.sp-other-header .label { display: inline-block; margin-bottom: 12px; }
.sp-other-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.sp-other-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background: var(--green-900);
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease;
}
.sp-other-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform .6s ease;
}
.sp-other-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.sp-other-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(20,35,25,0.18);
}
.sp-other-card:hover .sp-other-card-img { transform: scale(1.04); }

.sp-other-content {
  position: absolute;
  left: 28px; right: 28px; bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.sp-other-title {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.sp-other-arrow {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-800);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.sp-other-card:hover .sp-other-arrow { transform: translateX(4px); }

@media (max-width: 720px) {
  .sp-other-grid { grid-template-columns: 1fr; }
}

/* Service card link styling on index */
a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
a.service-card .service-arrow {
  position: absolute;
  top: 32px; right: 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
  transition: all .2s;
  opacity: 0;
  transform: translateX(-4px);
}
a.service-card:hover .service-arrow {
  opacity: 1; transform: translateX(0);
  background: var(--green-500); color: white;
}

/* Subpage responsive */
@media (max-width: 960px) {
  .sp-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .sp-intro-image { aspect-ratio: 4/3; max-width: 520px; }
  .sp-cases-grid { grid-template-columns: 1fr 1fr; }
  .sp-other-grid { grid-template-columns: 1fr 1fr; }
  .sp-pricing-inner { grid-template-columns: 1fr; gap: 32px; }
  .sp-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .subhero { padding: 132px 0 64px; }
  .sp-intro, .sp-cases, .sp-gallery, .sp-other { padding: 64px 0; }
  .sp-pricing { padding: 56px 0; }
  .sp-cases-grid { grid-template-columns: 1fr; }
  .sp-other-grid { grid-template-columns: 1fr; }
  .sp-gallery-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ── CHAPTER-DRIVEN SUBPAGE STYLES (story-style services) ────
   Used on nyt-haveanlaeg.html and reused on the other 2 services
   ═══════════════════════════════════════════════════════════════ */

/* Chapter marker — small label that says "Chapter 0X · Topic" */
.ch-marker {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-200);
  margin-bottom: 22px;
}
.ch-marker-dark { color: var(--green-500); }
.ch-marker-light { color: rgba(255,255,255,0.45); }

/* ── CHAPTER 1 — HERO ── */
.ch-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--green-900);
  overflow: hidden;
  padding: 140px 0 100px;
}
.ch-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  filter: brightness(0.55);
}
.ch-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,18,8,0.55) 0%, rgba(8,18,8,0.4) 50%, rgba(8,18,8,0.85) 100%),
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(55,100,55,0.25) 0%, transparent 70%);
  z-index: 1;
}
.ch-hero-inner {
  position: relative; z-index: 2;
  max-width: 760px;
}
.ch-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.ch-hero h1 em { font-style: italic; color: var(--green-200); }
.ch-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
}
.ch-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ch-hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  z-index: 2;
  transition: color .2s;
}
.ch-hero-scroll:hover { color: var(--white); }
.ch-hero-scroll svg { animation: scrollBounce 2s ease-in-out infinite; }

/* ── CHAPTER 2 — REFRAME (split image + copy) ── */
.ch-reframe {
  padding: 120px 0;
  background: var(--white);
}
.ch-reframe-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.ch-reframe-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.ch-reframe-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ch-reframe-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,26,11,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.ch-reframe-tag-dot {
  width: 6px; height: 6px;
  background: #7ecb7e;
  border-radius: 50%;
  animation: blink 2.5s ease-in-out infinite;
}
.ch-reframe-copy h2 { margin-bottom: 22px; }
.ch-reframe-copy .body-text { margin-bottom: 18px; }
.ch-reframe-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ch-reframe-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.ch-reframe-point-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 400;
  color: var(--green-500);
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 38px;
}
.ch-reframe-point-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.ch-reframe-point-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CHAPTER 3 — INSIGHTS (3 cards on dark bg) ── */
.ch-insights {
  padding: 120px 0;
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}
.ch-insights::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(55,100,55,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(42,72,48,0.45) 0%, transparent 70%);
  pointer-events: none;
}
.ch-insights .container { position: relative; z-index: 1; }
.ch-insights-header {
  text-align: center;
  margin-bottom: 64px;
}
.ch-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.ch-insight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.ch-insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126,203,126,0.3);
  background: rgba(255,255,255,0.06);
}
.ch-insight-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ch-insight-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(11,26,11,0.5) 100%);
}
.ch-insight-body {
  padding: 28px 26px 30px;
}
.ch-insight-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.ch-insight-label-green { color: var(--green-200); }
.ch-insight-thought p {
  font-family: var(--font-head);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
  margin: 0;
}
.ch-insight-divider {
  display: flex;
  justify-content: center;
  padding: 18px 0;
  color: rgba(255,255,255,0.3);
}
.ch-insight-revelation p {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--white);
  line-height: 1.45;
  margin: 0;
}
.ch-insights-note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  max-width: 540px;
  margin: 0 auto;
}

/* ── FEATURES (light "hvad du får" cards) ── */
.ch-features {
  padding: 110px 0;
  background: var(--white);
}
.ch-features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.ch-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ch-feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200, #e8e8e6);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.ch-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: var(--green-200);
}
.ch-feature-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.ch-feature-body {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ch-feature-num {
  font-family: var(--font-head);
  font-size: 14px;
  font-style: italic;
  color: var(--green-600);
  letter-spacing: 0.04em;
}
.ch-feature-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}
.ch-feature-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted, #5b5f5b);
}
@media (max-width: 880px) {
  .ch-features { padding: 80px 0; }
  .ch-features-grid { grid-template-columns: 1fr; gap: 18px; }
  .ch-feature-image { height: 220px; }
}

/* ── CHAPTER 4 — JOURNEY (vertical timeline w/ images & video) ── */
.ch-journey {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.ch-journey-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}
.ch-journey-track {
  display: flex;
  flex-direction: column;
  gap: 88px;
  position: relative;
}
.ch-journey-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 80px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, var(--green-200) 8%, var(--green-200) 92%, transparent 100%);
  transform: translateX(-1px);
  z-index: 0;
}
.ch-journey-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ch-journey-step-reverse { direction: rtl; }
.ch-journey-step-reverse > * { direction: ltr; }

.ch-journey-content {
  padding: 8px 0;
}
.ch-journey-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green-100);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-600);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.ch-journey-step-final .ch-journey-num {
  background: var(--green-500);
  color: var(--white);
  border-color: var(--green-500);
}
.ch-journey-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.ch-journey-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 460px;
}
.ch-journey-desc em {
  font-style: italic;
  color: var(--green-600);
}
.ch-journey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.ch-journey-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-700);
}
.ch-journey-meta svg { color: var(--green-500); }

.ch-journey-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  background: var(--gray-100);
}
.ch-journey-visual img,
.ch-journey-visual video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ch-journey-video {
  aspect-ratio: 9/16;
  max-height: 480px;
  margin: 0 auto;
}
.ch-journey-video video {
  background: var(--green-800);
}
.ch-journey-video-badge {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px 6px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  z-index: 2;
}
.ch-journey-video-dot {
  width: 6px; height: 6px;
  background: #ff5252;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

.ch-journey-image-badge {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px 6px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  z-index: 2;
}
.ch-journey-image-dot {
  width: 6px; height: 6px;
  background: #7ecb7e;
  border-radius: 50%;
  animation: blink 2.5s ease-in-out infinite;
}

.ch-journey-cta {
  text-align: center;
  margin-top: 88px;
}

/* ── CHAPTER 5 — VISION (before/after gallery) ── */
.ch-vision {
  padding: 120px 0;
  background: var(--white);
}
.ch-vision-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

/* ── CHAPTER 6 — HONEST (FAQ split) ── */
.ch-honest {
  padding: 120px 0;
  background: var(--gray-50);
}
.ch-honest-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.ch-honest-intro {
  position: sticky;
  top: 100px;
}
.ch-honest-intro h2 { margin-bottom: 22px; }
.ch-honest-intro .body-text { margin-bottom: 32px; }
.ch-honest-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-top: 24px;
}
.ch-honest-contact-icon {
  width: 44px; height: 44px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}
.ch-honest-contact-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.ch-honest-contact-phone {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: block;
  margin-top: 2px;
}
.ch-honest-contact-phone:hover { color: var(--green-600); }

.ch-honest-faq .faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 0 22px;
  transition: border-color .2s;
}
.ch-honest-faq .faq-item:hover { border-color: var(--green-200); }
.ch-honest-faq .faq-question { padding: 22px 0; }
.ch-honest-faq .faq-answer.open { padding: 0 0 22px; }

/* Step CTA section override */
.ch-step .ch-marker-light { display: block; margin-bottom: 16px; }

/* ── CHAPTER RESPONSIVE ── */
@media (max-width: 1020px) {
  .ch-reframe-inner { grid-template-columns: 1fr; gap: 56px; }
  .ch-reframe-image { aspect-ratio: 4/3; max-width: 520px; margin: 0 auto; }
  .ch-insights-grid { grid-template-columns: 1fr 1fr; }
  .ch-insights-grid .ch-insight-card:nth-child(3) { grid-column: span 2; max-width: 520px; margin: 0 auto; }
  .ch-honest-grid { grid-template-columns: 1fr; gap: 48px; }
  .ch-honest-intro { position: static; }
}
@media (max-width: 768px) {
  .ch-hero { padding: 120px 0 80px; min-height: auto; }
  .ch-hero h1 { font-size: 38px; }
  .ch-reframe, .ch-insights, .ch-journey, .ch-vision, .ch-honest { padding: 80px 0; }
  .ch-insights-grid { grid-template-columns: 1fr; }
  .ch-insights-grid .ch-insight-card:nth-child(3) { grid-column: span 1; max-width: none; }
  .ch-journey-track::before { left: 28px; }
  .ch-journey-step,
  .ch-journey-step-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 64px;
    direction: ltr;
  }
  .ch-journey-num {
    position: absolute;
    left: 0; top: 0;
    width: 56px; height: 56px;
    margin-bottom: 0;
  }
  .ch-journey-content { padding-top: 0; }
  .ch-journey-visual { order: -1; }
}
@media (max-width: 480px) {
  .ch-hero h1 { font-size: 32px; }
  .ch-hero-sub { font-size: 16px; }
  .ch-hero-actions { flex-direction: column; }
  .ch-hero-actions .btn { width: 100%; justify-content: center; }
  .ch-reframe-points { gap: 18px; }
  .ch-insight-thought p, .ch-insight-revelation p { font-size: 16px; }
  .ch-journey-track { gap: 56px; }
  .ch-journey-step, .ch-journey-step-reverse { padding-left: 52px; }
  .ch-journey-num { width: 44px; height: 44px; font-size: 18px; }
}
