*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber: #E8A019;
  --amber-soft: rgba(232,160,25,0.12);
  --black: #0D0D0D;
  --panel: #111111;
  --card: #1A1A1A;
  --white: #FFFFFF;
  --muted: #A6A6A6;
  --border: #2A2A2A;
  --green: #4CAF50;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { -webkit-tap-highlight-color: transparent; font-family: inherit; }
img { max-width: 100%; display: block; }

:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

section { padding: 72px 0; }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.h-section {
  font-size: clamp(38px, 6.5vw, 60px);
  line-height: 0.98;
  margin-bottom: 16px;
}

.lede {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 560px;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  border: none;
}
.btn-amber {
  background: var(--amber);
  color: #1a1100;
  box-shadow: 0 8px 24px rgba(232,160,25,0.22);
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232,160,25,0.32); }
.btn-amber:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Nav ---------- */
#nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 23px;
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--amber); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-right .btn { padding: 10px 20px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0f0f0f;
  border-top: 1px solid var(--border);
  padding: 12px 22px 22px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px; font-weight: 600;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .btn { margin-top: 18px; }
.mobile-menu a.btn-amber { color: #1a1100; border-bottom: none; }
.mobile-menu a.btn-amber:hover { color: #1a1100; }

/* ---------- Hero ---------- */
#hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(ellipse 70% 55% at 70% -5%, rgba(232,160,25,0.14) 0%, transparent 62%),
    var(--black);
}
.hero-content { max-width: 780px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-soft);
  color: var(--amber);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(76,175,80,0.25); }
.hero-title {
  font-size: clamp(46px, 13vw, 104px);
  line-height: 0.9;
  margin-bottom: 22px;
}
.hero-title .amber { color: var(--amber); }
.hero-title .hero-tag {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.4;
  margin-bottom: 24px;
}
.hero-main { display: block; text-wrap: balance; }
@media (max-width: 520px) {
  .hero-br { display: none; }
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

/* Trust strip under hero */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
}
.trust-item svg { width: 17px; height: 17px; color: var(--amber); flex-shrink: 0; }
.trust-stars { display: flex; gap: 2px; }
.trust-stars span { color: var(--amber); font-size: 15px; }

/* ---------- Process ---------- */
#process { background: var(--panel); }
.process-head { margin-bottom: 44px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px;
  position: relative;
  transition: border-color 0.25s, transform 0.2s;
}
.step:hover { border-color: rgba(232,160,25,0.5); transform: translateY(-3px); }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 16px;
}
.step-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 25px;
  letter-spacing: 0.02em;
  margin-bottom: 9px;
  line-height: 1.05;
}
.step-desc { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Included checklist (replaces old 6-card + services blocks) */
.included {
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(232,160,25,0.05), rgba(232,160,25,0) 60%);
  padding: 30px 26px;
}
.included-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.included-title .tag {
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em;
  color: var(--amber); background: var(--amber-soft);
  padding: 4px 9px; border-radius: 5px; text-transform: uppercase;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
}
.inc-item { display: flex; gap: 12px; align-items: flex-start; }
.inc-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--amber-soft);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.inc-check svg { width: 13px; height: 13px; color: var(--amber); }
.inc-item strong { display: block; font-size: 14.5px; font-weight: 700; margin-bottom: 2px; }
.inc-item span { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ---------- Results ---------- */
.results-head { margin-bottom: 36px; }
.results-track-outer {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  margin: 0 -22px;
  padding: 4px 22px;
}
.results-track-outer::-webkit-scrollbar { display: none; }
.results-track { display: flex; gap: 16px; }
.result-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
  scroll-snap-align: start;
  transition: border-color 0.25s, transform 0.25s;
}
.result-card:hover { border-color: rgba(232,160,25,0.5); transform: translateY(-3px); }
@media (max-width: 768px) { .result-card { flex: 0 0 82%; } }
.result-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  background: #14110c;
}
.result-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 20px 18px;
  background: linear-gradient(to top, rgba(10,9,7,0.92) 0%, rgba(10,9,7,0.6) 55%, rgba(10,9,7,0) 100%);
  z-index: 2;
}
.result-trade { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 0.02em; margin-bottom: 3px; line-height: 1.05; color: #fff; }
.result-area { color: rgba(255,255,255,0.72); font-size: 13.5px; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.carousel-btn {
  background: var(--card); border: 1px solid var(--border); color: var(--white);
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  font-size: 18px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.carousel-btn:hover:not(:disabled) { border-color: var(--amber); color: var(--amber); }
.carousel-btn:disabled { opacity: 0.3; cursor: default; }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; transition: background 0.2s, width 0.2s; }
.carousel-dot.active { background: var(--amber); width: 22px; border-radius: 100px; }
.results-disclaimer { font-size: 12px; color: #666; text-align: center; margin-top: 20px; }

/* ---------- About ---------- */
#about { background: var(--panel); }
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 54px; align-items: center; }
#kaine-photo {
  width: 100%; border-radius: 14px; overflow: hidden; position: relative;
  user-select: none; -webkit-user-select: none;
  border: 1px solid var(--border);
}
#kaine-photo img { width: 100%; height: auto; display: block; pointer-events: none; -webkit-user-drag: none; }
#kaine-photo::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 -80px 60px -40px rgba(13,13,13,0.7);
}
.about-title { font-size: clamp(32px, 4.5vw, 46px); margin-bottom: 20px; line-height: 1.02; }
.about-body { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 18px; max-width: 520px; }
.trust-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trust-tag {
  background: var(--amber-soft); border: 1px solid rgba(232,160,25,0.28);
  color: var(--amber); font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; padding: 7px 13px; border-radius: 100px; text-transform: uppercase;
}

