html { scroll-behavior: smooth; }

:root {
  --cream: #f7f4ef;
  --dark: #1c1917;
  --charcoal: #27241d;
  --white: #ffffff;
  --gold: #c9933a;
  --gold-light: #f0b36b;
  --border: #e6ded2;
  --muted: #57514c;
  --text: #2a2520;
  --card-bg: #ffffff;
  --text-on-dark: #f0e4cf;
  --text-on-muted-dark: #c9b89c;
  --text-on-light: #2a2520;
}

/* Skip navigation — hidden until keyboard focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* Breadcrumb navigation */
.breadcrumb-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  font-size: 14px;
}
.breadcrumb-nav .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb-nav ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-nav li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.breadcrumb-nav li:not(:last-child)::after {
  content: "›";
  color: var(--gold);
  font-size: 16px;
  margin-left: 4px;
}
.breadcrumb-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-nav a:hover { color: var(--gold); }
.breadcrumb-nav li[aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 600px) {
  .breadcrumb-nav { font-size: 13px; padding: 10px 0; }
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
main p a:not(.btn):not(.blog-read-more) { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

.container { width: min(1160px, 92%); margin: 0 auto; }

/* ── LOGO ── */
.logo-wrap { display: flex; align-items: center; gap: 12px; }

.logo-badge {
  width: 40px; height: 40px;
  background: var(--dark);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; }
.logo-title { font-size: 11px; font-weight: 600; color: var(--muted); }

/* ── HEADER ── */
.site-header {
  background: rgba(247, 244, 239, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.main-nav { display: flex; gap: 22px; }
.main-nav a { font-size: 13.5px; font-weight: 600; color: #555; transition: color .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--dark); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 800; font-size: 14px; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #333; }

.btn-gold {
  background: linear-gradient(135deg, #d9a548 0%, #c9933a 60%, #b8832e 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,147,58,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #e6b455 0%, #d9a548 60%, #c9933a 100%);
  box-shadow: 0 8px 32px rgba(201,147,58,.5);
  transform: translateY(-2px);
}

.btn-outline { border: 2px solid var(--dark); color: var(--dark); background: transparent; }
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-outline-white { border: 2px solid rgba(255,255,255,.5); color: var(--white); background: transparent; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: #f0ebe3; }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ── LABELS / EYEBROW ── */
.label {
  font-size: 11.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold); margin-bottom: 12px;
  display: block;
}

/* ── SECTION ── */
.section { padding: 72px 0; }
.section-sm { padding: 60px 0; }

.section-header { margin-bottom: 40px; }
.section-header h2 { margin-top: 6px; }

h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(38px, 5.5vw, 68px); line-height: 1.06; letter-spacing: -0.02em; font-weight: 700; }
h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px, 4vw, 50px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
h3 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; line-height: 1.25; letter-spacing: -0.01em; font-weight: 600; }

.section-sub {
  font-size: 17px; color: var(--muted); max-width: 600px; margin-top: 14px; line-height: 1.65;
}

/* ── HERO ── */
.hero {
  padding: 80px 0 72px;
  background: linear-gradient(135deg, #1c1917 0%, #251a0e 45%, #1c1917 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,147,58,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}

.hero-content {
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(201, 147, 58, 0.15); border: 1px solid rgba(201, 147, 58, 0.4);
  border-radius: 999px; padding: 6px 16px;
  font-size: 12.5px; font-weight: 700; color: var(--gold-light);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px;
}

.hero-proof-hook {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-emotional-hook {
  font-size: 15px; font-weight: 600; font-style: italic;
  color: rgba(255,255,255,.6); line-height: 1.55;
  max-width: 480px; margin-bottom: 18px;
  border-left: 2px solid rgba(201,147,58,.5);
  padding-left: 12px;
}

.hero h1 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f5e9d0 60%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,.7); max-width: 580px; margin-bottom: 32px; line-height: 1.65; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px;
  position: relative; z-index: 3;
}
.hero .btn-dark {
  background: var(--white); color: var(--dark);
}
.hero .btn-dark:hover {
  background: #f0ebe3; box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.hero .btn-outline {
  border-color: rgba(255,255,255,.5); color: var(--white); background: transparent;
}
.hero .btn-outline:hover {
  border-color: var(--white); background: rgba(255,255,255,.1);
}

/* ── TRUST BADGE STRIP ── */
.hero-badge-strip { margin-bottom: 24px; }
.hero-badge-title {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 10px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 12px;
  font-size: 12px; font-weight: 700; color: var(--dark);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.hero-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

.trust-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-chips span {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px; padding: 6px 14px;
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.75);
}

/* ── PROFILE CARD ── */
.profile-wrap { position: relative; display: flex; justify-content: center; z-index: 1; }

.profile-card {
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 36px 28px 4px; width: 100%; text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  position: relative; overflow: visible;
}
.profile-card::after {
  content: "";
  position: absolute; inset: -2px;
  border-radius: 30px;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,147,58,.22) 0%, transparent 70%);
  opacity: 0.5;
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none; z-index: -1;
}

.profile-placeholder {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, #3a3530 0%, #1c1917 100%);
  border: 3px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px; font-weight: 900; color: var(--gold-light);
  margin: 0 auto 20px;
}

.profile-card-name { font-size: 20px; font-weight: 800; color: var(--white); text-align: center; margin-bottom: 4px; }
.profile-card-role { font-size: 13px; color: #9a9080; text-align: center; }

.float-labels { position: absolute; inset: 0; pointer-events: none; }
.float-label {
  position: absolute; background: var(--white); border: 1px solid rgba(201,147,58,.25);
  border-radius: 999px; padding: 7px 15px;
  font-size: 11.5px; font-weight: 800; color: var(--dark);
  box-shadow: 0 6px 24px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.8);
  white-space: nowrap;
  will-change: transform;
}
.fl-1 { top: -16px; left: -20px; animation: floatA 3.5s ease-in-out infinite; }
.fl-2 { top: 20px; right: -24px; animation: floatB 4s ease-in-out infinite 0.6s; }
.fl-3 { bottom: 60px; right: -28px; animation: floatA 3.8s ease-in-out infinite 1.1s; }
.fl-4 { bottom: 20px; left: -24px; animation: floatB 4.2s ease-in-out infinite 0.3s; }
.fl-5 { top: 50%; left: -32px; animation: floatFive 4s ease-in-out infinite 1.5s; }

/* ── CARDS ── */
.cards-grid { display: grid; gap: 16px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 22px; padding: 28px;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.11); transform: translateY(-4px); }

.card-tag {
  display: inline-block; background: var(--dark); color: var(--white);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}

.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ── DARK CARDS ── */
.card-dark {
  background: #2a2521; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px; padding: 28px; color: #f5efe6;
}
.card-dark h3 { color: var(--white); }
.card-dark p { color: #f5efe6; font-size: 15px; font-weight: 600; line-height: 1.55; }

/* ── PROOF CARDS SECTION ── */
.proof-cards-section {
  background: #f0ece5;
  border-top: 1px solid var(--border);
  padding: 60px 0;
}
.proof-intro { max-width: 680px; margin-bottom: 44px; }
.proof-intro h2 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 12px; }
.proof-intro p { font-size: 17px; color: var(--muted); line-height: 1.65; }
.proof-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.proof-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.proof-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.07); transform: translateY(-2px); }
.proof-card-tag {
  display: inline-block; background: var(--dark); color: var(--white);
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  padding: 4px 11px; border-radius: 999px; margin-bottom: 14px;
}
.proof-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.proof-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── LEAD MAGNET STRIP ── */
.lm-strip {
  background: linear-gradient(135deg, #1c1917 0%, #2d1e0f 50%, #1c1917 100%);
  color: var(--white);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.lm-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201,147,58,.07) 0%, transparent 70%);
  pointer-events: none;
}
.lm-strip-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.lm-strip h2 { color: var(--white); font-size: clamp(24px, 3vw, 38px); }
.lm-strip p { color: #d8d2c8; margin-top: 10px; max-width: 520px; font-size: 16px; }
.lm-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── PROBLEMS ── */
.problems-section { background: var(--dark); color: var(--white); }
.problems-section h2 { color: var(--white); }

/* ── SERVICES PAGE ── */
.svc-quick-nav {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.svc-quick-nav-title {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 14px;
}
.svc-quick-nav-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-nav-btn {
  display: inline-block; background: var(--cream);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 16px; font-size: 13px; font-weight: 700; color: var(--dark);
  transition: background .2s, border-color .2s;
}
.svc-nav-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

.svc-who-section { background: var(--cream); }

.svc-deliverables-section { background: var(--white); }
.svc-deliverables-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px;
}
.svc-deliverable-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
}
.svc-d-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; flex-shrink: 0;
}
.svc-deliverable-card p { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0; }

.svc-start-banner {
  background: var(--dark); padding: 48px 0;
}
.svc-start-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.svc-start-text h2 {
  font-size: clamp(22px, 2.5vw, 30px); color: var(--white); margin: 0 0 8px;
}
.svc-start-text p {
  color: rgba(255,255,255,0.6); font-size: 16px; margin: 0;
}

.svc-interactive-section { background: var(--cream); }
.svc-intro-line {
  font-size: 1rem; color: var(--muted); margin: 0 0 24px;
  padding-left: 14px; border-left: 3px solid var(--gold);
}
.svc-result-line {
  font-size: 0.82rem; font-weight: 700; color: #16a34a;
  margin: 6px 0 16px; letter-spacing: 0.01em;
}
.svc-result-line-std {
  padding: 0 44px; margin-bottom: 8px;
}

/* Two-column layout */
.svc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

/* Tab list — left column */
.svc-tab-list {
  display: flex; flex-direction: column; gap: 3px;
  position: sticky; top: 90px; z-index: 80;
  background: rgba(247,244,239,0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.svc-tab {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 12px;
  border: none; background: transparent; cursor: pointer;
  text-align: left; font-size: 13.5px; font-weight: 600;
  color: var(--muted); width: 100%;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.svc-tab:hover { background: rgba(201,147,58,.07); color: var(--dark); }
.svc-tab.active {
  background: var(--dark); color: var(--white);
  box-shadow: inset 3px 0 0 var(--gold);
  transform: scale(1.02);
}
.svc-tab-icon-sm {
  width: 18px; height: 18px; flex-shrink: 0; display: flex;
}
.svc-tab-icon-sm svg { width: 18px; height: 18px; }
.svc-tab-arrow {
  margin-left: auto; font-size: 16px; line-height: 1;
  opacity: 0; transform: translateX(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.svc-tab.active .svc-tab-arrow,
.svc-tab:hover .svc-tab-arrow { opacity: 1; transform: translateX(0); }
.svc-tab.active .svc-tab-arrow { color: var(--gold-light); }

/* Panels — right column */
.svc-panels {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden; min-height: 460px;
}
.svc-panel {
  display: none; padding: 44px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.svc-panel.active { display: block; }
.svc-panel.visible { opacity: 1; transform: translateY(0); }

/* Panel header: icon + tag + heading */
.svc-panel-header {
  display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px;
}
.svc-panel-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(201,147,58,.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); will-change: transform;
}
.svc-panel-icon svg { width: 24px; height: 24px; }
.svc-panel-icon.icon-pop { animation: iconPop 0.38s ease both; }
@keyframes iconPop {
  0%   { transform: scale(0.78) rotate(-5deg); }
  60%  { transform: scale(1.1) rotate(1deg); }
  100% { transform: scale(1); }
}
.svc-panel-header h3 { font-size: clamp(18px, 2vw, 24px); margin: 6px 0 0; }

/* Panel rows: problem / what / outcome */
.svc-panel-row {
  padding: 18px 0; border-top: 1px solid var(--border);
}
.svc-row-label {
  display: block; font-size: 10.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--muted); margin-bottom: 6px;
}
.svc-outcome-row .svc-row-label { color: var(--gold); }
.svc-panel-row p { font-size: 15px; line-height: 1.65; color: var(--text); margin: 0; }

/* Panel CTA */
.svc-panel-cta {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--border); margin-top: 4px;
  flex-wrap: wrap;
}
.svc-cta-micro { font-size: 12px; color: var(--muted); }

/* Responsive: stack on mobile */
@media (max-width: 900px) {
  .svc-layout { grid-template-columns: 1fr; gap: 16px; }
  .svc-tab-list {
    flex-direction: row; flex-wrap: wrap;
    position: static; padding: 8px; gap: 6px;
  }
  .svc-tab { flex: none; padding: 9px 14px; border-radius: 999px; font-size: 13px; }
  .svc-tab-arrow { display: none; }
  .svc-panel { padding: 28px 22px; }
  .svc-panel-header { flex-direction: column; gap: 12px; }
}

/* Inline CTA between service blocks */
.svc-inline-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: var(--dark); border-radius: 16px;
  padding: 32px 40px; margin: 24px 0;
  border-left: 4px solid var(--gold);
}
.svc-inline-cta-text p {
  color: var(--white); font-size: 17px; font-weight: 700; margin: 0 0 4px;
}
.svc-inline-cta-text span {
  color: rgba(255,255,255,0.78); font-size: 13px;
}

.svc-why-section { background: var(--white); }
.svc-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px;
}
.svc-why-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 22px;
  display: flex; align-items: center; gap: 12px;
}
.svc-why-icon { font-size: 11px; color: var(--gold); flex-shrink: 0; }
.svc-why-card p { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0; }

.svc-faq-section { background: var(--cream); }
.svc-faq-container { max-width: 800px; }
.svc-faq-list { margin-top: 8px; }

.svc-faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; margin-bottom: 8px; overflow: hidden;
}
.svc-faq-item[open] { border-color: var(--dark); }

.svc-faq-q {
  font-size: 15px; font-weight: 700; color: var(--dark);
  padding: 18px 22px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.svc-faq-q::-webkit-details-marker { display: none; }
.svc-faq-q::after {
  content: "+"; font-size: 20px; font-weight: 400;
  color: var(--muted); flex-shrink: 0; transition: transform .2s;
}
.svc-faq-item[open] .svc-faq-q::after { content: "−"; }

.svc-faq-a {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  padding: 0 22px 18px; margin: 0;
}

.svc-faq-cta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px;
}

@media (max-width: 860px) {
  .svc-deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-deliverables-grid, .svc-why-grid { grid-template-columns: 1fr; }
  .svc-faq-cta { flex-direction: column; }
  .svc-faq-cta .btn { width: 100%; justify-content: center; }
}

/* ── PORTFOLIO PAGE ── */
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.pf-who-section { background: var(--white); padding-bottom: 0; }

.pf-industry-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; padding-bottom: 52px;
}
.pf-industry-chip {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 18px;
  font-size: 14px; font-weight: 700; color: var(--dark);
}

.pf-card-v2 { display: flex; flex-direction: column; gap: 0; }

.pf-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 12px; flex-wrap: wrap;
}
.pf-card-header .portfolio-number { margin-bottom: 0; }

.pf-meta { display: flex; flex-direction: column; gap: 0; flex: 1; margin-bottom: 20px; }

.pf-meta-block {
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.pf-meta-block:first-child { padding-top: 0; }

.pf-meta-label {
  display: block; font-size: 10.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-bottom: 5px;
}
.pf-meta-block p { font-size: 14px; color: var(--dark); line-height: 1.55; margin: 0; }

.pf-outcome { border-bottom: none; }
.pf-outcome .pf-meta-label { color: var(--gold); }
.pf-outcome p { color: var(--dark); font-weight: 600; }

.pf-bullets { list-style: none; margin: 4px 0 0; }
.pf-bullets li {
  font-size: 13.5px; color: var(--muted); padding: 3px 0;
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;
}
.pf-bullets li::before { content: "→"; color: var(--gold); flex-shrink: 0; font-size: 12px; margin-top: 1px; }

.pf-trust-section { background: var(--white); }
.pf-trust-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.pf-trust-point { display: flex; align-items: flex-start; gap: 12px; }
.pf-trust-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; flex-shrink: 0; margin-top: 1px;
}
.pf-trust-point p { font-size: 14.5px; font-weight: 600; color: var(--dark); line-height: 1.45; }

.pf-cta-section { background: var(--cream); }
.pf-cta-inner { max-width: 680px; }
.pf-cta-inner h2 { margin: 8px 0 14px; }
.pf-cta-inner p { color: var(--muted); font-size: 17px; margin-bottom: 28px; line-height: 1.65; }
.pf-cta-inner .btn-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── PORTFOLIO PAGE ADDITIONS ── */
.pf-hero-position { font-size: 15px; font-weight: 700; color: var(--gold); margin-top: 10px; margin-bottom: 4px; }
.pf-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin: 20px 0 28px; }
.pf-hero-stat { display: flex; flex-direction: column; gap: 3px; }
.pf-hero-stat strong { font-size: 18px; font-weight: 800; color: var(--white); line-height: 1.1; }
.pf-hero-stat span { font-size: 12px; color: rgba(255,255,255,0.78); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

.pf-timeline-tag { font-size: 12px; font-weight: 700; color: rgba(0,0,0,.38); letter-spacing: .02em; margin-bottom: 14px; }

.pf-screenshot-slot { font-size: 11px; color: rgba(255,255,255,0.72); font-style: italic; margin-top: 10px; padding-top: 8px; border-top: 1px dashed rgba(255,255,255,.1); }

.pf-problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.pf-problem-item { display: flex; align-items: flex-start; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; }
.pf-problem-icon { color: var(--gold); font-size: 8px; flex-shrink: 0; margin-top: 6px; }
.pf-problem-item p { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.45; margin: 0; }

.pf-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.pf-process-step { position: relative; padding: 28px 24px; background: var(--cream); border-radius: 14px; border: 1px solid var(--border); }
.pf-process-num { font-size: 38px; font-weight: 900; color: #ddd3c5; letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px; }
.pf-process-step h3 { font-size: 17px; margin-bottom: 8px; }
.pf-process-step p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }

.pf-eeat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.pf-eeat-item { display: flex; align-items: flex-start; gap: 14px; padding: 20px 22px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.pf-eeat-icon { width: 28px; height: 28px; background: var(--gold); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.pf-eeat-item strong { font-size: 14.5px; font-weight: 700; color: var(--dark); display: block; margin-bottom: 4px; }
.pf-eeat-item p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ── PORTFOLIO PROOF VISUALS ── */
.pf-proof-section { background: #16130f; }
.pf-proof-section .section-header h2 { color: var(--white); }
.pf-proof-section .section-header .section-sub { color: rgba(255,255,255,0.78); }
.pf-proof-section .label { background: rgba(201,147,58,.15); color: var(--gold); }
.pf-proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.pf-proof-card { background: #1e1a15; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; overflow: hidden; }
.pf-proof-visual { padding: 22px 22px 14px; background: #131008; border-bottom: 1px solid rgba(255,255,255,.06); }
.pf-proof-chart-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.pf-proof-svg { width: 100%; height: auto; display: block; }
.pf-proof-svg-sm { margin-top: 12px; }
.pf-proof-disclaimer { font-size: 9.5px; color: rgba(255,255,255,0.65); font-style: italic; margin-top: 10px; text-align: right; margin-bottom: 0; }
.pf-proof-data { padding: 18px 22px 20px; }
.pf-proof-metric { font-size: 38px; font-weight: 900; color: var(--gold); letter-spacing: -0.03em; line-height: 1; }
.pf-proof-metric-label { font-size: 13px; color: rgba(255,255,255,0.78); font-weight: 500; margin-top: 5px; margin-bottom: 16px; }
.pf-proof-context { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); }
.pf-proof-industry { font-size: 12px; color: rgba(255,255,255,0.72); font-weight: 600; }
.pf-proof-time { font-size: 11px; color: var(--gold); font-weight: 700; background: rgba(201,147,58,.1); padding: 3px 9px; border-radius: 4px; }

/* Rankings table */
.pf-proof-rankings { margin-top: 2px; }
.pf-proof-rank-header { display: grid; grid-template-columns: 1fr 48px 48px; gap: 6px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 4px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.65); }
.pf-proof-rank-row { display: grid; grid-template-columns: 1fr 48px 48px; gap: 6px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.04); align-items: center; }
.pf-rank-kw { font-size: 12px; color: rgba(255,255,255,0.78); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pf-rank-before { font-size: 12px; color: rgba(255,255,255,0.78); font-weight: 600; text-align: center; }
.pf-rank-after { font-size: 12.5px; color: #4ade80; font-weight: 700; text-align: center; }

/* Dashboard mini-grid */
.pf-proof-dashboard { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 0; }
.pf-dash-metric { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 8px; padding: 10px 12px; display: flex; flex-direction: column; gap: 3px; }
.pf-dash-val { font-size: 15px; font-weight: 800; color: var(--white); line-height: 1.1; }
.pf-dash-val-up { color: #4ade80; }
.pf-dash-lbl { font-size: 9.5px; color: rgba(255,255,255,0.65); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* ── CLIENT TRUST ── */
.trust-section { background: var(--white); }

.trust-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 22px; padding: 30px 28px; position: relative;
  transition: box-shadow .2s, transform .2s;
}
.trust-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); transform: translateY(-2px); }

.trust-quote {
  font-size: 48px; line-height: 1; color: var(--gold);
  font-family: Georgia, serif; margin-bottom: 10px;
}
.trust-label {
  display: inline-block; background: var(--dark); color: var(--white);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.trust-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; }
.trust-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.trust-testimonial { border: none; margin: 14px 0 6px; padding: 0; font-style: italic; font-size: 14px; color: var(--dark); line-height: 1.6; }
.trust-attribution { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin: 0; }

.trust-proof-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-proof-row span {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 16px;
  font-size: 13px; font-weight: 700; color: var(--dark);
}

.trust-cta { margin-top: 36px; text-align: center; }
.trust-cta p { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.trust-cta-actions { justify-content: center; }

/* ── PORTFOLIO CARDS ── */
.portfolio-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px; position: relative;
  transition: box-shadow .2s, transform .2s;
}
.portfolio-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,.09); transform: translateY(-2px); }
.portfolio-number { font-size: 52px; font-weight: 900; color: #ddd3c5; letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px; }
.portfolio-card h3 { font-size: 21px; margin-bottom: 8px; }
.portfolio-for { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.portfolio-includes { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; line-height: 1.55; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.portfolio-tags span {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; padding: 4px 11px; font-size: 11.5px; font-weight: 700; color: #444;
}

/* ── AUDIT SECTION ── */
.audit-hero {
  background: #0f1117; color: var(--white);
  padding: 96px 0;
}
.audit-hero h1 { color: var(--white); }
.audit-hero .hero-sub { color: #9a9080; }

.audit-checklist {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 28px 0;
}
.audit-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; font-weight: 600; color: #e0d8cf; list-style: none;
}
.audit-checklist li::before { content: "✓"; color: var(--gold-light); font-weight: 900; flex-shrink: 0; }

/* ── CASE STUDIES ── */
.cs-trust-note {
  display: inline-flex; align-items: flex-start; gap: 8px;
  margin-top: 16px; padding: 12px 16px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; font-size: 13.5px; color: #c8c0b4; line-height: 1.55;
  max-width: 680px;
}
.cs-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px; margin-bottom: 24px;
  transition: box-shadow .2s;
}
.cs-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.07); }
.cs-card h2 { font-size: clamp(22px, 3vw, 34px); margin-bottom: 12px; }
.cs-card h3 { margin-bottom: 10px; }
.cs-card > p { color: var(--muted); font-size: 15px; margin-bottom: 18px; line-height: 1.65; }
.cs-card > p:first-of-type { font-size: 16px; margin-bottom: 20px; }
.cs-tag {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 13px; border-radius: 999px; margin-bottom: 16px;
}
.cs-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 22px 0; }
.cs-meta-item { background: var(--cream); border-radius: 14px; padding: 16px 18px; }
.cs-meta-item strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.cs-meta-item span { font-size: 14px; font-weight: 700; color: var(--dark); }

/* ── BLOG ── */
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); transform: translateY(-2px); }
.blog-card-img {
  height: 180px; background: linear-gradient(135deg, #2a2520 0%, #1c1917 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; letter-spacing: -0.02em; color: var(--gold-light); font-weight: 900;
}
.blog-card-body { padding: 24px; }
.blog-meta { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.blog-card h2 { font-size: 17px; margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 14px; color: var(--muted); }
.blog-read-more { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--gold); }

/* ── WHY SECTION ── */
.why-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 26px; display: flex; align-items: flex-start; gap: 14px;
}
.why-check {
  width: 28px; height: 28px; border-radius: 50%; background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; flex-shrink: 0;
}
.why-item p { font-size: 15px; font-weight: 600; color: var(--dark); }

/* ── SERVICES PAGE ── */
.service-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; padding: 44px; margin-bottom: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
}
.service-block:last-child { margin-bottom: 0; }
.service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(28,25,23,0.11);
  z-index: 1;
}

/* Dark alternating blocks */
.service-block:nth-child(even) {
  background: var(--dark); border-color: transparent;
}
.service-block:nth-child(even):hover { box-shadow: 0 18px 52px rgba(0,0,0,0.32); }
.service-block:nth-child(even) .svc-icon { color: var(--gold-light); }
.service-block:nth-child(even) .label { color: var(--gold-light); }
.service-block:nth-child(even) .card-tag {
  background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.7);
}
.service-block:nth-child(even) h3 { color: var(--white); }
.service-block:nth-child(even) p { color: rgba(255,255,255,0.78); }
.service-block:nth-child(even) p strong { color: var(--gold-light); }
.service-block:nth-child(even) .btn-dark {
  background: var(--gold); color: var(--dark);
}
.service-block:nth-child(even) .btn-dark:hover { background: var(--gold-light); }

/* Icon */
.svc-icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 20px; display: block; }
.svc-icon svg { width: 44px; height: 44px; display: block; }

/* Divider between service blocks */
.svc-divider {
  border: none; border-top: 1px solid var(--border); margin: 0;
}

.service-block h3 { font-size: clamp(20px, 2.2vw, 26px); margin: 10px 0 18px; }
.service-block p { color: var(--muted); font-size: 16px; margin-bottom: 16px; line-height: 1.65; }
.service-includes { margin: 20px 0; }
.service-includes li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; font-weight: 600; padding: 8px 0;
  border-bottom: 1px solid var(--border); list-style: none; color: var(--dark);
}
.service-includes li::before { content: "→"; color: var(--gold); flex-shrink: 0; }
.service-includes li:last-child { border-bottom: none; }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 28px; padding: 44px;
}
.contact-form h2 { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 10px; }
.contact-form-intro { font-size: 0.95rem; color: var(--muted); margin: 0 0 12px; }
.contact-audit-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-audit-list li {
  font-size: 0.9rem;
  color: var(--dark);
  padding-left: 18px;
  position: relative;
}
.contact-audit-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}
/* Homepage latest blog section */
.home-blog-section { padding: 64px 0; }
.home-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
@media (max-width: 700px) { .home-blog-grid { grid-template-columns: 1fr; } }

.newsletter-form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 4px; }
.newsletter-email-input { flex: 1 1 260px; max-width: 340px; margin-bottom: 0; }
.newsletter-cta { background: var(--white); border: 1px solid var(--border); border-radius: 26px; padding: 44px; margin-top: 48px; text-align: center; }
.newsletter-cta h2 { font-size: clamp(24px, 3vw, 38px); margin-bottom: 14px; }
.newsletter-cta p { color: var(--muted); max-width: 520px; margin: 0 auto 28px; font-size: 16px; }
.audit-dark { background: #0f1117; }
.audit-dark h2 { color: var(--white); }
.audit-dark .label { background: rgba(201,147,58,.15); color: var(--gold); }
.audit-dark .section-sub { color: rgba(255,255,255,0.78); }
.audit-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.audit-proof-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; padding: 28px 24px; }
.audit-proof-stat { font-size: 40px; font-weight: 900; color: var(--gold); letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px; }
.audit-proof-desc { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.6; margin-bottom: 14px; }
.audit-proof-market { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: .06em; }
.audit-proof-note { font-size: 11.5px; color: rgba(255,255,255,0.72); font-style: italic; margin-top: 24px; text-align: center; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.form-input {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--border);
  border-radius: 12px; font-size: 15px; background: var(--cream);
  color: var(--dark); font-family: inherit; transition: border-color .2s;
  outline: none;
}
.form-input:focus { border-color: var(--dark); background: var(--white); }
textarea.form-input { resize: vertical; min-height: 130px; }

/* ── CONTACT INFO ── */
.contact-info-card {
  background: var(--dark); color: var(--white);
  border-radius: 26px; padding: 36px; height: 100%;
}
.contact-info-card .profile-img {
  width: 200px; height: 200px; border-radius: 24px; margin-bottom: 20px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 12px; font-size: clamp(17px, 2vw, 20px); }
.ci-item { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.ci-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #666; }
.ci-val { font-size: 15px; font-weight: 600; color: #e0d8cf; }
.ci-val a { color: var(--gold-light); }

/* ── ABOUT ── */
/* ── ABOUT PAGE ── */
.label-light { color: var(--gold-light); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold); color: var(--white);
  padding: 64px 0; text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 28px; }
.cta-band .btn-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER CTA STRIP ── */
.footer-cta-strip {
  background: linear-gradient(135deg, #1c1917 0%, #251a0e 50%, #1c1917 100%);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 56px 0;
}
.footer-cta-strip h2 { color: var(--white); font-size: clamp(24px, 3vw, 40px); margin-bottom: 14px; }
.footer-cta-strip p { color: #d8d2c8; font-size: 16px; max-width: 540px; margin-bottom: 28px; }
.footer-cta-strip .btn-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: #1a1814; color: var(--white);
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-logo-wrap { display: flex; align-items: center; gap: 12px; }
.footer-logo-name { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; color: var(--white); display: block; }
.footer-logo-role { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; display: block; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.78); font-weight: 500; line-height: 1.65; margin-top: 18px; }

/* 3-column grid */
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; padding: 44px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-grid-3col { grid-template-columns: 1.6fr 1fr 1.3fr; }
.footer-cta-btn { margin-top: 18px; display: inline-block; }

.footer-col-title {
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.9); margin-bottom: 18px; display: block;
  padding-bottom: 10px; border-bottom: 1px solid rgba(201,147,58,.2);
}

/* Link lists */
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13.5px; color: rgba(255,255,255,0.82); font-weight: 600;
  transition: color .18s;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.footer-links a:hover { color: rgba(255,255,255,1); text-decoration: underline; }

/* Trust / Connect column */
.footer-trust-bio {
  font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.65;
  margin-bottom: 18px;
}
.footer-connect-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-connect-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.82); font-weight: 600;
  transition: color .18s;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.footer-connect-link:hover { color: var(--gold-light); text-decoration: underline; }