/* ---------- Reviews ---------- */
.reviews-head { text-align: center; margin-bottom: 12px; }
.reviews-head .eyebrow, .reviews-head .h-section { justify-content: center; }
.reviews-head .h-section { text-align: center; }
.star-row { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 40px; }
.star-row .star { color: var(--amber); font-size: 20px; }
.star-count { color: var(--muted); font-size: 14px; margin-left: 8px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 26px 22px;
  display: flex; flex-direction: column;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars span { color: var(--amber); font-size: 15px; }
.review-text { color: #D4D4D4; font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.review-text strong { color: var(--white); font-weight: 700; }
.review-foot { margin-top: auto; }
.review-author { font-size: 14px; font-weight: 700; }
.review-trade { font-size: 12.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
#faq { background: var(--panel); }
.faq-head { margin-bottom: 40px; }
.faq-list { max-width: 760px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-size: 16px; font-weight: 700; text-align: left;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; cursor: pointer; transition: color 0.2s;
}
.faq-q:hover { color: var(--amber); }
.faq-icon {
  width: 24px; height: 24px; border: 1.5px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 17px; line-height: 1; transition: transform 0.25s, background 0.2s, color 0.2s, border-color 0.2s;
}
.faq-q.open .faq-icon { transform: rotate(45deg); background: var(--amber); border-color: var(--amber); color: #1a1100; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 400px; }
.faq-a-inner { color: var(--muted); font-size: 15px; line-height: 1.75; padding-bottom: 22px; }

/* ---------- CTA / Footer ---------- */
#cta { padding: 84px 0 40px; }
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.3);
  color: var(--green); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; padding: 7px 16px; border-radius: 100px;
  text-transform: uppercase; margin-bottom: 26px;
}
.cta-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(76,175,80,0.25); }
.cta-title { font-size: clamp(48px, 9vw, 84px); line-height: 0.94; margin-bottom: 18px; }
.cta-body { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin-bottom: 32px; }

.loop-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 0 44px; text-align: left; }
.loop-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 22px 20px; }
.loop-label { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--amber); margin-bottom: 7px; }
.loop-text { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

#survey-embed { border-top: 1px solid var(--border); padding-top: 44px; text-align: left; }
#survey-embed .eyebrow { justify-content: flex-start; margin-bottom: 22px; }

.cta-secondary { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.cta-links { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 32px; font-size: 14px; color: var(--muted); }
.cta-links a { display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s; }
.cta-links a:hover { color: var(--white); }
.cta-links svg { width: 16px; height: 16px; }
.footer-areas { text-align: center; margin-top: 44px; color: #8a8a8a; font-size: 13px; line-height: 1.7; }
.pref-source { display: flex; justify-content: center; margin-top: 18px; min-height: 40px; }
.footer-bottom { text-align: center; margin-top: 22px; padding-top: 24px; border-top: 1px solid var(--border); color: #777; font-size: 12.5px; }

/* ---------- Websites (secondary offer) ---------- */
#websites { padding-top: 0; }
.web-band {
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    radial-gradient(ellipse 60% 90% at 100% 0%, rgba(232,160,25,0.08), transparent 60%),
    var(--card);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center;
}
.web-title { font-size: clamp(30px, 4vw, 42px); line-height: 1.02; margin-bottom: 16px; }
.web-text { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 26px; max-width: 460px; }
.web-text strong { color: #fff; font-weight: 700; }
/* Browser mockup */
.web-visual { display: flex; justify-content: center; }
.browser {
  width: 100%; max-width: 340px;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--black); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--border); background: #141414; }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #333; display: block; }
.browser-bar i:first-child { background: var(--amber); }
.browser-body { padding: 22px 20px 26px; }
.bw-logo { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.05em; margin-bottom: 20px; }
.bw-logo span { color: var(--amber); }
.bw-h { height: 12px; border-radius: 4px; background: #262626; margin-bottom: 9px; }
.bw-h.w80 { width: 80%; } .bw-h.w60 { width: 60%; }
.bw-h.amber { background: var(--amber); width: 45%; height: 26px; border-radius: 6px; margin-top: 18px; }
.bw-row { display: flex; gap: 8px; margin-top: 20px; }
.bw-tile { flex: 1; height: 44px; border-radius: 8px; background: #1e1e1e; border: 1px solid var(--border); }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(13,13,13,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform 0.28s ease;
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { width: 100%; padding: 15px; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  #kaine-photo { max-width: 300px; }
  .web-band { grid-template-columns: 1fr; gap: 34px; padding: 32px 26px; }
  .web-visual { order: -1; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  #hero { padding: 44px 0 44px; }
  #cta { padding: 60px 0 32px; }
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .loop-row { grid-template-columns: 1fr; }
  .mobile-cta { display: block; }
  body { padding-bottom: 78px; }
  .faq-q { font-size: 15px; }
}

@media (max-width: 460px) {
  .steps { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Subtle scroll reveal (only with JS, so content always shows) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   SUB-PAGE COMPONENTS (services, industries, case studies, guides)
   Reuses the homepage brand tokens and components above.
   ============================================================ */

/* ---------- Sub-page hero ---------- */
.subhero {
  padding: 52px 0 10px;
  background:
    radial-gradient(ellipse 70% 55% at 75% -10%, rgba(232,160,25,0.14) 0%, transparent 60%),
    var(--black);
}
.subhero .container { position: relative; }
.subhero h1 {
  font-size: clamp(40px, 7.5vw, 72px);
  line-height: 0.96;
  margin-bottom: 18px;
  max-width: 900px;
  text-wrap: balance;
}
.subhero h1 .amber { color: var(--amber); }
.subhero .lede { font-size: 17px; max-width: 660px; }
.subhero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
@media (max-width: 560px) { .subhero-ctas { flex-direction: column; } .subhero-ctas .btn { width: 100%; } }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); margin-bottom: 20px;
}
.breadcrumbs a:hover { color: var(--amber); }
.breadcrumbs .sep { color: #555; }
.breadcrumbs [aria-current="page"] { color: #777; }

/* ---------- Prose / article body ---------- */
.prose { max-width: 760px; }
.prose > p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.prose h2 { font-size: clamp(28px, 4.4vw, 42px); line-height: 1.0; margin: 46px 0 16px; }
.prose h3 { font-size: 23px; letter-spacing: 0.02em; margin: 30px 0 10px; }
.prose strong { color: #fff; font-weight: 700; }
.prose ul, .prose ol { color: var(--muted); margin: 0 0 20px 20px; line-height: 1.8; font-size: 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--amber); }
.prose a:hover { text-decoration: underline; }
.prose .lede { color: var(--muted); font-size: 18px; line-height: 1.75; margin-bottom: 22px; max-width: 760px; }
.updated { font-size: 13px; color: #777; margin-bottom: 26px; }

/* ---------- Two-column split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Who it's for / not for ---------- */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
@media (max-width: 700px) { .who-grid { grid-template-columns: 1fr; } }
.who-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 26px; }
.who-card h3 { font-size: 23px; margin-bottom: 14px; }
.who-card ul { list-style: none; margin: 0; }
.who-card li { color: var(--muted); font-size: 14.5px; line-height: 1.5; padding: 9px 0 9px 28px; position: relative; }
.who-yes li::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-weight: 800; }
.who-no li::before { content: '✕'; position: absolute; left: 0; color: #666; font-weight: 800; }

/* ---------- Detailed numbered steps ---------- */
.dsteps { display: flex; flex-direction: column; gap: 16px; margin: 26px 0; }
.dstep { display: grid; grid-template-columns: 54px 1fr; gap: 18px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px 26px; }
.dstep-n { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--amber); line-height: 1; }
.dstep h3 { font-size: 23px; margin: 0 0 7px; }
.dstep p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0; }

/* ---------- Callout ---------- */
.callout { border: 1px solid rgba(232,160,25,0.28); background: linear-gradient(180deg, rgba(232,160,25,0.06), rgba(232,160,25,0) 90%); border-radius: 12px; padding: 24px 26px; margin: 26px 0; }
.callout p { color: #d8d8d8; margin: 0; font-size: 15.5px; line-height: 1.7; }
.callout strong { color: #fff; }

/* ---------- Stat row (case studies; real numbers only) ---------- */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin: 26px 0; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 22px 20px; }
.stat-n { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--amber); line-height: 1; margin-bottom: 6px; }
.stat-l { color: var(--muted); font-size: 13px; line-height: 1.4; }

/* ---------- Related links (internal linking) ---------- */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 10px 0; }
@media (max-width: 760px) { .related { grid-template-columns: 1fr; } }
.related a { display: block; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 22px; transition: border-color 0.2s, transform 0.2s; }
.related a:hover { border-color: rgba(232,160,25,0.5); transform: translateY(-3px); }
.related .r-k { font-family: 'Bebas Neue', sans-serif; color: var(--amber); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.related .r-t { font-size: 16px; font-weight: 700; margin-top: 6px; line-height: 1.3; }

/* ---------- Booking CTA band (shared component, ends every sub-page) ---------- */
.cta-band { border-top: 1px solid var(--border); background: var(--panel); }
.cta-band-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(36px, 6.5vw, 60px); line-height: 0.96; margin-bottom: 14px; }
.cta-band p { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin-bottom: 28px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 520px) { .cta-band .btns { flex-direction: column; } .cta-band .btns .btn { width: 100%; } }

/* ---------- Shared site footer (sub-pages) + sitemap block ---------- */
.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px 24px;
}
.fs-col { display: flex; flex-direction: column; gap: 11px; }
.fs-head { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 0.08em; color: #fff; text-transform: uppercase; margin-bottom: 3px; }
.fs-col a { color: var(--muted); font-size: 14px; }
.fs-col a:hover { color: var(--amber); }

.site-footer { background: var(--panel); border-top: 1px solid var(--border); padding: 54px 0 36px; }
.site-footer .footer-areas { margin-top: 40px; }
.site-footer .footer-bottom { margin-top: 22px; }
.footer-nap { text-align: center; margin-top: 14px; color: #8a8a8a; font-size: 13px; line-height: 1.7; }
.footer-nap a { color: #8a8a8a; }
.footer-nap a:hover { color: var(--amber); }

/* ---------- Map embed ---------- */
.map-embed {
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #14110c;
}
.map-embed iframe { width: 100%; height: 100%; display: block; border: 0; }
.address-block { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin-top: 18px; }
.address-block strong { color: #fff; }
@media (max-width: 600px) { .map-embed { aspect-ratio: 4 / 3; } }

/* Homepage footer sitemap sits inside the existing #cta block */
#cta .footer-sitemap { margin-top: 44px; padding-top: 40px; border-top: 1px solid var(--border); text-align: left; }