.footer-connect-link svg { flex-shrink: 0; opacity: .7; }
.footer-social-row { display: flex; gap: 14px; align-items: center; }
.footer-social-icon { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.78); transition: color .18s, opacity .18s; }
.footer-social-icon:hover { color: var(--white); }
.footer-social-icon svg { display: block; width: 20px; height: 20px; flex-shrink: 0; }

/* Microcopy + markets */
.footer-microcopy { font-size: 11.5px; color: rgba(255,255,255,0.72); line-height: 1.65; margin-top: 14px; }
.footer-location { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.5; margin-top: 8px; }
.footer-calendly-link { font-size: 13px; font-weight: 600; color: var(--gold-light); }
.footer-calendly-link:hover { color: var(--white); }
.footer-meta-item { font-size: 13px; color: rgba(255,255,255,0.78); display: flex; flex-direction: column; gap: 2px; }
.footer-meta-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.65); }

/* Bottom strip */
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.72); }

/* Legal links */
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.72); font-weight: 500; transition: color .18s; text-underline-offset: 3px; }
.footer-legal a:hover { color: rgba(255,255,255,1); text-decoration: underline; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #1c1917 0%, #251a0e 55%, #1c1917 100%);
  color: var(--white); padding: 76px 0 68px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(201,147,58,.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); font-size: clamp(34px, 4.5vw, 58px); }
.page-hero p { color: #9a9080; font-size: 17px; margin-top: 14px; max-width: 600px; line-height: 1.65; }
.contact-hero-urgency { color: var(--gold) !important; font-size: 13px !important; font-weight: 700; letter-spacing: 0.04em; margin-top: 12px !important; }
.contact-hero-trust { color: rgba(255,255,255,0.78) !important; font-size: 13px !important; font-weight: 500; margin-top: 4px !important; }

/* ── SERVICES HERO ENHANCED ── */
.svc-hero { background: none; }
.svc-hero::before { display: none; }
.svc-hero .container { position: relative; z-index: 2; }
.svc-hero-actions { margin-top: 0; }

/* Animated gradient bg */
/* Oversized real element so transform movement never shows edges — compositor-safe */
.svc-hero-bg {
  position: absolute; inset: -15%; z-index: 0;
  background:
    radial-gradient(ellipse 55% 65% at 28% 48%, rgba(201,147,58,.08) 0%, transparent 55%),
    linear-gradient(135deg, #1c1917 0%, #2e1a08 30%, #1c1917 60%, #261308 100%);
  will-change: transform;
  animation: svcGradient 10s ease infinite;
}
@keyframes svcGradient {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-6%, -3%); }
  100% { transform: translate(0, 0); }
}

/* Floating keyword bubbles */
.svc-bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.svc-bubble-wrap { position: absolute; will-change: transform; }
.svc-b1 { top: 24%; left: 71%; }
.svc-b2 { top: 63%; left: 80%; }
.svc-b3 { top: 40%; left: 87%; }
.svc-b4 { top: 75%; left: 67%; }
.svc-bubble {
  display: block; white-space: nowrap;
  background: rgba(201,147,58,.12); border: 1px solid rgba(201,147,58,.28);
  color: rgba(201,147,58,.9); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 7px 16px; border-radius: 999px;
  will-change: transform;
  animation: svcFloat 7s ease-in-out infinite;
}
.svc-b2 .svc-bubble { animation-delay: 1.4s; animation-duration: 5.5s; }
.svc-b3 .svc-bubble { animation-delay: 0.7s; animation-duration: 6.5s; }
.svc-b4 .svc-bubble { animation-delay: 2.1s; animation-duration: 8s; }
@keyframes svcFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-13px); }
}
@media (max-width: 768px) { .svc-bubbles { display: none; } }

/* Text reveal — only when JS adds .svc-js */
.svc-js .svc-reveal { opacity: 0; transform: translateY(20px); will-change: opacity, transform; animation: svcReveal 0.6s ease forwards; }
.svc-js .svc-reveal:nth-child(1) { animation-delay: 0.08s; }
.svc-js .svc-reveal:nth-child(2) { animation-delay: 0.22s; }
.svc-js .svc-reveal:nth-child(3) { animation-delay: 0.38s; }
.svc-js .svc-reveal:nth-child(4) { animation-delay: 0.52s; }
@keyframes svcReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* CTA glow on hover */
.svc-cta-glow { transition: box-shadow 0.25s ease, transform 0.25s ease; }
.svc-cta-glow:hover {
  box-shadow: 0 0 28px rgba(201,147,58,.5), 0 6px 24px rgba(0,0,0,.3);
  transform: translateY(-2px);
}

/* Reduce motion: strip all animations */
@media (prefers-reduced-motion: reduce) {
  .svc-hero-bg { animation: none; }
  .svc-bubble  { animation: none; }
  .svc-js .svc-reveal { opacity: 1; transform: none; animation: none; }
  .svc-cta-glow { transition: none; }
}

/* ── PROFILE PHOTO (real image) ── */
.profile-photo {
  width: 100%; max-width: 220px; height: 220px;
  object-fit: cover; object-position: center top;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.15);
  display: block; margin: 0 auto 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

/* ── HERO PROFILE IMAGE ── */
.hero-profile-img {
  width: 300px; height: 300px;
  border-radius: 50%;
  object-fit: cover; object-position: center;
  display: block; margin: 0 auto 24px;
  border: 6px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  position: relative; z-index: 2;
}

/* ── ABOUT PAGE LAYOUT ── */
.about-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.about-hero-content h1 { color: var(--white); margin-bottom: 14px; }
.about-hero-content p { color: #b0a898; font-size: 17px; line-height: 1.65; margin-bottom: 12px; }
.about-hero-p2 { color: #9a9080 !important; font-size: 15px !important; }
.about-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.about-hero-image { display: flex; justify-content: center; align-items: center; }
.about-profile-img {
  width: 320px; height: 320px;
  border-radius: 32px;
  object-fit: cover; object-position: center;
  border: 6px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  display: block;
}

.profile-img {
  width: 320px;
  height: 320px;
  border-radius: 32px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 6px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.about-hero-image .profile-img {
  width: 260px;
  height: 260px;
  border-radius: 28px;
}

/* Quick trust cards */
.about-trust-section { background: var(--white); }
.about-trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px;
}
.about-trust-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
}
.about-trust-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; flex-shrink: 0;
}
.about-trust-card p { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0; }

/* About blocks (2-col) */
.about-blocks-section { background: var(--cream); }
.about-block {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px;
  padding: 40px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.about-block-last { border-bottom: none; }
.about-block-left h3 { font-size: 22px; margin: 8px 0 0; line-height: 1.25; }
.about-block-right p { color: var(--muted); font-size: 15px; margin-bottom: 14px; line-height: 1.65; }
.about-bullets { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.about-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--dark); line-height: 1.5;
}
.about-bullets li::before { content: "→"; color: var(--gold); flex-shrink: 0; }

/* Process */
.about-process-section { background: var(--white); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px;
}
.process-step {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px; position: relative;
}
.process-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; margin-bottom: 16px;
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Why different */
.about-why-section { background: var(--cream); }
.about-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px;
}
.about-why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 12px;
}
.why-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 6px;
}
.about-why-card p { font-size: 15px; font-weight: 600; color: var(--dark); margin: 0; line-height: 1.5; }

/* About CTA */
.about-cta-section { background: var(--dark); padding: 56px 0; }

/* Audit page CTA */
.audit-cta-section { background: #0f1117; padding: 56px 0; }
.audit-cta-inner { max-width: 760px; }
.audit-cta-inner h2 { color: var(--white); margin: 8px 0 16px; }
.audit-cta-inner p { color: #9a9080; font-size: 17px; line-height: 1.65; margin-bottom: 32px; }
.about-cta-inner { max-width: 720px; }
.about-cta-inner h2 { color: var(--white); margin: 8px 0 14px; }
.about-cta-inner p { color: #9a9080; font-size: 17px; line-height: 1.65; margin-bottom: 28px; }
.about-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* About hero subtitle */
.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 19px) !important;
  font-weight: 600 !important;
  color: var(--gold-light) !important;
  line-height: 1.4 !important;
  margin-bottom: 16px !important;
  margin-top: 6px !important;
  max-width: 560px;
}

/* About proof stats strip */
.about-stats-strip { background: var(--white); padding: 0 0 64px; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.about-stat-card {
  background: var(--cream); border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 16px; padding: 24px 20px; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.about-stat-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.about-stat-num {
  display: block; font-size: 28px; font-weight: 800;
  color: var(--dark); font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em; margin-bottom: 6px; line-height: 1;
}
.about-stat-label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: .06em; line-height: 1.4;
}

/* About story section */
.about-story-section { background: var(--cream); padding: 64px 0; }
.about-story-inner { max-width: 720px; }
.about-story-inner p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.about-story-inner p:last-child { margin-bottom: 0; }

/* About tools section — reuses tool-logo-card classes from homepage */
.about-tools-section { background: var(--white); }

/* About FAQ section */
.about-faq-section { background: var(--cream); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  font-size: 16px; font-weight: 700; color: var(--dark);
  cursor: pointer; padding: 20px 0; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--gold); font-size: 22px; font-weight: 400;
  flex-shrink: 0; display: inline-block; transition: transform .25s ease; line-height: 1;
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 0 20px; font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0;
}

/* ── CONTACT PAGE ── */
.contact-page-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: start;
}
.contact-profile-photo {
  width: 80px; height: 80px;
  object-fit: cover; object-position: center top;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.15);
  display: block; margin-bottom: 20px;
}

/* ── HOMEPAGE AUDIT CTA BOX ── */
.audit-cta-box {
  background: var(--dark); color: var(--white);
  border-radius: 32px; padding: 56px;
}
.audit-cta-box .label { color: var(--gold-light); }
.audit-cta-box h2 { color: var(--white); margin-bottom: 14px; }
.audit-cta-box .section-sub { color: #d8d2c8; }
.audit-cta-box .audit-checklist { margin: 28px 0; }
.audit-cta-box .audit-checklist li { color: #f5efe6; }

/* ── HOMEPAGE CONTACT DARK BOX ── */
.contact-box-dark {
  background: var(--dark); color: var(--white);
  border-radius: 32px; padding: 56px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.contact-box-dark h2 { color: var(--white); margin-bottom: 14px; }
.contact-box-dark p { color: #9a9080; font-size: 16px; max-width: 520px; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ── FOOTER LOGO BADGE (smaller variant) ── */
.footer-logo-badge {
  width: 36px; height: 36px; font-size: 13px; border-radius: 8px;
}

/* ── FOOTER COLUMN CTA BUTTON ── */
.footer-col-cta { margin-top: 20px; }

/* ── TOOLS SECTION ── */
.tools-section { background: var(--white); }
.tools-logo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 44px;
}
.tool-logo-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 20px; padding: 24px 22px;
  transition: box-shadow .2s, transform .2s;
}
.tool-logo-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.07); transform: translateY(-3px); }
.tool-logo-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.tool-logo-wrap img { width: 32px; height: 32px; object-fit: contain; display: block; }
.tool-logo-info h3 { font-size: 14px; font-weight: 700; margin-bottom: 5px; line-height: 1.3; color: var(--dark); }
.tool-logo-info p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── PORTFOLIO MOCKUPS ── */
.pf-mockup {
  background: #f4f1ec; border: 1px solid var(--border);
  border-radius: 14px; padding: 16px; margin: 20px 0;
  font-size: 12px;
}
.mock-header {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 10px; margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot.red { background: #f87171; }
.mock-dot.amber { background: #fbbf24; }
.mock-dot.grn { background: #4ade80; }
.mock-label { font-size: 11px; font-weight: 700; color: var(--muted); margin-left: 4px; letter-spacing: .03em; }
.mock-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid #ede9e2; }
.mock-row:last-child { border-bottom: none; }
.mock-tag { font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 999px; white-space: nowrap; }
.mock-tag.up { background: #d1fae5; color: #065f46; }
.mock-tag.same { background: #fef3c7; color: #92400e; }
.mock-line { flex: 1; height: 7px; border-radius: 4px; background: #ddd8d0; }
.mock-line.long { max-width: 160px; }
.mock-line.med { max-width: 120px; }
.mock-rank { font-size: 11px; font-weight: 800; color: var(--dark); white-space: nowrap; }
.mock-ai-header {
  background: #e8f0fe; border-radius: 8px; padding: 5px 10px;
  font-size: 11px; font-weight: 800; color: #1a73e8;
  display: inline-block; margin-bottom: 10px;
}
.mock-ai-text { font-size: 12px; color: var(--text); line-height: 1.6; margin-bottom: 10px; }
.mock-ai-sources { display: flex; gap: 6px; flex-wrap: wrap; }
.mock-source { font-size: 10.5px; font-weight: 700; color: #1a73e8; background: #e8f0fe; padding: 2px 8px; border-radius: 999px; }
.mock-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; padding: 5px 0; border-bottom: 1px solid #ede9e2; font-weight: 600;
}
.mock-check:last-child { border-bottom: none; }
.mock-check.done { color: #065f46; }
.mock-check.todo { color: var(--muted); }
.mock-wire { display: flex; flex-direction: column; gap: 5px; }
.mock-wire-row { display: flex; gap: 5px; }
.mock-wire-block {
  border-radius: 6px; padding: 6px 10px;
  font-size: 11px; font-weight: 700;
}
.mock-wire-block.heading { background: #2a2520; color: var(--white); }
.mock-wire-block.body-b { background: #e8e4dc; color: var(--muted); flex: 1; }
.mock-wire-block.trust-b { background: #fef3c7; color: #92400e; }
.mock-wire-block.faq-b { background: #ede9e2; color: var(--dark); }
.mock-wire-block.cta-b { background: var(--gold); color: var(--white); }
.mock-issue {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; padding: 5px 0; border-bottom: 1px solid #ede9e2; font-weight: 600;
}
.mock-issue:last-child { border-bottom: none; }
.mock-issue.high { color: #b91c1c; }
.mock-issue.med { color: #c2410c; }
.mock-issue.low { color: var(--muted); }
.mock-cal-row {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0; border-bottom: 1px solid #ede9e2; font-size: 11.5px;
}
.mock-cal-row:last-child { border-bottom: none; }
.mock-cal-week { font-weight: 800; color: var(--gold); width: 52px; flex-shrink: 0; }
.mock-cal-item { font-weight: 600; color: var(--dark); }

/* ── CASE STUDY MOCKUPS ── */
.cs-visual-note {
  font-size: 12px; color: rgba(255,255,255,0.72); font-style: italic;
  padding: 5px 12px; background: rgba(255,255,255,.07);
  border-radius: 6px; border: 1px solid rgba(255,255,255,.12);
  display: inline-block; margin-top: 8px;
}
.cs-mockup {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px; margin: 20px 0;
}
.cs-mockup-title {
  font-size: 10.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em; color: var(--muted); margin-bottom: 14px;
}
.cs-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cs-ba-col { border-radius: 10px; padding: 12px 14px; }
.cs-ba-col.before { background: #fee2e2; }
.cs-ba-col.after { background: #d1fae5; }
.cs-ba-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.cs-ba-col.before .cs-ba-label { color: #991b1b; }
.cs-ba-col.after .cs-ba-label { color: #065f46; }
.cs-ba-item { font-size: 11.5px; font-weight: 600; padding: 3px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.cs-ba-item:last-child { border-bottom: none; }
.cs-ba-col.before .cs-ba-item { color: #7f1d1d; }
.cs-ba-col.after .cs-ba-item { color: #064e3b; }
.cs-growth-bars { display: flex; flex-direction: column; gap: 10px; }
.cs-growth-row { display: flex; flex-direction: column; gap: 4px; }
.cs-growth-label { font-size: 11.5px; font-weight: 700; color: var(--dark); display: flex; justify-content: space-between; }
.cs-bar-track { background: #ede9e2; border-radius: 999px; height: 8px; }
.cs-bar-fill { height: 8px; border-radius: 999px; background: var(--gold); }
.cs-score-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.cs-score-item { background: #f4f1ec; border-radius: 8px; padding: 10px 12px; }
.cs-score-label { font-size: 10.5px; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.cs-score-val { font-size: 13px; font-weight: 800; color: var(--dark); }
.cs-score-val.good { color: #065f46; }
.cs-score-val.bad { color: #b91c1c; }
.cs-issue-stat-row { display: flex; gap: 10px; }
.cs-issue-stat { text-align: center; background: #f4f1ec; border-radius: 10px; padding: 12px 10px; flex: 1; }
.cs-issue-stat-num { font-size: 22px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.cs-issue-stat-num.danger { color: #b91c1c; }
.cs-issue-stat-num.fixed { color: #065f46; }
.cs-issue-stat-label { font-size: 10px; font-weight: 700; color: var(--muted); }

/* ── BLOG THUMBNAILS ── */
.blog-thumb {
  height: 180px; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 20px; position: relative; overflow: hidden;
}
.blog-thumb-icon {
  font-size: 52px; font-weight: 900; color: rgba(255,255,255,.18);
  position: absolute; top: 12px; right: 16px; letter-spacing: -0.03em; line-height: 1;
}
.blog-thumb-tag {
  display: inline-block; background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px; padding: 4px 12px;
  font-size: 11px; font-weight: 800; color: #ffffff; margin-bottom: 8px;
}
/* Higher specificity than .blog-card p to prevent muted color override */
.blog-thumb .blog-thumb-title {
  font-size: 14px; font-weight: 800; color: #ffffff;
  line-height: 1.3; max-width: 210px;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.bt-geo  { background: linear-gradient(135deg, #1e3460 0%, #0f2040 100%); }
.bt-gbp  { background: linear-gradient(135deg, #1a4430 0%, #0d2a1c 100%); }
.bt-aeo  { background: linear-gradient(135deg, #2e1e52 0%, #1c0f38 100%); }
.bt-local { background: linear-gradient(135deg, #3a2210 0%, #221408 100%); }
.bt-svc  { background: linear-gradient(135deg, #0e2a40 0%, #081c2c 100%); }
.bt-ai   { background: linear-gradient(135deg, #0c1c2c 0%, #060e18 100%); }

/* ── CONTACT TRUST BADGES ── */
.contact-trust-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 22px; }
.contact-trust-badges span {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px; padding: 4px 11px;
  font-size: 11.5px; font-weight: 700; color: var(--gold-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 1020px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid-3col { grid-template-columns: 1.4fr 1fr 1.3fr; }
  .proof-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-trust-points { grid-template-columns: repeat(2, 1fr); }
  .pf-process-steps { grid-template-columns: repeat(2, 1fr); }
  .pf-problems-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-proof-grid { grid-template-columns: 1fr; }
  .audit-proof-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hero-grid, .cols-2 { grid-template-columns: 1fr; }
  .lm-strip-inner { flex-direction: column; align-items: flex-start; }
  .cs-meta { grid-template-columns: 1fr; }
  .float-labels { display: none; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-image { order: -1; }
  .about-profile-img { width: 220px; height: 220px; border-radius: 20px; }
  .about-hero-image .profile-img { width: 220px; height: 220px; border-radius: 20px; }
  .profile-img { width: 260px; height: 260px; border-radius: 24px; }
  .about-block { grid-template-columns: 1fr; gap: 20px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-box-dark { flex-direction: column; align-items: flex-start; padding: 36px; }
  .contact-actions { flex-direction: row; flex-wrap: wrap; }
  .audit-cta-box { padding: 36px; }
}

@media (max-width: 640px) {
  .main-nav { display: none; } /* overridden below when .nav-open */
  .section, .page-hero { padding: 60px 0; }
  .hero { padding: 56px 0 48px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .cols-3 { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: 1fr; }
  .footer-grid,
  .footer-grid-3col { grid-template-columns: 1fr; padding: 36px 0 28px; gap: 28px; }
  .footer-col { text-align: center; }
  .footer-logo-wrap { justify-content: center; }
  .footer-tagline { margin-top: 16px; }
  .footer-connect-list { align-items: center; }
  .footer-cta-btn { width: 100%; text-align: center; display: block; box-sizing: border-box; }
  .proof-cards-grid { grid-template-columns: 1fr; }
  .pf-process-steps { grid-template-columns: 1fr; }
  .pf-problems-grid { grid-template-columns: 1fr; }
  .pf-eeat-grid { grid-template-columns: 1fr; }
  .pf-hero-stats { gap: 20px; }
  .audit-checklist { grid-template-columns: 1fr; }
  .footer-cta-strip .btn-actions { flex-direction: column; }
  .lm-actions { flex-direction: column; width: 100%; }
  .lm-actions .btn { width: 100%; }
  .contact-form, .service-block { padding: 28px 22px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; gap: 10px; }
  .footer-legal { justify-content: center; gap: 14px; }
  .contact-box-dark { padding: 26px 22px; border-radius: 22px; }
  .audit-cta-box { padding: 26px 22px; border-radius: 22px; }
  .contact-actions { flex-direction: column; width: 100%; }
  .contact-actions .btn { width: 100%; justify-content: center; }
  .profile-photo { width: 160px; height: 160px; }
  .hero-profile-img { width: 220px; height: 220px; }
  .about-profile-img { width: 100%; height: 220px; border-radius: 20px; }
  .profile-img { width: 100%; height: 220px; border-radius: 20px; }
  .about-trust-grid, .process-grid, .about-why-grid { grid-template-columns: 1fr; }
  .about-cta-actions { flex-direction: column; }
  .about-cta-actions .btn { width: 100%; justify-content: center; }
  .tools-logo-grid { grid-template-columns: 1fr; }
  .cs-before-after { grid-template-columns: 1fr; }
  .cs-issue-stat-row { flex-wrap: wrap; }
  .cs-score-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .audit-form-wrap { padding: 28px 22px; border-radius: 20px; }
  .calendly-wrap iframe { height: 650px; min-height: 650px; }
}

/* ── Utility: white section with no top padding ── */
.section-white { background: var(--white); padding-top: 0; }
.section-white-full { background: var(--white); }
.section-cream { background: var(--cream); }
.services-cta { margin-top: 32px; text-align: center; }

/* ── Audit page: why-matters paragraphs ── */
.why-matters-para { color: var(--muted); font-size: 17px; max-width: 720px; line-height: 1.7; margin-bottom: 28px; }

/* ── Contact page ── */
.contact-card-sub { color: #7a7060; font-size: 15px; margin-bottom: 18px; line-height: 1.65; }
.contact-audit-btn { margin-top: 20px; width: 100%; justify-content: center; }
.contact-form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.contact-trust-line { font-size: 13px; font-weight: 600; color: #16a34a; margin: 12px 0 20px; }
.form-label-opt { font-weight: 400; color: var(--muted); font-size: 12px; }
.form-success { font-size: 14px; color: #16a34a; font-weight: 600; margin: 0; }
.ci-link-gold { color: var(--gold-light); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--cream); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 22px; padding: 36px 30px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  transition: box-shadow .25s, transform .25s;
}
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.09); transform: translateY(-3px); }
.testimonial-quote {
  font-size: 44px; line-height: 1; color: var(--gold);
  font-family: Georgia, serif; margin-bottom: -10px;
}
.testimonial-body { font-size: 16px; color: var(--text); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .04em; }

/* ── CALENDLY EMBED ── */
.calendly-section { background: var(--white); overflow: hidden; }
.calendly-section-cta { margin-top: 16px; display: inline-block; }
.calendly-inline-widget { min-width: 320px; height: 700px; }
.calendly-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-sizing: border-box;
}
.calendly-wrap iframe {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 700px;
  border: none;
  box-sizing: border-box;
}
.calendly-fallback {
  display: none;
  text-align: center; padding: 48px 24px;
  background: var(--cream); border-radius: 24px;
  border: 1px solid var(--border); max-width: 520px; margin: 0 auto;
}
.calendly-fallback p { color: var(--muted); margin-bottom: 20px; font-size: 15px; }

/* ── AUDIT LEAD FORM ── */
.audit-form-section { background: var(--cream); }
.audit-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 28px; padding: 48px; max-width: 780px; margin: 0 auto;
}
.audit-form-wrap h2 { margin-bottom: 8px; }
.audit-form-wrap .audit-form-sub { color: var(--muted); font-size: 16px; margin-bottom: 32px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group select.form-input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit-wrap { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.form-submit-wrap .btn { align-self: flex-start; }
.form-direct-note { font-size: 13px; color: var(--muted); }
.form-direct-note a { color: var(--gold); }
.form-privacy-note { font-size: 12px; color: var(--muted); margin: 12px 0 4px; }
.about-location-note { font-size: 15px; color: var(--muted); font-style: italic; margin-bottom: 28px; }
.pf-architecture-note { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 12px; }
.pf-architecture-note a { color: var(--gold-light); }
.rs-aggregate-caption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 20px; }
.botcheck { display: none; }
.card-btn-top { margin-top: 16px; }
.cs-card .service-includes { margin-bottom: 18px; }
.hero-actions-center { justify-content: center; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 21px; font-weight: 800; color: var(--dark); margin-top: 44px; margin-bottom: 12px; line-height: 1.35; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-top: 28px; margin-bottom: 8px; }
.legal-content p { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.legal-content ul li { font-size: 16px; color: var(--text); line-height: 1.65; }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal-meta { font-size: 13px; color: var(--muted); margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ── HERO GRID TEXTURE ── */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* ── PROFILE CARD GOLD GLOW ── */
.profile-card::before {
  content: ""; position: absolute;
  width: 260px; height: 260px;
  top: 24px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,147,58,.28) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none; z-index: 0;
}
.profile-wrap:hover .profile-card { transform: translateY(-5px) rotate(0.5deg); transition: transform .35s ease; }

/* ── HERO PROOF STATS ── */
.hero-proof-stats { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.hero-stat { display: flex; align-items: center; gap: 7px; }
.hero-stat-check { color: var(--gold-light); font-weight: 900; font-size: 14px; }
.hero-stat-text { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7); }

/* ── FL-6 FLOAT LABEL ── */
.fl-6 { top: -16px; right: -20px; animation: floatB 3.9s ease-in-out infinite 0.9s; }

/* ── MINI DASHBOARD ── */
.mini-dashboard {
  background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 14px 16px; margin-top: 18px; text-align: left;
}
.md-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.md-title { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); }
.md-live-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: livePulse 2s ease-in-out infinite; }
.md-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.md-row:last-child { margin-bottom: 0; }
.md-label { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,.5); width: 82px; flex-shrink: 0; }
.md-bar-track { flex: 1; height: 4px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.md-bar {
  height: 100%; width: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
}
.md-bar-1 { animation: mdFill1 1.4s ease-out 0.6s forwards; }
.md-bar-2 { animation: mdFill2 1.4s ease-out 0.85s forwards; }
.md-bar-3 { animation: mdFill3 1.4s ease-out 1.1s forwards; }
.md-val { font-size: 10px; font-weight: 800; color: var(--gold-light); width: 26px; text-align: right; flex-shrink: 0; }

/* ── SCROLL CUE ── */
.hero-scroll-cue {
  text-align: center; padding: 24px 0 8px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero-scroll-cue span { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: .1em; }
.scroll-arrow { font-size: 18px; color: rgba(255,255,255,0.65); animation: arrowBounce 1.6s ease-in-out infinite; }

/* ── JOURNEY SECTION ── */
.journey-section { background: var(--cream); }
.journey-track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.journey-track::before {
  content: ""; position: absolute;
  top: 31px; left: calc(10% + 8px); right: calc(10% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  z-index: 0;
}
.journey-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px; position: relative; z-index: 1;
}
.journey-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(201,147,58,.18);
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}
.journey-step:hover .journey-icon-wrap {
  transform: translateY(-4px);
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(201,147,58,.35);
}
.journey-step-num {
  font-size: 11px; font-weight: 900; color: var(--gold);
  letter-spacing: .08em; margin-bottom: 6px;
}
.journey-step h3 { font-size: 15px; margin-bottom: 8px; line-height: 1.3; }
.journey-step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* Buyers headline above track */
.journey-buyers-headline {
  text-align: center; font-size: 12px; font-weight: 800;
  color: var(--gold); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 28px; margin-top: -16px;
}

/* Step platform tag */
.journey-step-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  color: var(--gold); background: rgba(201,147,58,.1);
  border: 1px solid rgba(201,147,58,.22); border-radius: 999px;
  padding: 3px 8px; margin-bottom: 8px;
}
.journey-step-tag svg { flex-shrink: 0; }
.journey-step-highlight .journey-step-tag {
  color: var(--gold-light); background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}

/* Hover explanation */
.journey-hover-tip {
  display: block; font-size: 11.5px; color: rgba(105,97,90,.75);
  line-height: 1.55; margin-top: 10px;
  opacity: 0; transform: translateY(5px);
  transition: opacity .22s ease, transform .22s ease;
  max-width: 170px;
}
.journey-step:hover .journey-hover-tip { opacity: 1; transform: translateY(0); }
.journey-step-highlight .journey-hover-tip { color: rgba(255,255,255,0.78); }

/* Background divider between steps */
.journey-step:not(:last-child) {
  border-right: 1px solid rgba(201,147,58,.1);
}

/* ── FADE-UP SCROLL ANIMATION ── */
.fade-up { opacity: 0.01; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up.visible,
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ── JOURNEY RESPONSIVE ── */
@media (max-width: 860px) {
  .journey-track { grid-template-columns: 1fr; gap: 24px; }
  .journey-track::before { display: none; }
  .journey-step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  .journey-step:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(201,147,58,.1); padding-bottom: 24px; }
  .journey-icon-wrap { flex-shrink: 0; width: 52px; height: 52px; margin-bottom: 0; }
  .journey-hover-tip { display: none; }
  .journey-buyers-headline { margin-bottom: 16px; }
}

/* ── ANIMATIONS ── */
@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-9px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
@keyframes floatFive {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 7px)); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes mdFill1 { to { transform: scaleX(0.82); } }
@keyframes mdFill2 { to { transform: scaleX(0.74); } }
@keyframes mdFill3 { to { transform: scaleX(0.91); } }

/* ── FLOAT BADGE: slower + glassy ── */
.float-label {
  opacity: 0.9;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.fl-1 { animation-duration: 6.5s; }
.fl-2 { animation-duration: 7.2s; }
.fl-3 { animation-duration: 6.8s; }
.fl-4 { animation-duration: 7.6s; }
.fl-5 { animation-duration: 7s; }
.fl-6 { animation-duration: 6.9s; }

/* ── HERO TRUST LINE ── */
.hero-proof-line {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5);
  margin-bottom: 14px; letter-spacing: .01em;
}

.hero-diff-line {
  font-size: 13px; font-weight: 700; color: var(--gold-light);
  margin-top: 10px; margin-bottom: 28px; letter-spacing: .01em;
}

.hero-micro-friction {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.78);
  margin-top: 10px; letter-spacing: .02em;
}

.hero-trust-line {
  font-size: 12px; color: rgba(255,255,255,0.78);
  margin-top: 12px; font-style: italic; letter-spacing: .02em;
}

/* ── DASHBOARD NUMERIC VALUES ── */
.md-val em { font-style: normal; color: #4ade80; font-size: 9px; font-weight: 700; margin-left: 2px; }

/* ── HERO DASHBOARD STRIP ── */
/* Trust strip */
.hero-trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.hts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  list-style: none;
  margin: 0; padding: 0;
  justify-content: center;
}
.hts-item {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}
.hts-icon { color: var(--gold); margin-right: 4px; }

/* Recent Results section */
.recent-results-section { background: var(--white); }
.rr-grid { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 8px; }
.rr-card {
  flex: 1 1 280px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
}
.rr-industry {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.rr-result {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.2;
}
.rr-detail {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.hero-dash-strip { background: var(--dark); padding: 0 0 40px; }
.hero-dash-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 24px 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.hd-label-row { display: flex; align-items: center; justify-content: space-between; }
.hd-live { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: .1em; }
.hd-live-dot {
  position: relative;
  width: 7px; height: 7px; background: #4ade80; border-radius: 50%;
  animation: livePulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.hd-live-dot::after {
  content: ''; position: absolute;
  inset: -3px; border-radius: 50%;
  border: 1.5px solid #4ade80;
  animation: dotRing 2.4s ease-out infinite;
}
@keyframes dotRing {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(2.6); opacity: 0; }
}
.hd-period { font-size: 11px; color: rgba(255,255,255,.3); font-weight: 600; }
.hd-attribution { font-size: 10.5px; color: rgba(255,255,255,0.72); font-weight: 500; text-align: center; margin-top: 4px; letter-spacing: .01em; }

/* Pull quote strip */
.pull-quote-strip { background: var(--white); padding: 52px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pull-quote { font-size: clamp(19px, 2.4vw, 26px); font-style: italic; color: var(--dark); text-align: center; max-width: 720px; margin: 0 auto; line-height: 1.55; font-weight: 500; }
.hd-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hd-metric {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 18px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center;
  transition: background .2s, transform .2s;
}
.hd-metric:hover { background: rgba(201,147,58,.1); transform: translateY(-2px); }
.hd-metric-top { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.hd-num { font-size: 26px; font-weight: 800; color: var(--white); font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.hd-delta { font-size: 10px; font-weight: 700; letter-spacing: .01em; }
.hd-delta.up { color: #4ade80; }
.hd-delta.down { color: #f87171; }
.hd-lbl { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.92); }
.hd-source { font-size: 9.5px; font-weight: 500; color: rgba(255,255,255,0.72); letter-spacing: .02em; }

/* ── JOURNEY STEP FEATURED (step 1) ── */
.journey-step-featured .journey-icon-wrap {
  width: 80px; height: 80px; border-width: 3px;
  box-shadow: 0 6px 28px rgba(201,147,58,.28);
}
.journey-step-featured .journey-icon-wrap svg { width: 30px; height: 30px; }
.journey-step-featured h3 { font-size: 17px; font-weight: 800; }

/* ── JOURNEY STEP HIGHLIGHT (step 3) ── */
.journey-step-highlight {
  background: var(--dark); border-radius: 20px;
  padding: 20px 14px 24px; margin-top: -18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.journey-step-highlight .journey-icon-wrap {
  background: rgba(255,255,255,.08);
  border-color: var(--gold-light); color: var(--gold-light);
}
.journey-step-highlight .journey-step-num { color: var(--gold-light); }
.journey-step-highlight h3 { color: var(--white); }
.journey-step-highlight p { color: rgba(255,255,255,0.78); }

/* ── JOURNEY ARROWS BETWEEN STEPS ── */
.journey-step:not(:last-child) { position: relative; }
.journey-step:not(:last-child)::after {
  content: "";
  position: absolute; top: 28px; right: -7px;
  width: 9px; height: 9px;
  border-right: 2.5px solid var(--gold);
  border-top: 2.5px solid var(--gold);
  transform: rotate(45deg); z-index: 2;
}
.journey-step-highlight:not(:last-child)::after { border-color: var(--gold-light); }

/* ── CASE STUDY PREVIEW ── */
.cs-preview-strip { background: var(--cream); padding: 0 0 64px; }
.cs-preview-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.cs-preview-tag {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 16px;
}
.cs-preview-left h3 { font-size: clamp(18px, 2vw, 24px); margin-bottom: 12px; line-height: 1.3; }
.cs-preview-left p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.cs-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cs-stat-box {
  background: var(--cream); border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 14px; padding: 18px 16px; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.cs-stat-box:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.cs-stat-num { display: block; font-size: 28px; font-weight: 800; color: var(--dark); font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.cs-stat-lbl { display: block; font-size: 11px; font-weight: 700; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

/* ── IMG HOVER EFFECTS ── */
.img-hover-card { transition: transform .3s ease, box-shadow .3s ease; }
.img-hover-card:hover { transform: translateY(-4px) scale(1.005); box-shadow: 0 24px 64px rgba(0,0,0,.14); }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 860px) {
  .hd-metrics { grid-template-columns: repeat(2, 1fr); }
  .cs-preview-card { grid-template-columns: 1fr; padding: 32px 28px; gap: 28px; }
}
@media (max-width: 640px) {
  .hd-metrics { grid-template-columns: repeat(2, 1fr); }
  .hero-dash-card { padding: 18px 20px; }
  .journey-step:not(:last-child)::after { display: none; }
}

/* ── HERO URGENCY + WHO-FOR ── */
.hero-urgency-line {
  font-size: 12px; font-weight: 700;
  color: var(--gold-light); margin-top: 10px; letter-spacing: .01em;
}
.hero-who-for {
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,0.78); margin-top: 6px; letter-spacing: .02em;
}

/* ── PROCESS STRIP ── */
.process-strip {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 36px 0 44px;
}
.process-strip-inner {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.ps-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 0 24px; text-align: center; max-width: 180px;
  transition: transform .2s;
}
.ps-step:hover { transform: translateY(-2px); }

/* Staggered fade-in */
.ps-step-1 { transition-delay: 0s; }
.ps-step-2 { transition-delay: .15s; }
.ps-step-3 { transition-delay: .3s; }
.ps-step-4 { transition-delay: .45s; }

.ps-icon {
  position: relative;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,147,58,.12); border: 1px solid rgba(201,147,58,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); margin-bottom: 10px;
  transition: background .2s, border-color .2s;
}
.ps-step:hover .ps-icon { background: rgba(201,147,58,.22); border-color: var(--gold-light); }

/* Final step — glow */
.ps-step-cta .ps-icon {
  background: var(--gold); border-color: var(--gold); color: var(--dark);
}
.ps-step-cta .ps-icon::before {
  content: ''; position: absolute;
  inset: -8px; border-radius: 50%;
  background: rgba(201,147,58,.3);
  filter: blur(10px);
  animation: psGlowPulse 2.6s ease-in-out infinite;
}
@keyframes psGlowPulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50%       { opacity: .85; transform: scale(1.2); }
}

.ps-label {
  font-size: 13px; font-weight: 800; color: var(--white);
  font-family: 'Space Grotesk', sans-serif; letter-spacing: -.01em;
}
.ps-step-cta .ps-label { color: var(--gold-light); }
.ps-desc {
  font-size: 11px; color: rgba(255,255,255,0.78); font-weight: 500;
  line-height: 1.5; max-width: 140px;
}

/* Animated connector line */
.ps-line {
  flex-shrink: 0;
  width: 48px; height: 1px;
  background: rgba(201,147,58,.15);
  margin-top: 22px; position: relative; overflow: visible;
}
.ps-line::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(201,147,58,.7), rgba(240,179,107,.9));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s ease;
}
.ps-line::after {
  content: ''; position: absolute;
  right: -5px; top: -3.5px;
  border: 4px solid transparent;
  border-left: 6px solid rgba(201,147,58,.55);
}
.ps-step.visible + .ps-line::before          { transform: scaleX(1); transition-delay: .1s; }
.ps-step-2.visible + .ps-line::before        { transition-delay: .25s; }
.ps-step-3.visible + .ps-line::before        { transition-delay: .4s; }

/* ── CASE STUDY UPGRADES ── */
.cs-strip-header { text-align: center; margin-bottom: 32px; }
.cs-strip-headline { font-size: clamp(22px, 2.5vw, 32px); margin-top: 10px; }

.cs-context-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.cs-context-meta { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .04em; }

/* Testimonial */
.cs-testimonial {
  border-left: 3px solid var(--gold);
  padding: 10px 14px; margin: 18px 0 20px;
  background: rgba(201,147,58,.05); border-radius: 0 10px 10px 0;
}
.cs-testimonial p {
  font-size: 14.5px; font-weight: 700; color: var(--dark);
  line-height: 1.5; font-style: italic; margin-bottom: 5px;
}
.cs-testimonial cite { font-size: 11px; font-weight: 700; color: var(--muted); font-style: normal; letter-spacing: .03em; }

.cs-outcome-row { display: flex; flex-direction: column; gap: 5px; margin-bottom: 22px; }
.cs-outcome-chip { font-size: 13px; font-weight: 600; color: #065f46; }

/* Before / After comparison */
.cs-before-after {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 16px;
}
.cs-ba-col { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.cs-ba-label {
  font-size: 9.5px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-bottom: 4px;
}
.cs-ba-after .cs-ba-label { color: var(--gold); }
.cs-ba-stat { font-size: 12px; font-weight: 600; color: var(--muted); line-height: 1.5; }
.cs-ba-after .cs-ba-stat { color: var(--dark); font-weight: 700; }
.cs-ba-summary { font-size: 10.5px; font-weight: 800; color: var(--muted); letter-spacing: .03em; margin-top: 4px; font-style: italic; }
.cs-ba-after .cs-ba-summary { color: #065f46; }
.cs-ba-arrow {
  font-size: 18px; color: var(--gold); flex-shrink: 0; font-weight: 900;
}

/* Apply CTA below card */
.cs-apply-cta-wrap { text-align: center; margin-top: 24px; }
.cs-apply-cta {
  font-size: 14px; font-weight: 800; color: var(--gold);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 1px; letter-spacing: .01em;
  transition: color .18s, text-decoration-color .18s;
}
.cs-apply-cta:hover { color: var(--dark); }

/* ── OBJECTION HANDLING ── */
.objection-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.objection-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.objection-block {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 8px 40px;
}
.objection-block:not(:last-child) { border-right: 1px solid var(--border); }
.obj-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(201,147,58,.1); border: 1px solid rgba(201,147,58,.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 16px;
}
.obj-heading {
  font-size: 14px; font-weight: 800; color: var(--dark);
  margin-bottom: 8px; letter-spacing: -.01em;
}
.obj-text {
  font-size: 13.5px; color: var(--muted); line-height: 1.6; max-width: 220px;
}
@media (max-width: 640px) {
  .objection-grid { grid-template-columns: 1fr; }
  .objection-block { padding: 20px 24px; }
  .objection-block:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── MINI BAR GRAPH ── */
.cs-mini-graph {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 18px; margin-top: 14px;
}
.csmg-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.csmg-title { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.csmg-trend { font-size: 12px; font-weight: 800; color: #065f46; }

/* Graph body: y-label + bars side by side */
.csmg-graph-body { display: flex; align-items: flex-end; gap: 6px; }
.csmg-y-label {
  font-size: 8px; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
  writing-mode: vertical-rl; transform: rotate(180deg);
  height: 52px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.csmg-bars-wrap { flex: 1; }
.csmg-bars { display: flex; align-items: flex-end; gap: 6px; height: 52px; }
.csmg-col { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; height: 100%; justify-content: flex-end; position: relative; }
.csmg-col > span:not(.csmg-val-label) { font-size: 9px; color: var(--muted); font-weight: 700; }

/* X-axis label */
.csmg-x-label {
  display: block; text-align: center; font-size: 8px; font-weight: 800;
  color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 3px;
}

/* Start / end value markers */
.csmg-val-label {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 900; white-space: nowrap;
}
.csmg-col-start .csmg-val-label { bottom: calc(20% + 5px); color: var(--muted); }
.csmg-col-end   .csmg-val-label { bottom: calc(100% + 5px); color: var(--gold); }
.csmg-bar {
  width: 100%; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--gold) 0%, #b8832e 100%);
  animation: barGrow .8s ease-out forwards;
  transform-origin: bottom; transform: scaleY(0);
}
.csmg-b1 { animation-delay: .1s; height: 20%; }
.csmg-b2 { animation-delay: .2s; height: 32%; }
.csmg-b3 { animation-delay: .3s; height: 48%; }
.csmg-b4 { animation-delay: .4s; height: 65%; }
.csmg-b5 { animation-delay: .5s; height: 82%; }
.csmg-b6 { animation-delay: .6s; height: 100%; }
@keyframes barGrow { to { transform: scaleY(1); } }

/* ── STICKY MOBILE CTA ── */
.sticky-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(28, 25, 23, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 16px;
  gap: 10px;
}
.sticky-cta-primary { flex: 1; justify-content: center; }
.sticky-urgency { font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.78); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
@media (max-width: 640px) {
  .sticky-cta-bar { display: flex; }
  /* Add padding to footer so sticky bar doesn't overlap it */
  .footer-bottom { padding-bottom: 76px; }
  .process-strip-inner { gap: 0; flex-wrap: wrap; justify-content: center; }
  .ps-step { padding: 10px 16px; max-width: 120px; }
  .ps-line { display: none; }
  .ps-desc { display: none; }
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* ── HERO PRIMARY CTA ── */
.hero-primary-cta {
  background: linear-gradient(135deg, #e8b55a 0%, var(--gold) 55%, #a8721f 100%) !important;
  color: var(--dark) !important;
  padding: 16px 32px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  box-shadow: 0 4px 24px rgba(201,147,58,.45) !important;
  animation: ctaPulse 4s ease-in-out infinite;
}
.hero-primary-cta:hover {
  background: linear-gradient(135deg, #f0c570 0%, #d9a548 55%, #b8832e 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(201,147,58,.6) !important;
}

@keyframes ctaPulse {
  0%, 60%, 100% { transform: scale(1); }
  80% { transform: scale(1.03); }
}

/* ── HERO DIRECTIONAL CUE ── */
.hero-cta-cue {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; opacity: 0.65;
}
.cta-cue-line {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,147,58,.6));
}
.cta-cue-arrow { flex-shrink: 0; }

/* ── MOBILE: reduce floating badges to 3 ── */
@media (max-width: 1020px) {
  .fl-2, .fl-3, .fl-6 { display: none; }
}

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0.01;
  transform: translateY(30px);
  transition: opacity 0.54s ease, transform 0.54s ease;
}
.sr.sr-left  { transform: translateX(-32px); }
.sr.sr-right { transform: translateX(32px); }

/* Card reveal — scale pop in addition to slide */
.sr.sr-card {
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr.sr-visible,
.sr.is-visible {
  opacity: 1;
  transform: none;
}

/* ── PANEL THEMING: DARK VARIANT ── */
.svc-panels { overflow: hidden; }
.svc-panel { position: relative; overflow: hidden; }

.svc-panel[data-theme="dark"] { background: var(--dark); }
.svc-panel[data-theme="dark"] .svc-panel-header { flex-direction: row-reverse; }
.svc-panel[data-theme="dark"] .card-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.svc-panel[data-theme="dark"] h3 { color: var(--white); }
.svc-panel[data-theme="dark"] .svc-panel-row { border-top-color: rgba(255,255,255,.1); }
.svc-panel[data-theme="dark"] .svc-row-label { color: rgba(255,255,255,0.65); }
.svc-panel[data-theme="dark"] .svc-outcome-row .svc-row-label { color: var(--gold-light); }
.svc-panel[data-theme="dark"] p { color: rgba(255,255,255,0.78); }
.svc-panel[data-theme="dark"] .svc-panel-cta { border-top-color: rgba(255,255,255,.1); }
.svc-panel[data-theme="dark"] .svc-cta-micro { color: rgba(255,255,255,0.65); }
.svc-panel[data-theme="dark"] .btn-dark { background: var(--gold); color: var(--dark); }
.svc-panel[data-theme="dark"] .btn-dark:hover { background: var(--gold-light); }
.svc-panel[data-theme="dark"] .svc-panel-icon { background: rgba(201,147,58,.18); color: var(--gold-light); }

/* ── DECORATIVE BG CIRCLES ── */
.svc-panel-deco {
  position: absolute; border-radius: 50%;
  pointer-events: none; will-change: transform;
}
/* old deco rule removed — panel-local-seo now uses split layout */

/* ── LOCAL SEO PANEL: SPLIT LAYOUT ── */
#panel-local-seo { padding: 0; }

.ls-split {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 460px;
}

/* Left visual */
.ls-visual {
  background: linear-gradient(160deg, #1c1917 0%, #251a0e 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.ls-ring {
  position: absolute;
  border: 1px solid rgba(201,147,58,.25);
  border-radius: 50%;
  will-change: transform;
  animation: lsPulse 3s ease-in-out infinite;
}
.ls-ring-1 { width: 72px;  height: 72px;  animation-delay: 0s;    opacity: .5; }
.ls-ring-2 { width: 130px; height: 130px; animation-delay: 0.55s; opacity: .35; }
.ls-ring-3 { width: 190px; height: 190px; animation-delay: 1.1s;  opacity: .2; }
@keyframes lsPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.07); }
}

.ls-pin {
  position: relative; z-index: 2;
  width: 52px; height: 52px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  box-shadow: 0 0 0 10px rgba(201,147,58,.15);
  will-change: transform;
  animation: lsBounce 2.4s ease-in-out infinite;
}
.ls-pin svg { width: 24px; height: 24px; }
@keyframes lsBounce {
  0%,100% { transform: translateY(0); }
  45%     { transform: translateY(-7px); }
  65%     { transform: translateY(-2px); }
}

.ls-stat {
  position: absolute; bottom: 20px; right: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,147,58,.3);
  border-radius: 10px; padding: 8px 12px;
  text-align: center;
}
.ls-stat-num {
  display: block;
  font-size: 18px; font-weight: 800; color: var(--gold);
  font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; line-height: 1;
}
.ls-stat-lbl {
  display: block; font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: .07em; margin-top: 3px;
}

/* Right content */
.ls-content { padding: 36px 36px 32px; display: flex; flex-direction: column; }
.ls-content h3 { font-size: clamp(16px, 2vw, 21px); margin: 8px 0 20px; line-height: 1.28; }

.ls-rows { flex: 1; display: flex; flex-direction: column; }
.ls-row {
  padding: 13px 10px 13px 8px;
  border-top: 1px solid var(--border);
  border-radius: 6px;
  transition: background 0.18s ease, padding-left 0.18s ease;
}
.ls-row:hover { background: rgba(201,147,58,.05); padding-left: 14px; }
.ls-row-outcome { background: rgba(201,147,58,.04); }
.ls-row-outcome:hover { background: rgba(201,147,58,.09); }

.ls-label {
  display: inline-block; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .09em;
  padding: 2px 8px; border-radius: 999px; margin-bottom: 5px;
}
.ls-label-problem { background: rgba(239,68,68,.1);  color: #dc2626; }
.ls-label-fix     { background: rgba(59,130,246,.1); color: #2563eb; }
.ls-label-outcome { background: rgba(201,147,58,.15); color: var(--gold); }
.ls-row p { font-size: 14.5px; line-height: 1.65; color: var(--text); margin: 0; }

/* Mobile */
@media (max-width: 768px) {
  .ls-split { grid-template-columns: 1fr; }
  .ls-visual { min-height: 140px; }
  .ls-ring-3 { display: none; }
  .ls-stat { bottom: 12px; right: 12px; }
  .ls-content { padding: 24px 20px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .ls-ring, .ls-pin { animation: none; }
}

/* ── GEO PANEL: CONTENT LEFT / VISUAL RIGHT ── */
#panel-geo { padding: 0; }

.geo-split {
  display: grid;
  grid-template-columns: 1fr 200px;
  min-height: 460px;
}

.geo-content { padding: 36px 32px 32px; display: flex; flex-direction: column; }
.geo-content h3 { font-size: clamp(16px, 2vw, 21px); margin: 8px 0 20px; line-height: 1.28; }

.geo-rows { flex: 1; display: flex; flex-direction: column; }
.geo-row {
  padding: 13px 10px 13px 8px;
  border-top: 1px solid var(--border);
  border-radius: 6px;
  transition: background 0.18s ease, padding-left 0.18s ease;
}
.geo-row:hover { background: rgba(99,102,241,.06); padding-left: 14px; }
.geo-row-outcome { background: rgba(201,147,58,.04); }
.geo-row-outcome:hover { background: rgba(201,147,58,.09); }

.geo-row-lbl {
  display: inline-block; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .09em;
  padding: 2px 8px; border-radius: 999px; margin-bottom: 5px;
}
.geo-lbl-problem { background: rgba(239,68,68,.1);   color: #dc2626; }
.geo-lbl-fix     { background: rgba(99,102,241,.12); color: #4f46e5; }
.geo-lbl-outcome { background: rgba(201,147,58,.15); color: var(--gold); }
.geo-row p { font-size: 14.5px; line-height: 1.65; color: var(--text); margin: 0; }

/* Right visual column */
.geo-visual {
  background: linear-gradient(180deg, #f5f0e8 0%, #ede5d4 100%);
  border-left: 1px solid var(--border);
  position: relative; overflow: hidden;
}

/* Decorative nodes */
.geo-node {
  position: absolute; border-radius: 50%;
  background: var(--gold); will-change: transform;
}
.geo-n1 { width:10px; height:10px; top:22%; left:35%; opacity:.7; animation: geoRise 4s ease-in-out infinite; }
.geo-n2 { width:6px;  height:6px;  top:55%; left:60%; opacity:.45; animation: geoRise 5s ease-in-out infinite 1s; }
.geo-n3 { width:14px; height:14px; top:70%; left:25%; opacity:.3; animation: geoRise 3.8s ease-in-out infinite 0.5s; }
.geo-n4 { width:7px;  height:7px;  top:38%; left:75%; opacity:.55; animation: geoRise 4.6s ease-in-out infinite 1.5s; }

@keyframes geoRise {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Floating AI platform chips */
.geo-chip {
  position: absolute;
  font-size: 10px; font-weight: 700; color: var(--dark);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; padding: 5px 11px;
  white-space: nowrap; will-change: transform;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  animation: geoRise 5s ease-in-out infinite;
}
.geo-chip-1 { top:14%; left:12%;  animation-delay: 0s; }
.geo-chip-2 { top:38%; right:10%; animation-delay: 1.2s; }
.geo-chip-3 { top:60%; left:8%;   animation-delay: 2.4s; }
.geo-chip-4 { bottom:16%; right:8%; animation-delay: 3.6s; }

@media (max-width: 768px) {
  .geo-split { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .geo-visual { min-height: 110px; border-left: none; border-top: 1px solid var(--border); }
  .geo-content { padding: 24px 20px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .geo-node, .geo-chip { animation: none; }
}
#panel-gbp-seo .svc-panel-deco     { width:260px;height:260px;background:rgba(255,255,255,.04);opacity:1;bottom:-80px;left:-60px; }
#panel-geo .svc-panel-deco         { width:180px;height:180px;background:var(--gold);opacity:.06;bottom:-40px;right:-40px; }
#panel-aeo .svc-panel-deco         { width:220px;height:220px;background:rgba(201,147,58,.1);opacity:1;top:-60px;right:-40px; }
#panel-technical-seo .svc-panel-deco { width:180px;height:180px;background:var(--gold);opacity:.04;top:-50px;left:-50px; }
#panel-content-strategy .svc-panel-deco { width:200px;height:200px;background:rgba(201,147,58,.08);opacity:1;bottom:-50px;right:-30px; }
#panel-service-page-seo .svc-panel-deco { width:160px;height:160px;background:var(--gold);opacity:.05;bottom:-30px;left:-30px; }
#panel-local-landing-pages .svc-panel-deco { width:240px;height:240px;background:rgba(255,255,255,.03);opacity:1;top:-70px;left:-60px; }

/* ── ICON ANIMATIONS ── */
.svc-panel-icon[data-anim="bounce"] { animation: iconPop .38s ease both, piaBounce 2.4s .45s ease-in-out infinite; }
.svc-panel-icon[data-anim="pulse"]  { animation: iconPop .38s ease both, piaPulse  2s   .45s ease-in-out infinite; }
.svc-panel-icon[data-anim="spin"]   { animation: iconPop .38s ease both, piaSpin   12s  .45s linear infinite; }
.svc-panel-icon[data-anim="blink"]  { animation: iconPop .38s ease both, piaBlink  3s   .45s ease-in-out infinite; }
.svc-panel-icon[data-anim="rotate"] { animation: iconPop .38s ease both, piaRotate 4s   .45s ease-in-out infinite; }
.svc-panel-icon[data-anim="bob"]    { animation: iconPop .38s ease both, piaBob    2.6s .45s ease-in-out infinite; }
.svc-panel-icon[data-anim="pop"]    { animation: iconPop .38s ease both, piaPop    3s   .45s ease-in-out infinite; }
.svc-panel-icon[data-anim="float"]  { animation: iconPop .38s ease both, piaFloat  3.5s .45s ease-in-out infinite; }

@keyframes piaBounce { 0%,100%{transform:translateY(0)} 45%{transform:translateY(-6px)} 65%{transform:translateY(-2px)} }
@keyframes piaPulse  { 0%,100%{transform:scale(1)}     50%{transform:scale(1.1)} }
@keyframes piaSpin   { to{transform:rotate(360deg)} }
@keyframes piaBlink  { 0%,100%{opacity:1;transform:scale(1)} 45%{opacity:.65;transform:scale(.92)} 70%{transform:scale(1.06)} }
@keyframes piaRotate { 0%{transform:rotate(-10deg)} 50%{transform:rotate(10deg)} 100%{transform:rotate(-10deg)} }
@keyframes piaBob    { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-5px) rotate(4deg)} }
@keyframes piaPop    { 0%,100%{transform:scale(1)} 20%{transform:scale(1.08)} 50%{transform:scale(.96)} 75%{transform:scale(1.04)} }
@keyframes piaFloat  { 0%,100%{transform:translateY(0)} 35%{transform:translateY(-5px)} 70%{transform:translateY(2px)} }

.svc-panel:not(.active) .svc-panel-icon { animation: none !important; }
@media (prefers-reduced-motion: reduce) { .svc-panel-icon { animation: none !important; } }

/* ── MICRO INTERACTIONS ── */

/* Cursor glow */
#cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,147,58,.1) 0%, transparent 65%);
  pointer-events: none; will-change: transform;
  opacity: 0; transition: opacity 0.4s ease, width 0.3s ease, height 0.3s ease;
}
#cursor-glow.active { opacity: 1; }
#cursor-glow.glow-btn {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,147,58,.18) 0%, transparent 55%);
}

/* Button: smooth scale + active press */
.btn { transition: background .2s, color .2s, border-color .2s, transform .16s ease, box-shadow .2s; }
.btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn:active { transform: scale(0.97) !important; box-shadow: none !important; }

/* Hover lift on cards that lacked it */
.svc-deliverable-card { transition: transform .22s ease, box-shadow .22s ease; }
.svc-deliverable-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }

.svc-why-card { transition: transform .22s ease, box-shadow .22s ease; }
.svc-why-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }

.svc-faq-item { transition: transform .2s ease, border-color .2s; }
.svc-faq-item:hover { transform: translateX(4px); }

/* Ensure tilt-enabled cards have smooth baseline transition */
.card, .proof-card, .portfolio-card, .blog-card { transition: transform .25s ease, box-shadow .25s ease; }

@media (prefers-reduced-motion: reduce) {
  .btn:hover, .btn:active { transform: none !important; }
  .svc-deliverable-card:hover, .svc-why-card:hover, .svc-faq-item:hover { transform: none; }
  #cursor-glow { display: none; }
}

/* ── RESULTS SNAPSHOT SECTION ── */
.results-snapshot-section { background: var(--cream); }

.results-snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

/* Chart panel */
.rs-chart-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 20px;
}

.rs-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.rs-chart-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.rs-chart-badge {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}

.rs-line-chart {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.rs-chart-label {
  font-size: 9px;
  fill: var(--muted);
  font-family: inherit;
}

.rs-area {
  fill: rgba(201,147,58,.08);
}

.rs-line {
  stroke: var(--gold);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rs-chart-caption {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

/* Progress bars panel */
.rs-bars-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.rs-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.rs-bar-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.rs-bar-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}

.rs-bar-track {
  height: 8px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.rs-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 8px;
  will-change: width;
}

@media (max-width: 768px) {
  .results-snapshot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── SERVICES RESULTS SECTION (dark variant) ── */
.svc-results-section { background: var(--dark); padding: 80px 0; }
.svc-results-section .section-header .label { color: var(--gold); }
.svc-results-section .section-header h2 { color: var(--white); }
.svc-results-section .section-header .section-sub { color: rgba(255,255,255,0.78); }

.svc-results-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.svc-results-counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.svc-results-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.svc-results-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dark overrides for chart + bars inside the dark section */
.svc-results-section .rs-chart-wrap {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}
.svc-results-section .rs-chart-title { color: rgba(255,255,255,.9); }
.svc-results-section .rs-chart-caption { color: rgba(255,255,255,0.72); }
.svc-results-section .rs-chart-label { fill: rgba(255,255,255,0.65); }
.svc-results-section .rs-area { fill: rgba(201,147,58,.15); }
.svc-results-section .rs-bar-label { color: rgba(255,255,255,.82); }
.svc-results-section .rs-bar-track { background: rgba(255,255,255,.12); }

@media (max-width: 640px) {
  .svc-results-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════
   MOBILE OPTIMIZATIONS
   All rules below target ≤640px unless noted
════════════════════════════════════════ */

/* ── Hamburger button ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  z-index: 1002;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}
/* X state */
.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; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero dark header — white hamburger lines */
.hero .nav-toggle span,
.svc-hero .nav-toggle span { background: var(--white); }

/* ── Mobile nav drawer ── */
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none !important; }

  .main-nav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 80px 32px 48px;
    z-index: 1001;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
  }
  .main-nav.nav-open { transform: translateX(0); }

  .main-nav a {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a.active { color: var(--gold); }

  /* Keep header above the drawer */
  .site-header { z-index: 1003; position: relative; }
}

/* ── Touch targets: min 44×44px ── */
.btn { min-height: 44px; }
.btn-sm { min-height: 40px; }
.svc-tab { min-height: 44px; }
.svc-faq-q { min-height: 44px; }

/* ── Hero: mobile stacking ── */
@media (max-width: 640px) {
  .hero { padding: 48px 0 40px; }
  .hero-proof-hook,
  .hero-emotional-hook,
  .hero-diff-line,
  .hero-proof-line { display: none; }
  .hero-sub { font-size: 16px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-micro-friction { text-align: center; }
  .hero-profile-img { width: 180px; height: 180px; }
  .mini-dashboard { display: none; }

  /* hero stat trust badges */
  .hero-proof-stats { flex-direction: column; gap: 6px; }
}

/* ── Services page: interactive tabs ── */
@media (max-width: 900px) {
  /* Scrollable tab strip instead of wrapping pills */
  .svc-tab-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    position: sticky;
    top: 68px;
    z-index: 80;
    padding: 10px 4px;
    gap: 6px;
    border-radius: 16px;
    background: rgba(247,244,239,0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  }
  .svc-tab-list::-webkit-scrollbar { display: none; }
  .svc-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .svc-panels { border-radius: 20px; }
  .svc-panel { padding: 28px 20px; }
}

@media (max-width: 640px) {
  .svc-panel-header { flex-direction: column !important; gap: 12px; align-items: flex-start; }
  .svc-panel-cta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .svc-panel-cta .btn { width: 100%; justify-content: center; }
  .svc-start-inner { flex-direction: column; gap: 20px; }
  .svc-start-inner .btn { width: 100%; justify-content: center; }
  /* FAQ CTAs */
  .svc-faq-cta { flex-direction: column; }
  .svc-faq-cta .btn { width: 100%; justify-content: center; }
}

/* ── Hero dashboard strip: 2-col on very small screens ── */
@media (max-width: 480px) {
  .hd-metrics { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-dash-card { padding: 16px; }
  .hd-num { font-size: 22px; }
}

/* ── Results snapshot: single column earlier ── */
@media (max-width: 640px) {
  .results-snapshot-grid { grid-template-columns: 1fr; gap: 20px; }
  .rs-chart-wrap { padding: 20px 16px 16px; }
  .rs-bars-wrap { gap: 20px; }
  .svc-results-strip { padding: 24px 0; margin: 32px 0; }
}

/* ── Disable heavy CSS animations on mobile/touch ── */
@media (max-width: 768px) {
  .svc-hero-bg { animation: none; will-change: auto; }
  .svc-bubble-wrap { display: none; }
  /* Reduce scroll-reveal translate distance */
  .sr { transform: translateY(16px); }
  .sr.sr-left, .sr.sr-right { transform: translateY(16px); }
}

/* ── Process strip: wrap on small screens ── */
@media (max-width: 640px) {
  .process-strip-inner { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .ps-line { display: none; }
}

/* ── Sticky CTA: only show on mobile ── */
.sticky-cta-bar { display: none; }
@media (max-width: 640px) {
  .sticky-cta-bar { display: flex; align-items: center; gap: 10px; }
}

/* ── Fast loading: font-display already swap via Google URL ── */
/* Ensure images don't block layout */
img { height: auto; max-width: 100%; }

/* ── Reduced motion: disable all transforms globally ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .sr { opacity: 1 !important; transform: none !important; }
  .svc-hero-bg { animation: none; }
}

/* ═══════════════════════════════════════════
   AEO PANEL
═══════════════════════════════════════════ */
#panel-aeo { padding: 0; }

.aeo-split {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 460px;
}

/* ── Visual: stacked answer cards ── */
.aeo-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 32px 20px 32px 32px;
  background: linear-gradient(160deg, #0f172a 0%, #0c1e35 100%);
  position: relative;
  overflow: hidden;
}

.aeo-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(56,189,248,0.18);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  will-change: transform;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.aeo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(56,189,248,0.18);
}

.aeo-card-1 { animation: aeoFloat 6s ease-in-out infinite; }
.aeo-card-2 { animation: aeoFloat 6s ease-in-out infinite 1.5s; }
.aeo-card-3 { animation: aeoFloat 6s ease-in-out infinite 3s; }

@keyframes aeoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.aeo-q {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(56,189,248,0.9);
  letter-spacing: 0.01em;
}

.aeo-a {
  font-size: 0.67rem;
  color: rgba(226,232,240,0.75);
  line-height: 1.45;
}

.aeo-highlight {
  position: relative;
  color: rgba(226,232,240,0.95);
  background: rgba(56,189,248,0.12);
  border-radius: 4px;
  padding: 2px 5px;
  animation: aeoPulse 3s ease-in-out infinite;
  will-change: opacity;
}

@keyframes aeoPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

/* ── Content: right side ── */
.aeo-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.aeo-content h3 {
  font-size: 1.35rem;
  color: var(--dark);
  line-height: 1.3;
  margin: 4px 0 0;
}

.aeo-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aeo-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 10px 10px 0;
  border-radius: 8px;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.aeo-row:hover {
  background: rgba(56,189,248,0.06);
  padding-left: 14px;
}

.aeo-row p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.aeo-row-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.aeo-lbl-problem { background: rgba(239,68,68,.1);    color: #dc2626; }
.aeo-lbl-fix     { background: rgba(56,189,248,.12);  color: #0284c7; }
.aeo-lbl-outcome { background: rgba(20,184,166,.12);  color: #0d9488; }

/* ── Mobile ── */
@media (max-width: 680px) {
  .aeo-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .aeo-visual {
    padding: 24px 20px;
    order: 2;
  }
  .aeo-content {
    padding: 28px 20px 20px;
    order: 1;
  }
  .aeo-row {
    grid-template-columns: 72px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aeo-card,
  .aeo-card-1,
  .aeo-card-2,
  .aeo-card-3 { animation: none; }
  .aeo-highlight { animation: none; }
}

/* ═══════════════════════════════════════════
   GBP PANEL
═══════════════════════════════════════════ */
#panel-gbp-seo { padding: 0; }

.gbp-split {
  display: grid;
  grid-template-columns: 1fr 220px;
  min-height: 460px;
}

/* ── Content left ── */
.gbp-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.gbp-content h3 {
  font-size: 1.35rem;
  color: var(--dark);
  line-height: 1.3;
  margin: 4px 0 0;
}

.gbp-rows { display: flex; flex-direction: column; gap: 4px; }

.gbp-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 10px 10px 0;
  border-radius: 8px;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.gbp-row:hover {
  background: rgba(201,147,58,.07);
  padding-left: 14px;
}

.gbp-row p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.gbp-row-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.gbp-lbl-problem { background: rgba(239,68,68,.1);    color: #dc2626; }
.gbp-lbl-fix     { background: rgba(201,147,58,.15);  color: var(--gold); }
.gbp-lbl-outcome { background: rgba(20,184,166,.12);  color: #0d9488; }

/* ── Visual right: stacked review cards + pin ── */
.gbp-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 16px 32px 8px;
  background: linear-gradient(160deg, #fffbf0 0%, #fef3c7 100%);
  overflow: hidden;
}

/* Floating map pin */
.gbp-pin {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 32px;
  height: 32px;
  color: var(--gold);
  will-change: transform;
  animation: gbpPinBounce 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(201,147,58,0.35));
}

.gbp-pin svg { width: 100%; height: 100%; }

@keyframes gbpPinBounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-7px); }
  60%       { transform: translateY(-4px); }
}

/* Stacked cards with overlap */
.gbp-card {
  width: 180px;
  padding: 12px 14px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 6px 20px rgba(201,147,58,0.12);
  will-change: transform;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gbp-card + .gbp-card { margin-top: -12px; }

.gbp-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 28px rgba(201,147,58,0.25);
  z-index: 2;
  position: relative;
}

.gbp-card-1 { animation: gbpFloat 7s ease-in-out infinite; }
.gbp-card-2 { animation: gbpFloat 7s ease-in-out infinite 2s; }
.gbp-card-3 { animation: gbpFloat 7s ease-in-out infinite 4s; }

@keyframes gbpFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.gbp-stars {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.gbp-review-text {
  margin: 0 0 5px;
  font-size: 0.68rem;
  color: var(--dark);
  line-height: 1.45;
  font-style: italic;
}

.gbp-reviewer {
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── Mobile ── */
@media (max-width: 680px) {
  .gbp-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .gbp-content { padding: 28px 20px 20px; order: 1; }
  .gbp-visual  { padding: 24px 20px; order: 2; }
  .gbp-card    { width: 100%; max-width: 260px; }
  .gbp-card + .gbp-card { margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .gbp-pin,
  .gbp-card-1,
  .gbp-card-2,
  .gbp-card-3 { animation: none; }
}

/* ═══════════════════════════════════════════
   TECHNICAL SEO PANEL
═══════════════════════════════════════════ */
#panel-technical-seo { padding: 0; }

.tech-split {
  display: grid;
  grid-template-columns: 1fr 220px;
  min-height: 460px;
}

/* ── Content left ── */
.tech-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.tech-content h3 {
  font-size: 1.35rem;
  color: var(--dark);
  line-height: 1.3;
  margin: 4px 0 0;
}

.tech-rows { display: flex; flex-direction: column; gap: 4px; }

.tech-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 10px 10px 0;
  border-radius: 8px;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.tech-row:hover {
  background: rgba(74,222,128,.06);
  padding-left: 14px;
}

.tech-row p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.tech-row-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.tech-lbl-problem { background: rgba(239,68,68,.1);   color: #dc2626; }
.tech-lbl-fix     { background: rgba(74,222,128,.12); color: #16a34a; }
.tech-lbl-outcome { background: rgba(99,102,241,.1);  color: #4f46e5; }

/* ── Visual right: crawl map ── */
.tech-visual {
  position: relative;
  background: linear-gradient(160deg, #0f172a 0%, #0d1f2d 100%);
  overflow: hidden;
  padding: 20px 12px;
}

/* Scanning line */
.tech-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74,222,128,0.35), transparent);
  will-change: transform;
  animation: techScan 5s ease-in-out infinite;
}

@keyframes techScan {
  0%   { transform: translateY(0); }
  100% { transform: translateY(260px); }
}

/* SVG connector overlay */
.tech-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Nodes */
.tech-node {
  position: absolute;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(74,222,128,0.9);
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.28);
  border-radius: 6px;
  padding: 4px 7px;
  white-space: nowrap;
  will-change: transform;
}

/* Node positions */
.tn-home     { top: 18px;  left: 50%; transform: translateX(-50%); background: rgba(74,222,128,0.15); border-color: rgba(74,222,128,0.5); }
.tn-services { top: 80px;  left: 12px; }
.tn-blog     { top: 80px;  left: 50%; transform: translateX(-50%); }
.tn-contact  { top: 80px;  right: 12px; }
.tn-p1       { top: 156px; left: 12px; animation: techBlink 8s ease-in-out infinite; }
.tn-p2       { top: 156px; right: 12px; border-color: rgba(239,68,68,0.5); color: rgba(239,68,68,0.9); background: rgba(239,68,68,0.08); animation: techBlink 8s ease-in-out infinite 4s; }

@keyframes techBlink {
  0%, 70%, 100% { opacity: 1; }
  80%            { opacity: 0.35; }
  90%            { opacity: 0.9; }
}

/* Diagnostic labels */
.tech-label {
  position: absolute;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.tl-broken { bottom: 72px; right: 10px; background: rgba(239,68,68,.18); color: #f87171; }
.tl-schema { bottom: 50px; left: 10px;  background: rgba(74,222,128,.15); color: #4ade80; }
.tl-speed  { bottom: 28px; right: 10px; background: rgba(251,191,36,.15); color: #fbbf24; }
.tl-index  { bottom: 28px; left: 10px;  background: rgba(99,102,241,.15); color: #818cf8; }

/* ── Mobile ── */
@media (max-width: 680px) {
  .tech-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .tech-content { padding: 28px 20px 20px; order: 1; }
  .tech-visual  { min-height: 220px; order: 2; }
  .tech-row { grid-template-columns: 72px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .tech-scan,
  .tn-p1,
  .tn-p2 { animation: none; }
}

/* ═══════════════════════════════════════════
   CONTENT STRATEGY PANEL
═══════════════════════════════════════════ */
#panel-content-strategy { padding: 0; }

.cs-split {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 460px;
}

/* ── Visual left: topic map ── */
.cs-visual {
  position: relative;
  background: linear-gradient(160deg, #f8fafc 0%, #eff6ff 100%);
  overflow: hidden;
}

.cs-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* All nodes */
.cs-node {
  position: absolute;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
  will-change: transform;
}

/* Center pillar node */
.cs-center {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 14px;
  background: #1e40af;
  color: #fff;
  font-size: 0.66rem;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(30,64,175,0.28);
  animation: csPulse 4s ease-in-out infinite;
}

.cs-center span {
  display: block;
  font-size: 0.56rem;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes csPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(1.06); }
}

/* Primary nodes */
.cs-pri {
  padding: 6px 10px;
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid rgba(96,165,250,0.4);
  box-shadow: 0 2px 8px rgba(96,165,250,0.12);
  animation: csFloat 6s ease-in-out infinite;
}

.cs-pri-1 { top: 6%;  left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.cs-pri-2 { top: 38%; left: 4%;  animation-delay: 1.5s; }
.cs-pri-3 { top: 38%; right: 4%; animation-delay: 3s; }

@keyframes csFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

/* Secondary nodes */
.cs-sec {
  padding: 4px 8px;
  background: #fff;
  color: #64748b;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  font-weight: 600;
  animation: csFloat 7s ease-in-out infinite;
}

.cs-sec-1 { bottom: 28%; left: 6%;  animation-delay: 0.8s; }
.cs-sec-2 { bottom: 28%; right: 6%; animation-delay: 2.5s; }
.cs-sec-3 { bottom: 6%;  left: 50%; transform: translateX(-50%); animation-delay: 4s; }

/* ── Content right ── */
.cs-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.cs-content h3 {
  font-size: 1.35rem;
  color: var(--dark);
  line-height: 1.3;
  margin: 4px 0 0;
}

.cs-rows { display: flex; flex-direction: column; gap: 4px; }

.cs-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 10px 10px 0;
  border-radius: 8px;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.cs-row:hover {
  background: rgba(96,165,250,.07);
  padding-left: 14px;
}

.cs-row p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.cs-row-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.cs-lbl-problem { background: rgba(239,68,68,.1);   color: #dc2626; }
.cs-lbl-fix     { background: rgba(96,165,250,.14); color: #1d4ed8; }
.cs-lbl-outcome { background: rgba(20,184,166,.12); color: #0d9488; }

/* ── Mobile ── */
@media (max-width: 680px) {
  .cs-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .cs-visual  { min-height: 200px; order: 2; }
  .cs-content { padding: 28px 20px 20px; order: 1; }
  .cs-row     { grid-template-columns: 72px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .cs-center,
  .cs-pri,
  .cs-sec { animation: none; }
}

/* ═══════════════════════════════════════════
   SERVICES PAGE — FINAL CTA SECTION
═══════════════════════════════════════════ */
.svc-final-cta-section {
  background: var(--dark);
  padding: 80px 0;
}

.svc-final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.svc-final-cta-text .label {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.svc-final-cta-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin: 8px 0 24px;
}

.svc-final-cta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-final-cta-list li {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.svc-final-cta-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.svc-final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}

.svc-final-cta-actions .btn { width: 100%; text-align: center; }

@media (max-width: 700px) {
  .svc-final-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc-final-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .svc-final-cta-actions .btn { width: auto; }
}

/* ============================================================
   CASE STUDIES PAGE — new layout classes
   ============================================================ */

/* Metrics strip */
.cs-metrics-section { padding: 0 0 64px; }
.cs-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cs-metric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: box-shadow .2s, transform .2s;
}
.cs-metric-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.cs-metric-stat {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.cs-metric-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 8px;
  line-height: 1.3;
}
.cs-metric-context {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* Implementation list */
.cs-impl-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-impl-list li {
  font-size: 0.9rem;
  color: var(--dark);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}
.cs-impl-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.78rem;
  top: 1px;
}

/* Performance snapshot dashboard block */
.cs-perf-snapshot {
  margin: 20px 0;
  background: #f5f3ef;
  border-radius: 10px;
  padding: 16px 20px 14px;
  border-left: 3px solid var(--gold);
}
.cs-perf-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.cs-perf-metrics {
  display: flex;
  gap: 0;
}
.cs-perf-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 16px 0 0;
  border-right: 1px solid rgba(0,0,0,.08);
  margin-right: 16px;
}
.cs-perf-metric:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.cs-perf-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -.01em;
}
.cs-perf-arrow {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  margin: 3px 0 4px;
}
.cs-perf-up   { color: #16a34a; }
.cs-perf-down { color: #16a34a; }
.cs-perf-key {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}
.cs-perf-note {
  font-size: 0.68rem;
  color: rgba(0,0,0,.32);
  margin: 10px 0 0;
  font-style: italic;
}

/* Results grid */
.cs-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.cs-result-item {
  background: #f5f3ef;
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-result-item strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}
.cs-result-item span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
}

/* CTA row inside each case study card */
.cs-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.cs-cta-row .btn { flex-shrink: 0; }

/* Mobile */
@media (max-width: 700px) {
  .cs-metrics-grid { grid-template-columns: 1fr; gap: 16px; }
  .cs-results-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cs-cta-row { flex-direction: column; }
  .cs-cta-row .btn { width: 100%; text-align: center; }
  .cs-perf-metrics { flex-direction: column; gap: 10px; }
  .cs-perf-metric { border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); padding: 0 0 10px; margin: 0 0 0; flex-direction: row; align-items: center; gap: 8px; }
  .cs-perf-metric:last-child { border-bottom: none; padding-bottom: 0; }
  .cs-perf-val { font-size: 1rem; }
  .cs-perf-arrow { margin: 0; }
  .cs-perf-key { margin-left: auto; text-align: right; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: calc(100% - 48px);
  max-width: 720px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  padding: 24px 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
}

.cookie-consent-text {
  flex: 1;
  font-size: 13.5px;
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
  min-width: 200px;
}

.cookie-consent-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.cookie-consent-text a:hover {
  color: var(--dark);
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#cookie-accept { color: var(--dark); }

body.cookie-consent-open {
  padding-bottom: 110px;
}

@media (max-width: 600px) {
  .cookie-consent {
    bottom: 16px;
    padding: 18px 20px;
    gap: 14px;
    border-radius: 16px;
  }
  .cookie-consent-actions { width: 100%; }
  .cookie-consent-actions .btn { flex: 1; justify-content: center; }
}

/* ── BLOG POST ARTICLE ── */
.eyebrow { display: inline-block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 14px; }
.post-article { max-width: 820px; margin: 0 auto; padding-bottom: 56px; }
.tldr-heading { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin: 0 0 10px; }
.post-article .post-toc { position: static; margin: 0 0 40px; }
.post-article .post-toc h2 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 0 0 14px; }
.post-layout { display: grid; grid-template-columns: 1fr 260px; gap: 56px; align-items: start; }
.post-content { min-width: 0; }
.post-hero-image { width: 100%; height: auto; border-radius: 0; display: block; margin: 0 0 2.5rem; object-fit: cover; }
.post-hero-banner { width: 100%; line-height: 0; background: var(--dark); }
.post-inline-image { width: 100%; height: auto; border-radius: 12px; display: block; margin: 32px 0; }

.post-header { margin-bottom: 32px; }
.post-header h1 { font-size: clamp(26px, 4vw, 40px); line-height: 1.2; margin: 16px 0 20px; }

.post-byline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.post-byline-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--dark); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; flex-shrink: 0; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; display: block; }
.post-byline-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
.post-byline-text strong { color: var(--dark); font-weight: 700; }
.post-byline-text a { color: var(--dark); text-decoration: none; }
.post-byline-text a:hover { color: var(--gold); }
.post-byline-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--muted); margin-left: auto; }
.post-byline-meta span { display: flex; align-items: center; gap: 4px; }
/* Hero dark background overrides for byline readability */
.page-hero .post-byline-text { color: rgba(255,255,255,0.85); }
.page-hero .post-byline-text strong { color: var(--white); }
.page-hero .post-byline-text a { color: var(--white); }
.page-hero .post-byline-text a:hover { color: var(--gold-light); }
.page-hero .post-byline-meta { color: rgba(255,255,255,0.78); }

.tldr-box { background: #f3ede3; border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; padding: 24px 28px; margin: 32px 0; }
.tldr-box p:first-child { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin: 0 0 8px; }
.tldr-box p:last-child { font-size: 15px; color: var(--text); line-height: 1.7; margin: 0; }

.post-toc { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 24px; position: sticky; top: 88px; }
.post-toc-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin: 0 0 14px; }
.post-toc ol { margin: 0; padding: 0 0 0 16px; }
.post-toc li { margin-bottom: 10px; }
.post-toc a { font-size: 13px; font-weight: 600; color: var(--dark); text-decoration: none; line-height: 1.4; display: block; }
.post-toc a:hover { color: var(--gold); }

.post-toc-mobile { display: none; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
.post-toc-mobile summary { padding: 14px 18px; font-size: 14px; font-weight: 700; color: var(--dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; background: var(--cream); }
.post-toc-mobile summary::-webkit-details-marker { display: none; }
.post-toc-mobile summary::after { content: "+"; color: var(--gold); font-size: 18px; }
.post-toc-mobile[open] summary::after { transform: rotate(45deg); display: inline-block; }
.post-toc-mobile ol { margin: 0; padding: 14px 18px 14px 34px; background: var(--white); }
.post-toc-mobile li { margin-bottom: 10px; }
.post-toc-mobile a { font-size: 14px; font-weight: 600; color: var(--dark); text-decoration: none; }
.post-toc-mobile a:hover { color: var(--gold); }

.post-body h2 { font-size: clamp(20px, 3vw, 26px); margin: 48px 0 16px; color: var(--dark); line-height: 1.25; }
.post-body h3 { font-size: 17px; font-weight: 700; margin: 28px 0 10px; color: var(--dark); }
.post-body p { font-size: 16px; line-height: 1.75; color: var(--text); margin: 0 0 18px; }
.post-body ul, .post-body ol { margin: 0 0 20px 20px; }
.post-body li { font-size: 16px; line-height: 1.7; color: var(--text); margin-bottom: 8px; }
.post-body a { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--dark); }
.post-body strong { font-weight: 700; color: var(--dark); }

.post-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 14px; }
.post-table th { background: var(--dark); color: var(--white); padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.post-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; line-height: 1.6; }
.post-table tr:nth-child(even) td { background: var(--cream); }

.post-faq-section { margin-top: 48px; }
.post-faq-section h2 { font-size: clamp(20px, 3vw, 26px); margin-bottom: 24px; }

.post-author-box { background: var(--cream); border: 1px solid var(--border); border-radius: 20px; padding: 32px; margin-top: 48px; display: flex; gap: 24px; align-items: flex-start; }
.post-author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; display: block; }
.author-bio-social { display: flex; gap: 12px; margin-top: 12px; }
.author-bio-social a { color: var(--gold); display: flex; align-items: center; transition: color .2s; }
.author-bio-social a:hover { color: var(--dark); }
.author-bio-social svg { width: 20px; height: 20px; }
.post-author-info h3 { font-size: 16px; margin: 0 0 4px; }
.post-author-info .post-author-role { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; margin: 0 0 10px; }
.post-author-info p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0 0 12px; }
.post-author-info a { font-size: 13px; font-weight: 700; color: var(--gold); text-decoration: none; }
.post-author-info a:hover { color: var(--dark); }

.post-cta-box { background: var(--dark); border-radius: 28px; padding: 48px; margin: 48px 0; text-align: center; }
.post-cta-box .label { color: var(--gold-light); }
.post-cta-box h2::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 16px;
}
.post-cta-box h2 { color: #fdfaf5; margin: 0 0 16px; font-size: clamp(22px, 3.5vw, 34px); font-weight: 700; }
.post-cta-box p { color: var(--text-on-dark); font-size: 16px; line-height: 1.6; margin: 0 auto 28px; max-width: 60ch; }
.post-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Pillar post: CTA is inside .post-article so the typography overhaul rules
   (.post-article h2 color:var(--dark), .post-article p color:var(--text))
   win at equal specificity. These (0,2,1) selectors beat (0,1,1). */
.post-article .post-cta-box h2 { color: #fdfaf5; border-top: none; padding-top: 0; margin-top: 0; letter-spacing: normal; }
.post-article .post-cta-box p { color: var(--text-on-dark); font-size: 16px; line-height: 1.6; }

/* Blog cards inside .post-article — reset typography overhaul styles
   to prevent inflated font-size and border-top on card headings. */
.post-article .blog-card h2 {
  font-size: 17px;
  line-height: 1.35;
  color: var(--dark);
  margin: 0 0 10px;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  letter-spacing: 0;
  font-weight: 700;
}
.post-article .blog-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}
.post-related-single { max-width: 380px; }

.post-related { margin-top: 48px; }
.post-related h2 { font-size: clamp(20px, 3vw, 26px); margin-bottom: 24px; }
.post-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: box-shadow .2s, transform .2s; }
.related-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.07); transform: translateY(-2px); }
.related-card-eyebrow { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: 10px; }
.related-card h3 { font-size: 16px; line-height: 1.35; margin: 0 0 10px; }
.related-card h3 a { color: var(--dark); text-decoration: none; }
.related-card h3 a:hover { color: var(--gold); }
.related-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.post-cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.post-svg-figure {
  margin: 36px 0;
  width: 100%;
}
.post-svg-diagram {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.post-svg-caption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

@media (max-width: 960px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-toc { display: none; }
  .post-toc-mobile { display: block; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .post-cta-box { padding: 28px 22px; border-radius: 20px; }
  .post-author-box { flex-direction: column; }
  .post-related-grid { grid-template-columns: 1fr; }
  .post-table { font-size: 12px; }
  .post-table th, .post-table td { padding: 10px 12px; }
}

/* === BLOG POST TYPOGRAPHY OVERHAUL === */

/* Article container width */
.post-article .post-content,
.post-article main > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.post-article .post-svg-figure,
.post-article .post-table,
.post-article table {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* Body text */
.post-article p,
.post-article li {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
}

.post-article p:last-child {
  margin-bottom: 0;
}

/* H1 */
.post-article h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--dark);
}

/* H2 - section headings */
.post-article h2,
.post-article section h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 64px;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--dark);
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* First H2 in article should not have top border (visual rest after hero) */
.post-article > section:first-of-type > h2,
.post-article section:first-child h2 {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* H3 */
.post-article h3 {
  font-size: clamp(22px, 2.5vw, 26px);
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--dark);
}

/* H4 (rare but possible) */
.post-article h4 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--dark);
}

/* Lists */
.post-article ul,
.post-article ol {
  margin: 24px 0 32px;
  padding-left: 28px;
}

.post-article ul li,
.post-article ol li {
  margin-bottom: 14px;
  padding-left: 8px;
}

.post-article ol li::marker {
  font-weight: 700;
  color: var(--gold);
}

.post-article ul li::marker {
  color: var(--gold);
}

/* Strong / bold inline */
.post-article p strong,
.post-article li strong {
  font-weight: 700;
  color: var(--dark);
}

/* Inline links */
.post-article p a,
.post-article li a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.post-article p a:hover,
.post-article li a:hover {
  color: var(--gold-light);
}

/* === STAT CALLOUT === */
.stat-callout {
  background: linear-gradient(135deg, var(--dark) 0%, #27241d 100%);
  border-radius: 16px;
  padding: 32px 36px;
  margin: 36px auto;
  max-width: 760px;
  text-align: center;
  position: relative;
}

.stat-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
}

.stat-callout-number {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}

.stat-callout-label {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto;
}

.stat-callout-source {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* Override .post-article p (0,1,1) which beats .stat-callout-label (0,1,0).
   Two-class selectors (0,2,0) restore legibility on the dark callout background. */
.stat-callout .stat-callout-label {
  color: var(--text-on-dark);
  font-size: 16px;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto;
}
.stat-callout .stat-callout-source {
  color: var(--text-on-muted-dark);
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-style: italic;
}

/* === PULL QUOTE === */
.post-pull-quote {
  margin: 48px auto;
  max-width: 720px;
  padding: 32px 40px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
  border-radius: 0 12px 12px 0;
}

.post-pull-quote p {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  font-style: italic;
}

/* === KEY INSIGHT BOX === */
.key-insight {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 32px auto;
  max-width: 760px;
}

.key-insight h4 {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
}

.key-insight p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark);
}

/* === TABLE STYLING REFINED === */
.post-article .post-table,
.post-article table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 36px auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 15px;
}

.post-article table thead {
  background: var(--dark);
}

.post-article table thead th {
  color: var(--cream);
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-article table tbody td {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.post-article table tbody tr:nth-child(even) {
  background: var(--cream);
}

.post-article table tbody tr td:first-child {
  font-weight: 700;
  color: var(--dark);
}

/* === TLDR REFINEMENT === */
.tldr-box {
  margin: 40px auto;
  max-width: 760px;
  padding: 28px 32px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.tldr-heading {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0 0 12px;
  font-weight: 700;
}

.tldr-box p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark);
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .post-article p,
  .post-article li {
    font-size: 17px;
    line-height: 1.7;
  }

  .post-article h2,
  .post-article section h2 {
    margin-top: 48px;
    padding-top: 24px;
  }

  .stat-callout {
    padding: 24px 20px;
  }

  .post-pull-quote {
    padding: 24px 24px;
  }

  .key-insight {
    padding: 20px 24px;
  }
}
