/* ==========================================================================
   Impixo — Creative Agency Design System
   Warm Bone + Burnt Orange Palette | 90% Fluid Width (up to 1720px)
   High-end editorial typography, warm linen surfaces, deep ink contrast,
   and creative conversion-engineered agency components.
   ========================================================================== */

:root {
  /* Warm Paper & Bone Surfaces */
  --paper:        #faf7f2;
  --paper-2:      #f3eee5;
  --paper-3:      #ebe4d8;
  --paper-card:   #ffffff;
  --surface:      #ffffff;
  --surface-2:    #f7f3ec;

  /* Deep Contrast Ink */
  --ink:          #14120f;
  --ink-2:        #1d1a16;
  --ink-3:        #25211c;
  --ink-secondary:#4a463f;
  --ink-muted:    #6b6459;
  --on-ink:       #f6f1e8;
  --on-ink-dim:   #a49b8c;
  --rule-ink:     rgba(246, 241, 232, 0.14);

  /* Typography Colors */
  --text-main:    #14120f;
  --text-body:    #3e3830;
  --text-muted:   #6b6459;
  --text-light:   #938b7d;
  --font-mono:    var(--mono);
  --pine-light:   #2eb67d;

  /* Lines & Borders */
  --rule:         #ece5d9;
  --rule-2:       #ddd3c1;
  --rule-3:       #cfc3ae;
  --border:       #e8dfd1;
  --border-hover: #cfc3ae;

  /* Signature Burnt Orange Accent */
  --accent:       #d9541e;
  --accent-2:     #b44210;
  --accent-ink:   #ffffff;
  --accent-wash:  #fbece2;
  --accent-line:  #f0cbb5;
  --accent-glow:  rgba(217, 84, 30, 0.22);

  /* Secondary Accents */
  --pine:         #1f5f4e;
  --pine-wash:    #e7f0ec;
  --amber:        #c9861f;
  --amber-wash:   #fbf0dc;
  --hot:          #b3261e;
  --hot-wash:     #fbeae8;

  /* 6 Sophisticated Warm Editorial Pastel Badge Themes (Tech India Inspired) */
  --pastel-terracotta-bg: #fbece2;
  --pastel-terracotta-fg: #d9541e;
  --pastel-pine-bg:       #e7f0ec;
  --pastel-pine-fg:       #1f5f4e;
  --pastel-sand-bg:       #f6ede0;
  --pastel-sand-fg:       #b47b2c;
  --pastel-lavender-bg:   #ede8f4;
  --pastel-lavender-fg:   #6d538e;
  --pastel-peach-bg:      #faeade;
  --pastel-peach-fg:      #c25e2e;
  --pastel-slate-bg:      #e5ecf2;
  --pastel-slate-fg:      #2c5e7a;

  /* Geometry & Layout — 90% width up to 1720px */
  --nav-h:        76px;
  --wrap:         1720px;
  --gut:          clamp(18px, 2.4vw, 44px);
  --r-sm:         8px;
  --r-md:         12px;
  --r-lg:         18px;
  --r-xl:         24px;
  --r-full:       9999px;

  /* Typography */
  --font:         "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display:      "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:         "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(20, 18, 15, 0.04);
  --shadow-card:  0 6px 24px -4px rgba(20, 18, 15, 0.07), 0 2px 8px -2px rgba(20, 18, 15, 0.04);
  --shadow-hover: 0 20px 40px -12px rgba(217, 84, 30, 0.14), 0 6px 16px -4px rgba(20, 18, 15, 0.06);
  --shadow-dark:  0 24px 50px -15px rgba(0, 0, 0, 0.55);

  --ease:         cubic-bezier(.2,.8,.2,1);
}

/* ---------- Global Reset & Body ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.64;
  color: var(--text-body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ---------- 90% Fluid Container (Up to 1720px) ---------- */
.wrap {
  width: 90%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding: clamp(70px, 7vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(44px, 4.5vw, 72px) 0; }
.section--flush-top { padding-top: 0; }

.band {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.band-dark {
  background: var(--ink);
  color: var(--on-ink);
  border-top: 1px solid var(--rule-ink);
  border-bottom: 1px solid var(--rule-ink);
}

.rule { height: 1px; background: var(--rule); border: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -.03em;
  line-height: 1.1;
}

.d1 { font-size: clamp(40px, 5vw, 78px); line-height: 1.02; letter-spacing: -.04em; font-weight: 800; }
.d2 { font-size: clamp(32px, 3.8vw, 54px); line-height: 1.06; letter-spacing: -.035em; font-weight: 800; }
.d3 { font-size: clamp(23px, 2.2vw, 32px); line-height: 1.18; letter-spacing: -.025em; font-weight: 700; }
.d4 { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.35; font-weight: 600; }

.accent { color: var(--accent); }
.accent-gradient {
  background: linear-gradient(135deg, #d9541e 0%, #b44210 50%, #872e06 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.accent-orange { color: var(--accent); }

.lead {
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.62;
  color: var(--text-body);
  max-width: 62ch;
}
.small { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }
.tiny  { font-size: 12.5px; color: var(--text-light); }

p + p { margin-top: 14px; }
em { font-style: normal; font-weight: 700; color: var(--text-main); }
strong { color: var(--text-main); font-weight: 600; }

/* Creative Editorial Badge / Label */
.label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-wash);
  border: 1px solid var(--accent-line);
  padding: 6px 14px;
  border-radius: var(--r-full);
}
.label .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  animation: pulse 2s infinite ease-in-out;
}
.label--orange { color: var(--accent); background: var(--accent-wash); border-color: var(--accent-line); }
.label--orange .dot { background: var(--accent); }
.label--dark {
  color: var(--accent-line);
  background: rgba(217, 84, 30, 0.16);
  border-color: rgba(217, 84, 30, 0.35);
}
.label--dark .dot { background: var(--accent); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}

/* Section Mastheads */
.masthead { margin-bottom: clamp(38px, 4vw, 64px); }
.masthead__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 14px; }
.masthead__num { font-family: var(--mono); font-size: 13px; font-weight: 600; letter-spacing: .14em; color: var(--accent); }
.masthead h2 { margin-top: 12px; max-width: 26ch; }
.masthead .lead { margin-top: 16px; }
.masthead--split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr); gap: clamp(28px, 4vw, 80px); align-items: end; }
.masthead--split h2 { margin-top: 0; }
.masthead--center { text-align: center; max-width: 840px; margin-inline: auto; }
.masthead--center .label { margin-bottom: 14px; }
.masthead--center h2 { max-width: 100%; }
.masthead--center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 15px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  box-shadow: 0 4px 14px rgba(217, 84, 30, 0.28);
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  box-shadow: 0 8px 24px rgba(217, 84, 30, 0.36);
  transform: translateY(-2px);
  color: var(--accent-ink);
}
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: none; transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--line {
  background: var(--paper);
  color: var(--text-main);
  border: 1.5px solid var(--rule-2);
  box-shadow: var(--shadow-sm);
}
.btn--line:hover {
  background: var(--paper-2);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 6px 16px rgba(20, 18, 15, 0.08);
}

.btn--dark-line {
  background: rgba(246, 241, 232, 0.06);
  color: var(--on-ink);
  border: 1.5px solid var(--rule-ink);
  box-shadow: none;
}
.btn--dark-line:hover {
  background: rgba(246, 241, 232, 0.14);
  border-color: var(--accent);
  color: var(--on-ink);
}

.btn--orange {
  background: linear-gradient(135deg, #d9541e 0%, #b44210 100%);
  border-color: #d9541e;
}
.btn--orange:hover {
  background: linear-gradient(135deg, #c44715 0%, #98360b 100%);
  border-color: #b44210;
}

.btn--lg { padding: 16px 32px; font-size: 16.5px; border-radius: var(--r-md); }
.btn--sm { padding: 8px 16px; font-size: 13.5px; border-radius: var(--r-sm); }
.btn--block { width: 100%; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--accent);
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.arrow-link:hover { gap: 12px; color: var(--accent-2); }
.arrow-link::after { content: "→"; font-family: var(--font); }

/* ==========================================================================
   Header & Multi-Tier Navigation (90% Width up to 1720px)
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: var(--on-ink-dim);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule-ink);
}
.topbar__inner {
  width: 90%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__left { display: flex; align-items: center; gap: 20px; }
.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}
.topbar__badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s infinite ease-in-out;
}
.topbar__promo { color: var(--on-ink); font-weight: 500; }
.topbar__promo b { color: #ffffff; }
.topbar__promo a { color: var(--accent); text-decoration: underline; margin-left: 6px; }

.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}
.topbar__contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--on-ink);
  font-weight: 500;
  transition: color .18s;
}
.topbar__contact:hover { color: var(--accent); }
.topbar__sep { color: rgba(246, 241, 232, 0.2); }
.topbar__book {
  background: rgba(217, 84, 30, 0.16);
  color: var(--accent);
  border: 1px solid rgba(217, 84, 30, 0.35);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}
.topbar__book:hover { background: var(--accent); color: #ffffff; }

/* Sticky Main Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  transition: all .25s var(--ease);
}
.nav.is-stuck {
  background: rgba(250, 247, 242, 0.98);
  box-shadow: 0 10px 25px -8px rgba(20, 18, 15, 0.08);
}

.nav__inner {
  width: 90%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text-main);
}
.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(217, 84, 30, 0.35);
}
.logo__dot { color: var(--accent); }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all .18s var(--ease);
}
.nav__links a:hover {
  color: var(--accent);
  background: var(--accent-wash);
}
.nav__links a.is-active {
  color: var(--accent);
  background: var(--accent-wash);
}
.nav__badge-new {
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
  background: var(--accent);
  padding: 2px 7px;
  border-radius: 99px;
  margin-left: 4px;
  text-transform: uppercase;
}

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: all .18s;
}
.nav__phone:hover { color: var(--accent); background: var(--paper-2); }
.nav__phone i { color: var(--accent); }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-sm);
  place-items: center;
  background: var(--paper);
}
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block;
  width: 20px; height: 2px; background: var(--text-main);
  transition: transform .25s var(--ease), opacity .2s;
  border-radius: 2px;
}
.burger span::before { transform: translateY(-7px); }
.burger span::after  { transform: translateY(5px); }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: rotate(45deg); }
.burger.is-open span::after  { transform: rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 16px var(--gut) 28px;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 40px -10px rgba(20, 18, 15, 0.15);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 20px; width: 100%; border-bottom: 0; color: #fff; }

/* ==========================================================================
   Hero Section — Generous 90% Layout (up to 1720px)
   ========================================================================== */
.hero {
  padding-top: 2.5rem;
  padding-bottom: clamp(44px, 5vw, 84px);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, .88fr);
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}

.hero h1 { margin: 22px 0 0; }
.hero .lead { margin-top: 24px; }
.hero__actions { margin-top: 36px; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper-2);
  border: 1px solid var(--rule-2);
  padding: 8px 16px;
  border-radius: var(--r-full);
}
.hero__stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.hero__rating-text { font-size: 13.5px; font-weight: 700; color: var(--text-main); }
.hero__rating-text span { font-weight: 500; color: var(--text-muted); }

.hero__facts {
  margin-top: clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid var(--rule-2);
  padding-top: 26px;
}
.hero__fact b {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 1.8vw, 30px);
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -.03em;
}
.hero__fact span {
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* AI Scorecard Widget in Dark Ink (Creative Right Column) */
.report {
  border: 1px solid var(--rule-ink);
  border-radius: var(--r-xl);
  background: var(--ink);
  color: var(--on-ink);
  box-shadow: var(--shadow-dark), 0 0 45px rgba(217, 84, 30, 0.16);
  padding: clamp(28px, 2.8vw, 42px);
  position: relative;
  overflow: hidden;
}
.report::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3.5px;
  background: linear-gradient(90deg, var(--accent), var(--amber), var(--pine));
}
.report__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-ink);
}
.report__stamp {
  font-family: var(--font);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-line);
  background: rgba(217, 84, 30, 0.16);
  border: 1px solid rgba(217, 84, 30, 0.35);
  border-radius: var(--r-full);
  padding: 4px 12px;
}
.report__query {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--on-ink-dim);
  background: rgba(246, 241, 232, 0.06);
  padding: 4px 12px;
  border-radius: var(--r-sm);
}

.report__score-wrapper {
  margin: 26px 0 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.report__score {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.report__num {
  font-family: var(--display);
  font-size: 68px;
  font-weight: 800;
  line-height: .85;
  color: var(--on-ink);
  letter-spacing: -.04em;
}
.report__den {
  font-size: 14.5px;
  color: var(--on-ink-dim);
  padding-bottom: 4px;
}
.report__badge {
  font-size: 12px;
  font-weight: 600;
  color: #ff7675;
  background: rgba(255, 118, 117, 0.15);
  border: 1px solid rgba(255, 118, 117, 0.3);
  padding: 4px 10px;
  border-radius: var(--r-sm);
}

.bar-row { margin-top: 18px; }
.bar-row__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 7px;
}
.bar-row__name { color: var(--on-ink-dim); }
.bar-row__val { font-size: 13.5px; font-weight: 700; color: var(--on-ink); font-family: var(--mono); }
.bar {
  height: 8px;
  background: rgba(246, 241, 232, 0.1);
  overflow: hidden;
  border-radius: var(--r-full);
}
.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #b3261e, var(--accent));
  border-radius: var(--r-full);
  transition: width 1.2s var(--ease);
}
.bar--mid i  { background: linear-gradient(90deg, var(--amber), #eab308); }
.bar--good i { background: linear-gradient(90deg, var(--pine), #2ecc71); }

.report__after {
  margin-top: 22px;
  padding: 16px 18px;
  background: rgba(31, 95, 78, 0.18);
  border: 1px solid rgba(31, 95, 78, 0.35);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.report__after-text { font-size: 13.5px; color: #a3e6cd; }
.report__after-text b { color: #ffffff; }
.report__after-score { font-family: var(--mono); font-weight: 800; color: #55efc4; font-size: 20px; }

.report__foot {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Live Readout Ticker & Metrics
   ========================================================================== */
.readout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.2vw, 48px);
  font-size: 14.5px;
  color: var(--text-body);
  padding: 18px var(--gut);
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.readout > * { display: inline-flex; align-items: center; gap: 8px; }
.readout b { color: var(--text-main); font-weight: 700; }
.readout .live { color: var(--pine); font-weight: 700; }
.readout .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pine);
  animation: pulse 1.8s infinite ease-in-out;
}

/* Stack Ticker */
.ticker {
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  background: var(--paper);
}
.ticker__label {
  font-family: var(--font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 18px 28px;
  border-right: 1px solid var(--rule);
  white-space: nowrap;
}
.marquee {
  overflow: hidden; padding: 16px 0 16px 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40px, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 40px, #000 92%, transparent);
}
.marquee__track { display: flex; gap: 48px; width: max-content; animation: slide 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--text-body); white-space: nowrap; }
.marquee__item::before { content: "◆ "; color: var(--accent); margin-right: 4px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* Numbers / Figures Strip */
.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  border-top: 1px solid var(--rule-2);
}
.figure {
  padding: 30px 0 0;
  position: relative;
}
.figure__num {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.05em;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: .92;
  color: var(--text-main);
}
.figure__label {
  font-family: var(--font);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ==========================================================================
   CREATIVE "INDUSTRIES WE SERVE" (Tech India & Foxxr in Bone + Burnt Orange)
   ========================================================================== */
.ind-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.ind-tab {
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 700;
  background: #ffffff;
  color: var(--text-body);
  border: 1.5px solid var(--rule-2);
  transition: all .2s var(--ease);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.ind-tab:hover {
  background: var(--paper-2);
  border-color: var(--accent);
  color: var(--accent);
}
.ind-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 84, 30, 0.35);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1280px) {
  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
}

.ind-card {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.ind-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 32px -8px rgba(217, 84, 30, 0.16), 0 4px 12px rgba(20, 18, 15, 0.04);
}

/* 6-tone Warm Editorial Pastel Icon Cycle (Tech India Software Signature Pattern) */
.ind-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 22px;
  flex: none;
  transition: transform .25s var(--ease);
}
.ind-card:hover .ind-card__icon { transform: scale(1.08) rotate(3deg); }

/* Auto 6-tone warm pastel cycle */
.ind-card:nth-child(6n+1) .ind-card__icon { background: var(--pastel-terracotta-bg); color: var(--pastel-terracotta-fg); }
.ind-card:nth-child(6n+2) .ind-card__icon { background: var(--pastel-pine-bg); color: var(--pastel-pine-fg); }
.ind-card:nth-child(6n+3) .ind-card__icon { background: var(--pastel-sand-bg); color: var(--pastel-sand-fg); }
.ind-card:nth-child(6n+4) .ind-card__icon { background: var(--pastel-lavender-bg); color: var(--pastel-lavender-fg); }
.ind-card:nth-child(6n+5) .ind-card__icon { background: var(--pastel-peach-bg); color: var(--pastel-peach-fg); }
.ind-card:nth-child(6n+6) .ind-card__icon { background: var(--pastel-slate-bg); color: var(--pastel-slate-fg); }

.ind-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
  transition: color .2s;
}
.ind-card:hover h4 { color: var(--accent); }

.ind-card p {
  font-size: 15px;
  line-height: 1.58;
  color: var(--text-body);
  margin-bottom: 22px;
}

.ind-card__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.ind-card__tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--paper-2);
  border: 1px solid var(--rule-2);
  padding: 3.5px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ind-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 700;
  transition: all .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.ind-card:hover .ind-card__arrow {
  transform: translateX(4px);
  color: var(--accent-2);
}

/* Custom Industry Callout in Dark Ink */
.ind-custom {
  margin-top: 48px;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(32px, 3.6vw, 52px);
  color: var(--on-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: var(--shadow-dark);
}
.ind-custom h3 { color: var(--on-ink); font-size: clamp(24px, 2.2vw, 32px); margin-bottom: 10px; }
.ind-custom p { color: var(--on-ink-dim); max-width: 64ch; font-size: 16px; }

/* ==========================================================================
   Services Section (Foxxr & Tech India inspired)
   ========================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.svc-card {
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-xl);
  padding: clamp(32px, 3.4vw, 48px);
  box-shadow: var(--shadow-card);
  transition: all .25s var(--ease);
  position: relative;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  background: #ffffff;
}
.svc-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.svc-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--accent-wash);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 24px;
}
.svc-card__num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: .12em;
}
.svc-card h3 { font-size: 26px; margin-bottom: 14px; }
.svc-card p { font-size: 16px; line-height: 1.62; }

.ticks { margin-top: 24px; display: grid; gap: 11px; }
.ticks li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  color: var(--text-body);
}
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 15px;
}

/* Secondary Services Grid */
.svc-subgrid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc-subcard {
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .2s var(--ease);
}
.svc-subcard:hover {
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.svc-subcard svg { width: 26px; height: 26px; color: var(--accent); margin-bottom: 16px; }
.svc-subcard h4 { font-size: 19px; margin-bottom: 8px; }
.svc-subcard p { font-size: 15px; color: var(--text-muted); }

/* ==========================================================================
   Case Studies / Proof Cards (Expansive Width)
   ========================================================================== */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  transition: all .25s var(--ease);
  position: relative;
}
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
  background: #ffffff;
}
.case-card__id {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
}
.case-card__id b { color: var(--accent); font-weight: 700; }
.case-card__fig {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.05em;
  font-size: clamp(44px, 4.2vw, 60px);
  line-height: .92;
  color: var(--accent);
  margin: 22px 0 6px;
}
.case-card__cap {
  font-family: var(--font);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
}
.case-card h3 { font-size: 22px; margin: 20px 0 10px; color: var(--text-main); }
.case-card p { font-size: 15px; color: var(--text-body); }
.case-card__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0 24px;
}
.case-card__stack span {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-body);
  background: var(--paper-2);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-sm);
  padding: 4px 10px;
}
.case-card .arrow-link { margin-top: auto; }

/* ==========================================================================
   Local SEO & AI Search Section (Dark Ink Module)
   ========================================================================== */
.local {
  background: var(--ink);
  color: var(--on-ink);
}
.local .label { background: rgba(217, 84, 30, 0.16); color: var(--accent-line); border-color: rgba(217, 84, 30, 0.35); }
.local h2 { color: var(--on-ink); }
.local .lead { color: var(--on-ink-dim); }

.local__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}

.local__ticks { margin-top: 26px; display: grid; gap: 14px; }
.local__ticks li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--on-ink-dim);
}
.local__ticks li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
}
.local__ticks b { color: var(--on-ink); }

.local__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-top: 1px solid var(--rule-ink);
  margin-top: 32px;
  padding-top: 26px;
}
.local__stat b {
  display: block;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--accent);
  line-height: 1;
}
.local__stat span {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--on-ink-dim);
  margin-top: 8px;
  font-weight: 600;
}

/* SERP Card in Dark Ink */
.serp {
  border: 1px solid var(--rule-ink);
  background: var(--ink-2);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: var(--shadow-dark), 0 0 35px rgba(217, 84, 30, 0.12);
  position: relative;
}
.serp__head {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--on-ink-dim);
  border-bottom: 1px solid var(--rule-ink);
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.serp__row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-ink);
}
.serp__row:last-child { border-bottom: 0; }
.serp__pin {
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  background: rgba(246, 241, 232, 0.08);
  color: var(--on-ink-dim);
}
.serp__row--us {
  background: rgba(217, 84, 30, 0.16);
  margin-inline: -14px;
  padding-inline: 14px;
  border-radius: var(--r-md);
  border-bottom-color: transparent;
}
.serp__row--us .serp__pin {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 12px rgba(217, 84, 30, 0.6);
}
.serp__name { font-size: 15px; color: var(--on-ink-dim); }
.serp__row--us .serp__name { color: var(--on-ink); font-weight: 700; }
.serp__score { font-family: var(--mono); font-size: 12.5px; color: var(--on-ink-dim); font-weight: 600; }
.serp__row--us .serp__score { color: var(--accent); font-weight: 700; }
.serp__note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-line);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--rule-ink);
}

/* ==========================================================================
   Process Rail
   ========================================================================== */
.rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: clamp(34px, 4vw, 56px);
}
.rail__step {
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
}
.rail__step:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
  background: #ffffff;
}
.rail__n {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 12px;
}
.rail__step h4 { font-size: 20px; margin-bottom: 8px; }
.rail__step p { font-size: 14.5px; color: var(--text-body); }
.rail__when {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   Pricing & Retainers — Modern Cards
   ========================================================================== */
/* ==========================================================================
   Retainers & Pricing Plans — Clean, Attractive High-Converting Cards
   ========================================================================== */
.pricing-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.5vw, 32px);
  margin: 0 auto 36px;
  padding: 12px 28px;
  background: #ffffff;
  border: 1px solid var(--rule);
  border-radius: var(--r-full);
  box-shadow: 0 2px 10px rgba(20, 18, 15, 0.04);
  max-width: fit-content;
}
.pricing-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-main);
}
.pricing-trust-item i {
  font-size: 13px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}
@media (max-width: 991px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

.plan-card {
  background: #ffffff;
  border: 1.5px solid var(--rule);
  border-radius: var(--r-xl);
  padding: clamp(28px, 2.8vw, 38px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px -2px rgba(20, 18, 15, 0.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .25s ease;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(20, 18, 15, 0.1);
  border-color: var(--rule-3);
}

.plan-card--featured {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  box-shadow: 0 18px 46px -10px rgba(217, 84, 30, 0.22), 0 0 0 1px rgba(217, 84, 30, 0.12);
}
@media (min-width: 1024px) {
  .plan-card--featured {
    transform: translateY(-6px);
    z-index: 2;
  }
  .plan-card--featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 26px 54px -10px rgba(217, 84, 30, 0.3);
  }
}

.plan-card__flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d9541e, #ea580c);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-full);
  box-shadow: 0 6px 18px rgba(217, 84, 30, 0.4);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}

.plan-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: var(--r-full);
  width: fit-content;
  margin-bottom: 14px;
}
.plan-tier-badge--care {
  background: var(--paper-2);
  color: var(--text-muted);
  border: 1px solid var(--rule);
}
.plan-tier-badge--growth {
  background: var(--accent-wash);
  color: var(--accent);
  border: 1px solid var(--accent-line);
}
.plan-tier-badge--scale {
  background: #14120f;
  color: #f6f1e8;
}

.plan-card__name {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.plan-card__for {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
  min-height: 42px;
}

.plan-card__price {
  margin: 20px 0 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-card__currency {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  font-family: var(--display);
}
.plan-card__amount {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text-main);
  line-height: .9;
}
.plan-card__period {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 4px;
}

.plan-card__features {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
  list-style: none;
  padding: 0;
}
.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-body);
}
.plan-card__features li strong {
  color: var(--text-main);
  font-weight: 700;
}
.plan-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pine-wash);
  color: var(--pine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-card--featured .plan-check {
  background: var(--accent-wash);
  color: var(--accent);
}
.plan-card .btn {
  margin-top: auto;
}

/* Turnkey Fixed-Price Project Card */
.turnkey-project-card {
  margin-top: 36px;
  background: linear-gradient(135deg, #181512 0%, #231e19 100%);
  border: 1px solid rgba(246, 241, 232, 0.12);
  border-radius: var(--r-xl);
  padding: clamp(26px, 3.2vw, 40px);
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.45);
  color: #f6f1e8;
  position: relative;
  overflow: hidden;
}
.turnkey-project-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(217, 84, 30, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.turnkey-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #ded6c9;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  padding: 5px 13px;
}

/* Pricing Comparison Table Matrix */
.pricing-matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  background: #ffffff;
  box-shadow: 0 4px 20px -2px rgba(20, 18, 15, 0.05);
}
.pricing-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: left;
  min-width: 680px;
}
.pricing-matrix-table th {
  padding: 18px 22px;
  font-weight: 800;
  color: var(--text-main);
  background: var(--paper);
  border-bottom: 1.5px solid var(--rule);
}
.pricing-matrix-table th.featured-col {
  background: var(--accent-wash);
  color: var(--accent);
  border-left: 1.5px solid var(--accent-line);
  border-right: 1.5px solid var(--accent-line);
}
.pricing-matrix-table td {
  padding: 15px 22px;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
}
.pricing-matrix-table td.featured-col {
  background: rgba(217, 84, 30, 0.025);
  border-left: 1.5px solid var(--accent-line);
  border-right: 1.5px solid var(--accent-line);
}
.pricing-matrix-table tr:last-child td {
  border-bottom: none;
}
.pricing-matrix-table tr:hover td {
  background: #faf8f5;
}
.pricing-matrix-table tr:hover td.featured-col {
  background: rgba(217, 84, 30, 0.05);
}

/* ==========================================================================
   Social Proof & Client Testimonials
   ========================================================================== */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.voice-card {
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-xl);
  padding: 34px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
}
.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
  background: #ffffff;
}
.voice-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.voice-card__stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.voice-card__badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--pine);
  background: var(--pine-wash);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.voice-card blockquote {
  font-size: 16px;
  line-height: 1.64;
  color: var(--text-body);
  margin-bottom: 26px;
}
.voice-card__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.voice-card__av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14.5px;
  flex: none;
}
.voice-card__meta b { display: block; font-size: 15.5px; font-weight: 700; color: var(--text-main); }
.voice-card__meta span { font-size: 13.5px; color: var(--text-muted); }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq {
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  gap: 16px;
}
.faq__item {
  background: var(--paper);
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .2s var(--ease);
}
.faq__item:hover { border-color: var(--rule-3); }
.faq__item.is-open { border-color: var(--accent); box-shadow: 0 4px 16px rgba(217, 84, 30, 0.09); background: #ffffff; }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}
.faq__q::after {
  content: "+";
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  transition: transform .25s var(--ease);
  flex: none;
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 28px 24px; font-size: 15.5px; color: var(--text-body); }

/* ==========================================================================
   Call to Action Banner & Mega Footer
   ========================================================================== */
.cta-banner {
  background: var(--ink);
  color: var(--on-ink);
  border-radius: var(--r-xl);
  padding: clamp(44px, 6vw, 84px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217, 84, 30, 0.28) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(36px, 4.5vw, 76px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-banner h2 { color: var(--on-ink); margin-top: 14px; }
.cta-banner p { color: var(--on-ink-dim); font-size: 17px; }
.cta-banner__note {
  font-size: 13px;
  color: var(--on-ink-dim);
  margin-top: 18px;
  font-family: var(--mono);
}

.footer {
  background: var(--ink);
  color: var(--on-ink-dim);
  padding: clamp(60px, 6vw, 92px) 0 40px;
  border-top: 1px solid var(--rule-ink);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 52px;
}
.footer .logo { color: var(--on-ink); }
.footer h5 {
  font-family: var(--font);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-ink);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer ul { display: grid; gap: 12px; }
.footer a { color: var(--on-ink-dim); font-size: 15px; transition: color .18s; }
.footer a:hover { color: var(--accent); }
.footer p { color: var(--on-ink-dim); font-size: 15px; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--on-ink);
}
.footer__bottom {
  margin-top: clamp(44px, 5vw, 72px);
  padding-top: 26px;
  border-top: 1px solid var(--rule-ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--on-ink-dim);
}

/* ==========================================================================
   Forms & Inputs
   ========================================================================== */
.form-panel {
  background: var(--paper);
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.2vw, 42px);
  box-shadow: var(--shadow-card);
}
.form-panel__head { border-bottom: 1px solid var(--rule); padding-bottom: 18px; margin-bottom: 24px; }
.form-panel__head h3 { font-size: 28px; margin-top: 10px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 15.5px;
  color: var(--text-main);
  background: var(--paper-2);
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: all .2s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-light); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-msg { margin-top: 14px; font-size: 15px; border-radius: var(--r-sm); padding: 13px 16px; display: none; }
.form-msg.ok  { display: block; background: var(--pine-wash); color: var(--pine); border: 1px solid rgba(31, 95, 78, 0.3); }
.form-msg.err { display: block; background: var(--accent-wash); color: var(--accent-2); border: 1px solid var(--accent-line); }

/* ==========================================================================
   Sticky Mobile CTA
   ========================================================================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  gap: 10px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--rule-2);
  box-shadow: 0 -4px 20px rgba(20, 18, 15, 0.08);
}
.sticky-cta .btn { flex: 1; }

/* Case Study detail page additions */
.cs-hero { border-bottom: 1px solid var(--rule); padding: clamp(44px, 5vw, 84px) 0 clamp(38px, 4vw, 60px); background: var(--paper-2); }
.cs-hero h1 { max-width: 24ch; margin: 20px 0 0; }
.cs-hero .lead { margin-top: 20px; }
.cs-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--rule); margin-top: 34px; padding-top: 26px; }
.cs-fact b { display: block; font-size: 20px; font-weight: 800; color: var(--text-main); }
.cs-fact span { display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }

.cs-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; border-top: 1px solid var(--rule-2); padding-top: 26px; }
.cs-result b { display: block; font-size: clamp(42px, 4.5vw, 60px); font-weight: 800; color: var(--accent); line-height: .95; }
.cs-result span { display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); margin-top: 10px; }
.cs-result p { font-size: 15px; margin-top: 10px; }

.cs-body { display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: clamp(28px, 4vw, 76px); align-items: start; }
.cs-body + .cs-body { margin-top: clamp(38px, 4vw, 64px); padding-top: clamp(38px, 4vw, 64px); border-top: 1px solid var(--rule); }
.cs-body__k { font-family: var(--mono); font-weight: 700; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.cs-body h2 { font-size: clamp(25px, 2.4vw, 34px); margin-bottom: 16px; }
.cs-body p { max-width: 76ch; }
.cs-body p + p { margin-top: 16px; }

.crumb { font-size: 12.5px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }
.crumb a:hover { color: var(--accent); }
.crumb span { color: var(--rule-2); margin: 0 8px; }

/* Shift Problem Block */
.shift { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(40px, 5vw, 92px); align-items: start; }
.pull { font-size: clamp(26px, 2.8vw, 40px); line-height: 1.2; font-weight: 800; color: var(--text-main); }
.list-num { border-top: 1px solid var(--rule); }
.list-num__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.list-num__n { font-family: var(--mono); font-size: 13.5px; font-weight: 700; color: var(--accent); padding-top: 4px; }
.list-num__item b { display: block; font-size: 20px; font-weight: 700; color: var(--text-main); margin-bottom: 6px; }
.list-num__item p { font-size: 16px; color: var(--text-body); }
.list-num__item--fix {
  background: var(--accent-wash);
  margin-inline: -20px;
  padding-inline: 20px;
  border-radius: var(--r-md);
  border-bottom-color: transparent;
}
.list-num__item--fix .list-num__n { color: var(--accent); }

/* Immediate visibility without scroll-blocking */
.reveal, .js .reveal, .js .reveal.is-in {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1280px) {
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .local__grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 960px) {
  .topbar { display: none; }
  .nav__links, .nav__phone { display: none; }
  .burger { display: grid; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-subgrid { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .figures { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: 1fr; }
  .shift { grid-template-columns: 1fr; gap: 36px; }
  .rail { grid-template-columns: 1fr; }
  .cta-banner__grid { grid-template-columns: 1fr; }
  .ind-custom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  :root { --gut: 16px; }
  body { padding-bottom: 74px; }
  .wrap { width: 94%; }
  .sticky-cta { display: flex; }
  .ind-grid { grid-template-columns: 1fr; }
  .figures { grid-template-columns: 1fr; gap: 20px; }
  .hero__facts { grid-template-columns: 1fr; gap: 18px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .cs-facts { grid-template-columns: 1fr; gap: 14px; }
  .cs-results { grid-template-columns: 1fr; }
  .cs-body { grid-template-columns: 1fr; gap: 12px; }
  .report__score-wrapper { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ==========================================================================
   Shipped With / Tech & Platform Marquee
   ========================================================================== */
.shipped-strip {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}
.shipped-strip__inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}
.shipped-strip__title {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shipped-strip__title::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--rule-3);
}
.shipped-marquee {
  overflow: hidden;
  flex: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}
.shipped-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  width: max-content;
  animation: slide 35s linear infinite;
}
.shipped-marquee:hover .shipped-track {
  animation-play-state: paused;
}
.shipped-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all .2s var(--ease);
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--r-sm);
}
.shipped-item:hover {
  color: var(--accent);
  background: var(--paper);
  transform: translateY(-2px);
}
.shipped-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: none;
}
.shipped-item i {
  font-size: 18px;
}

/* ==========================================================================
   Google Maps Local 3-Pack & GeoGrid Ranking Simulation
   ========================================================================== */
.gmap-box {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 36px;
}
.gmap-bar {
  background: #ffffff;
  padding: 14px 22px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gmap-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper-2);
  border: 1px solid var(--rule-2);
  padding: 8px 16px;
  border-radius: var(--r-full);
  flex: 1;
  max-width: 520px;
}
.gmap-search-logo {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 800;
  font-size: 14px;
}
.gmap-search-logo span:nth-child(1) { color: #4285F4; }
.gmap-search-logo span:nth-child(2) { color: #EA4335; }
.gmap-search-logo span:nth-child(3) { color: #FBBC05; }
.gmap-search-logo span:nth-child(4) { color: #4285F4; }
.gmap-search-logo span:nth-child(5) { color: #34A853; }
.gmap-search-logo span:nth-child(6) { color: #EA4335; }
.gmap-query {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  flex: 1;
}
.gmap-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.gmap-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pine-wash);
  color: var(--pine);
  border: 1px solid rgba(31, 95, 78, 0.25);
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
}
.gmap-badge-live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pine);
  animation: pulse 1.8s infinite;
}

.gmap-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 480px;
}

/* Left: Google 3-Pack Business Listings */
.gmap-pack {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--rule);
  background: #ffffff;
}
.gmap-pack-header {
  padding: 14px 22px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}
.gmap-card-item {
  padding: 20px 22px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: all .2s var(--ease);
}
.gmap-card-item:hover {
  background: var(--paper);
}
.gmap-card-item--winner {
  background: var(--accent-wash);
  border-left: 4px solid var(--accent);
}
.gmap-card-item--winner:hover {
  background: #fae4d7;
}
.gmap-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.gmap-biz-name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}
.gmap-rank-tag {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: var(--r-full);
  flex: none;
}
.gmap-rank-tag--first {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(217, 84, 30, 0.35);
}
.gmap-rank-tag--comp {
  background: var(--paper-3);
  color: var(--text-muted);
}
.gmap-biz-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13.5px;
}
.gmap-stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-size: 13px;
}
.gmap-rating-num {
  font-weight: 700;
  color: var(--text-main);
}
.gmap-reviews-count {
  color: var(--text-muted);
  font-weight: 500;
}
.gmap-biz-sub {
  font-size: 13.5px;
  color: var(--text-body);
  margin-top: 6px;
}
.gmap-biz-sub b {
  color: var(--pine);
  font-weight: 700;
}
.gmap-biz-entity {
  font-size: 12px;
  color: var(--accent-2);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.gmap-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.gmap-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--rule-2);
  background: #ffffff;
  color: var(--text-main);
  transition: all .18s;
}
.gmap-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.gmap-btn--primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.gmap-btn--primary:hover {
  background: var(--accent-2);
  color: #ffffff;
}

/* Right: Vector Map Simulation & GeoGrid Radar */
.gmap-view-side {
  position: relative;
  background: #f1ede4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gmap-canvas {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 320px;
  background-color: #f4efe6;
  background-image:
    radial-gradient(#e0d7c7 1px, transparent 1px),
    linear-gradient(to right, rgba(207, 195, 174, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(207, 195, 174, 0.3) 1px, transparent 1px);
  background-size: 24px 24px, 48px 48px, 48px 48px;
}
/* Vector roads & landmarks */
.gmap-road-h {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  height: 14px;
  background: #ffffff;
  box-shadow: 0 0 0 1px #dfd6c5;
}
.gmap-road-v {
  position: absolute;
  left: 55%;
  top: 0;
  bottom: 0;
  width: 12px;
  background: #ffffff;
  box-shadow: 0 0 0 1px #dfd6c5;
}
.gmap-road-diag {
  position: absolute;
  width: 140%;
  height: 10px;
  background: #ffffff;
  top: 20%;
  left: -20%;
  transform: rotate(28deg);
  box-shadow: 0 0 0 1px #dfd6c5;
}
.gmap-park {
  position: absolute;
  top: 12%;
  left: 10%;
  width: 110px;
  height: 80px;
  background: #d8e8dc;
  border-radius: 12px;
  border: 1px solid #bdd6c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #4a7556;
}
.gmap-water {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 120px;
  background: #d2e4f0;
  border-radius: 36px 0 0 0;
  border-left: 1px solid #b5d1e4;
  border-top: 1px solid #b5d1e4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #3b6d8f;
}

/* Map Radius Overlay */
.gmap-radius-ring {
  position: absolute;
  top: calc(45% - 90px);
  left: calc(55% - 90px);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 2px dashed rgba(217, 84, 30, 0.45);
  background: rgba(217, 84, 30, 0.06);
  pointer-events: none;
  animation: pulse 3s infinite ease-in-out;
}

/* Map Pins */
.gmap-pin-marker {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform .2s var(--ease);
}
.gmap-pin-marker:hover {
  transform: translate(-50%, -110%) scale(1.1);
  z-index: 20;
}
.gmap-pin-bubble {
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 2px;
}
.gmap-pin-icon {
  width: 32px;
  height: 40px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.25));
}
.gmap-pin--winner {
  top: 45%;
  left: 55%;
  z-index: 10;
}
.gmap-pin--winner .gmap-pin-bubble {
  background: var(--accent);
  color: #ffffff;
}
.gmap-pin--comp1 {
  top: 28%;
  left: 32%;
  z-index: 5;
}
.gmap-pin--comp1 .gmap-pin-bubble {
  background: #3e3830;
  color: #ffffff;
}
.gmap-pin--comp2 {
  top: 68%;
  left: 74%;
  z-index: 5;
}
.gmap-pin--comp2 .gmap-pin-bubble {
  background: #6b6459;
  color: #ffffff;
}

/* GeoGrid Local Heatmap Radar Bar */
.geogrid-dock {
  background: var(--ink);
  color: var(--on-ink);
  padding: 16px 20px;
  border-top: 1px solid var(--rule-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.geogrid-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.geogrid-matrix {
  display: grid;
  grid-template-columns: repeat(5, 12px);
  gap: 4px;
}
.geogrid-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  color: #064e3b;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}
.geogrid-text b {
  display: block;
  font-size: 13.5px;
  color: #ffffff;
}
.geogrid-text span {
  font-size: 11.5px;
  color: var(--on-ink-dim);
}
.geogrid-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.geogrid-pill {
  font-size: 11.5px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

/* ==========================================================================
   Homepage Results & Measurable ROI Showcase
   ========================================================================== */
.results-strip {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(60px, 6vw, 100px) 0;
}
.res-headline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(32px, 4vw, 48px);
}
.res-stat-card {
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: all .2s var(--ease);
}
.res-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}
.res-stat-num {
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.04em;
}
.res-stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 10px;
}
.res-stat-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.res-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
  margin-top: 44px;
}
.res-card {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  padding: clamp(22px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.res-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}
.res-card__tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.res-card__vertical {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  background: var(--accent-wash);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.res-card__timeline {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
}
.res-card__client {
  font-family: var(--display);
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
}
.res-card__challenge {
  font-size: 13.5px;
  color: var(--text-body);
  margin-top: 10px;
  line-height: 1.5;
  min-height: 64px;
}

/* Before vs After Metric Bar inside card */
.res-comparison {
  background: var(--paper-2);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-md);
  padding: 13px 15px;
  margin: 16px 0 14px;
}
.res-comparison-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  white-space: nowrap;
}
.res-comparison-row span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
}
.res-comparison-row b {
  font-size: 13.5px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.res-comparison-note {
  font-size: 11.5px;
  color: var(--pine);
  font-weight: 700;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.res-bar-visual {
  height: 7px;
  background: var(--rule-3);
  border-radius: 99px;
  overflow: hidden;
  display: flex;
}
.res-bar-before {
  height: 100%;
  background: var(--text-light);
}
.res-bar-after {
  height: 100%;
  background: var(--accent);
}

.res-quote-box {
  border-left: 2.5px solid var(--accent);
  padding-left: 14px;
  margin-top: 14px;
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-body);
  min-height: 76px;
}
.res-quote-author {
  font-style: normal;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--text-main);
  margin-top: 6px;
  display: block;
}

/* ==========================================================================
   Dedicated Results Page Components (results.html)
   ========================================================================== */
.results-hero {
  padding: clamp(52px, 6vw, 92px) 0 clamp(40px, 4.5vw, 68px);
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
.results-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 12px;
}
.res-tab {
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 600;
  background: #ffffff;
  color: var(--text-muted);
  border: 1.5px solid var(--rule-2);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.res-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.res-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(217, 84, 30, 0.3);
}

.teardown-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}
.teardown-item {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  transition: all .25s var(--ease);
}
.teardown-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-line);
}
.teardown-content {
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
}
.teardown-metrics-side {
  background: var(--paper-2);
  border-left: 1px solid var(--rule);
  padding: clamp(32px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.teardown-table {
  width: 100%;
  margin-top: 20px;
  font-size: 13.5px;
}
.teardown-table th {
  text-align: left;
  padding: 8px 12px;
  background: var(--paper);
  border-bottom: 1.5px solid var(--rule-2);
  font-weight: 700;
  color: var(--text-muted);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.teardown-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  color: var(--text-body);
}
.teardown-table tr:last-child td {
  border-bottom: 0;
}
.td-win {
  color: var(--accent);
  font-weight: 800;
  font-family: var(--mono);
}
.td-before {
  color: var(--text-light);
  font-family: var(--mono);
}

/* Responsive updates for new components */
@media (max-width: 1280px) {
  .gmap-layout { grid-template-columns: 1fr; }
  .gmap-pack { border-right: 0; border-bottom: 1px solid var(--rule); }
  .res-headline-grid { grid-template-columns: repeat(2, 1fr); }
  .res-cards-grid { grid-template-columns: 1fr; }
  .teardown-item { grid-template-columns: 1fr; }
  .teardown-metrics-side { border-left: 0; border-top: 1px solid var(--rule); }
}

@media (max-width: 960px) {
  .gmap-bar { flex-direction: column; align-items: flex-start; }
  .gmap-search { max-width: 100%; width: 100%; }
}

@media (max-width: 640px) {
  .res-headline-grid { grid-template-columns: 1fr; }
  .gmap-actions { flex-direction: column; }
  .shipped-strip__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}


/* ==========================================================================
   BETTER HEADER & CREATIVE AGENCY NAVIGATION
   Warm Bone + Deep Ink + Burnt Orange Palette | 90% Screen Width (up to 1720px)
   ========================================================================== */

/* Enhanced Topbar */
.topbar {
  background: var(--ink);
  color: var(--on-ink-dim);
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule-ink);
  position: relative;
  z-index: 105;
}
.topbar__inner {
  width: 90%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar__status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(217, 84, 30, 0.15);
  color: var(--accent);
  border: 1px solid rgba(217, 84, 30, 0.35);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
}
.topbar__status-chip .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s infinite;
}
.topbar__promo-text {
  color: var(--on-ink);
  font-size: 13px;
  font-weight: 500;
}
.topbar__promo-text b {
  color: #ffffff;
  font-weight: 700;
}
.topbar__promo-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  margin-left: 6px;
  transition: color .18s;
}
.topbar__promo-text a:hover {
  color: #ffffff;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.topbar__link-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--on-ink);
  font-size: 13px;
  font-weight: 600;
  transition: color .18s;
}
.topbar__link-item:hover {
  color: var(--accent);
}
.topbar__link-item i {
  color: var(--accent);
  font-size: 12px;
}
.topbar__divider {
  color: rgba(246, 241, 232, 0.18);
  font-size: 12px;
}
.topbar__cta-pill {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px 13px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .2s var(--ease);
}
.topbar__cta-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(217, 84, 30, 0.4);
}

/* Enhanced Sticky Navigation Bar */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  transition: all .25s var(--ease);
}
.nav.is-stuck {
  height: 72px;
  background: rgba(250, 247, 242, 0.98);
  box-shadow: 0 12px 30px -10px rgba(20, 18, 15, 0.09);
  border-bottom-color: var(--rule-2);
}

.nav__inner {
  width: 90%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Bespoke Agency Logo Lockup */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform .2s var(--ease);
}
.logo:hover {
  transform: translateY(-1px);
}
.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 84, 30, 0.38);
  flex: none;
  transition: all .25s var(--ease);
}
.logo:hover .logo__mark {
  box-shadow: 0 6px 18px rgba(217, 84, 30, 0.55);
  transform: rotate(-4deg) scale(1.04);
}
.logo__text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text-main);
}
.logo__dot {
  color: var(--accent);
}
.logo__tag {
  font-family: var(--font);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}

/* Nav Menu Structure */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Individual Nav Item & Dropdown Trigger */
.nav__menu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav__menu-item > a,
.nav__link {
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-body);
  padding: 9px 14px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .18s var(--ease);
  position: relative;
  white-space: nowrap;
}
.nav__menu-item:hover > a,
.nav__link:hover,
.nav__link.is-active {
  color: var(--accent);
  background: var(--accent-wash);
}
.nav__caret {
  font-size: 9px;
  color: var(--text-light);
  transition: transform .2s ease, color .2s;
}
.nav__menu-item:hover .nav__caret {
  transform: rotate(180deg);
  color: var(--accent);
}

/* Live Win Pulsing Dot for Results Link */
.nav__pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pine);
  animation: pulse 1.8s infinite;
  display: inline-block;
  margin-left: 2px;
}

/* Pill Badges inside Nav (e.g. 16 Verticals) */
.nav__pill-badge {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
  background: var(--accent);
  padding: 2px 7px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ==========================================================================
   DROPDOWN MEGA-MENUS (Services & Industries)
   ========================================================================== */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 55px -12px rgba(20, 18, 15, 0.16), 0 4px 14px rgba(20, 18, 15, 0.05);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 200;
}
/* Invisible hover bridge prevents premature closing */
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav__menu-item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Services Dropdown (3-Pillar Foxxr-Style Mega Menu: ATTRACT, ENGAGE, CONVERT) */
.nav__dropdown--services {
  width: 940px;
  left: -100px;
}
.mega-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1360px) {
  .nav__dropdown--services {
    width: 860px;
    left: -140px;
  }
  .mega-services-grid {
    gap: 16px;
  }
}
.dropdown-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.dropdown-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  text-decoration: none;
  transition: all .2s var(--ease);
}
.dropdown-card:hover {
  background: var(--paper);
  border-color: var(--rule-2);
  transform: translateX(3px);
}
.dropdown-card__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--accent-wash);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex: none;
  transition: all .2s;
}
.dropdown-card:hover .dropdown-card__icon {
  background: var(--accent);
  color: #ffffff;
}
.dropdown-card__title {
  font-family: var(--display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}
.dropdown-card:hover .dropdown-card__title {
  color: var(--accent);
}
.dropdown-card__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 3px;
}

/* Industries Dropdown (2 Columns with Pastel Badges) */
.nav__dropdown--industries {
  width: 620px;
}
.dropdown-card__pastel {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex: none;
}
.dropdown-card__pastel--1 { background: var(--pastel-terracotta-bg); color: var(--pastel-terracotta-fg); }
.dropdown-card__pastel--2 { background: var(--pastel-pine-bg); color: var(--pastel-pine-fg); }
.dropdown-card__pastel--3 { background: var(--pastel-sand-bg); color: var(--pastel-sand-fg); }
.dropdown-card__pastel--4 { background: var(--pastel-lavender-bg); color: var(--pastel-lavender-fg); }
.dropdown-card__pastel--5 { background: var(--pastel-peach-bg); color: var(--pastel-peach-fg); }
.dropdown-card__pastel--6 { background: var(--pastel-slate-bg); color: var(--pastel-slate-fg); }

/* Dropdown Footer Banner */
.dropdown-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-muted);
}
.dropdown-footer a {
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .18s;
}
.dropdown-footer a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

/* Right Nav CTA Cluster */
.nav__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.nav__phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  background: var(--paper-2);
  border: 1px solid var(--rule-2);
  padding: 8px 14px;
  border-radius: var(--r-full);
  transition: all .2s;
  text-decoration: none;
}
.nav__phone-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #ffffff;
}
.nav__phone-badge i {
  color: var(--accent);
  font-size: 12px;
}
.btn-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  animation: pulse 1.8s infinite;
  display: inline-block;
  margin-right: 3px;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .nav__links { gap: 0; }
  .nav__menu-item > a, .nav__link { padding: 8px 10px; font-size: 13.5px; }
  .nav__dropdown--services { width: 500px; }
  .nav__dropdown--industries { width: 520px; }
}

@media (max-width: 1024px) {
  .topbar { display: none; }
  .nav__links, .nav__phone-badge { display: none; }
  .burger { display: grid; }
}


/* ==========================================================================
   PERFECT HERO SECTION ALIGNMENT & PROPORTION (1:1 Balanced Ratio)
   ========================================================================== */
.hero {
  padding-top: 2.5rem;
  padding-bottom: clamp(40px, 4.5vw, 72px);
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(36px, 4vw, 68px);
  align-items: center;
}

/* Left Column Restraint & Proportional Hierarchy */
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(32px, 2.75vw, 50px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 800;
  margin: 18px 0 0;
  max-width: 32ch;
}

.hero .lead {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--text-body);
  margin-top: 18px;
  max-width: 54ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper-2);
  border: 1px solid var(--rule-2);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
}
.hero__stars {
  color: #f59e0b;
  letter-spacing: 1px;
}
.hero__rating-text {
  font-weight: 700;
  color: var(--text-main);
}
.hero__rating-text span {
  font-weight: 500;
  color: var(--text-muted);
}

.hero__facts {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--rule-2);
  padding-top: 20px;
}
.hero__fact b {
  display: block;
  font-family: var(--display);
  font-size: clamp(20px, 1.5vw, 25px);
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.hero__fact span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}
.hero__facts--4 {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 860px) {
  .hero__facts--4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}
@media (max-width: 480px) {
  .hero__facts--4 {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }
}

/* Right Column - High-Contrast AI Command Terminal */
.report {
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #11151e 0%, #0a0d13 100%);
  color: #f8fafc;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(217, 84, 30, 0.14);
  padding: clamp(24px, 2.5vw, 36px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.report::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3.5px;
  background: linear-gradient(90deg, #f97316, #eab308, #10b981);
}

.report__window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.terminal-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.terminal-dot--red    { background: #ef4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.6); }
.terminal-dot--yellow { background: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.6); }
.terminal-dot--green  { background: #10b981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }

.terminal-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.terminal-live-pill {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #34d399;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.45);
  border-radius: 999px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.terminal-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseLiveDot 1.8s infinite ease-in-out;
}
@keyframes pulseLiveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.terminal-models-tag {
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Interactive Animated Typewriter Query Bar */
.terminal-query-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

.terminal-query-input {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
}

.terminal-query-icon {
  color: #f97316;
  font-size: 13px;
  flex-shrink: 0;
}

.terminal-prompt-prefix {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: #38bdf8;
  flex-shrink: 0;
}

.terminal-typed-text {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-typewriter-cursor {
  display: inline-block;
  margin-left: 2px;
  color: #f97316;
  font-weight: 900;
  font-size: 14px;
  animation: blinkCursor 0.9s infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.terminal-synth-badge {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

/* High-Contrast Dual Before & After Score Grid */
.report__dual-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
}

.report__score-box {
  display: flex;
  flex-direction: column;
}
.report__score-box--before {
  background: rgba(239, 68, 68, 0.14);
  border: 1.5px solid rgba(239, 68, 68, 0.45);
  border-radius: 10px;
  padding: 12px 14px;
}
.report__score-box--after {
  background: rgba(16, 185, 129, 0.16);
  border: 1.5px solid rgba(16, 185, 129, 0.55);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: right;
}

.report__score-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.report__score-val {
  font-family: var(--display);
  font-size: clamp(30px, 2.5vw, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
}
.report__score-val--before {
  color: #ff6b6b;
}
.report__score-val--after {
  color: #34d399;
}

.report__score-sub {
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}
.report__score-sub--before {
  color: #fca5a5;
  display: flex;
  align-items: center;
  gap: 5px;
}
.report__score-sub--after {
  color: #a7f3d0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.report__score-arrow {
  color: #f97316;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.4));
}

/* High-Contrast Signal Progress Bars */
.bar-row {
  margin-top: 14px;
}
.bar-row__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}
.report .bar-row__name,
.bar-row__name {
  color: #ffffff !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.report .bar-row__val,
.bar-row__val {
  color: #34d399 !important;
  font-family: var(--mono);
  font-weight: 800;
  font-size: 12.5px;
}
.bar-row__val--orange {
  color: #f97316 !important;
}

.bar {
  height: 7px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  overflow: hidden;
}
.bar > i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #10b981, #34d399);
  transition: width 1s var(--ease);
}
.bar--mid > i {
  background: linear-gradient(90deg, #f97316, #fb923c);
}
.bar--good > i {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.report__foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.report__foot-note {
  font-size: 12.5px;
  font-weight: 600;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 {
    max-width: 100%;
  }
  .hero .lead {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .report__dual-score {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .report__score-arrow {
    transform: rotate(90deg);
  }
  .report__score-box--after {
    text-align: left;
  }
  .report__score-sub--after {
    justify-content: flex-start;
  }
  .terminal-query-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .terminal-query-input {
    width: 100%;
  }
}


/* ==========================================================================
   SUPERCHARGED NUMERICAL PROOF METRICS MATRIX
   Warm Bone + Burnt Orange Palette | 90% Width (up to 1720px)
   ========================================================================== */
.metrics-section {
  padding: clamp(48px, 5vw, 76px) 0;
  background: var(--paper);
}

.metrics-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
}

.metric-card {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  padding: clamp(26px, 2.5vw, 36px) clamp(22px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.metric-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}
.metric-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: transparent;
  transition: background .2s var(--ease);
}
.metric-card:hover::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.metric-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.metric-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-wash);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all .2s;
}
.metric-card:hover .metric-card__icon {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.06);
}
.metric-card__badge {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: var(--r-full);
  background: var(--pine-wash);
  color: var(--pine);
  border: 1px solid rgba(31, 95, 78, 0.22);
}

.metric-card__num {
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
  color: var(--text-main);
  margin-bottom: 12px;
}
.metric-card__num .accent {
  color: var(--accent);
}

.metric-card__title {
  font-family: var(--display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.25;
}
.metric-card__desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.55;
  flex: 1;
}

.metric-card__footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.metric-card__footer b {
  color: var(--accent);
  font-weight: 700;
}

/* ==========================================================================
   EXPANDED WEB DEVELOPMENT & AI INTEGRATION SERVICE CARDS
   ========================================================================== */
.svc-engine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 42px);
  margin-top: clamp(36px, 4vw, 52px);
}

.svc-engine-card {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  padding: clamp(32px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.svc-engine-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.svc-engine-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.svc-engine-card__pill {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-wash);
  padding: 5px 12px;
  border-radius: var(--r-full);
}
.svc-engine-card h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.svc-engine-card p.svc-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 24px;
}

/* Tech tag pills */
.svc-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}
.svc-tag {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: var(--paper-2);
  color: var(--text-body);
  border: 1px solid var(--rule-2);
}

/* High-Contrast Ticks on Light Service Engine Cards */
.svc-engine-card .local__ticks,
.svc-subcard .local__ticks {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}
.svc-engine-card .local__ticks li,
.svc-subcard .local__ticks li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body) !important;
}
.svc-engine-card .local__ticks li::before,
.svc-subcard .local__ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 15px;
}
.svc-engine-card .local__ticks b,
.svc-subcard .local__ticks b {
  color: var(--text-main) !important;
  font-weight: 800 !important;
}

/* ==========================================================================
   DEDICATED SERVICE PAGES (Web Dev & AI Integration)
   ========================================================================== */
.service-hero {
  padding: clamp(56px, 6vw, 96px) 0 clamp(44px, 5vw, 76px);
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(36px, 4vw, 72px);
  align-items: center;
}

.tech-stack-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.tech-box {
  background: #ffffff;
  border: 1px solid var(--rule-2);
  border-radius: var(--r-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.tech-box:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.tech-box b {
  font-size: 14.5px;
  color: var(--text-main);
}
.tech-box span {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   ALIGNED MEGA FOOTER (Header & Footer Geometry Sync)
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--on-ink);
  padding: clamp(64px, 7vw, 100px) 0 32px;
  border-top: 1px solid var(--rule-ink);
  position: relative;
}
.footer__inner {
  width: 90%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.footer__grid-5 {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
  padding-bottom: clamp(48px, 5vw, 72px);
  border-bottom: 1px solid var(--rule-ink);
}

.footer__brand {
  display: flex;
  flex-direction: column;
}
.footer__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--on-ink-dim);
  margin: 18px 0 24px;
  max-width: 38ch;
}

.footer__hotline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 16px;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  width: fit-content;
  transition: all .2s;
  margin-bottom: 18px;
}
.footer__hotline:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer__col h5 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  font-size: 14px;
  color: var(--on-ink-dim);
  transition: all .18s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__col a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer__bottom-aligned {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  font-size: 13px;
  color: var(--on-ink-dim);
  flex-wrap: wrap;
}
.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__bottom-links a {
  color: var(--on-ink-dim);
  transition: color .18s;
}
.footer__bottom-links a:hover {
  color: var(--accent);
}

/* Responsive Grid Overrides */
@media (max-width: 1280px) {
  .metrics-matrix { grid-template-columns: repeat(2, 1fr); }
  .footer__grid-5 { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .service-hero__grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .svc-engine-grid { grid-template-columns: 1fr; }
  .footer__grid-5 { grid-template-columns: repeat(2, 1fr); }
  .tech-stack-matrix { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .metrics-matrix { grid-template-columns: 1fr; }
  .footer__grid-5 { grid-template-columns: 1fr; }
  .tech-stack-matrix { grid-template-columns: 1fr; }
  .footer__bottom-aligned { flex-direction: column; align-items: flex-start; gap: 14px; }
}


/* ==========================================================================
   HERO PILL BADGE & ATTRACTIVE CLIENT CONVERSION
   ========================================================================== */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid var(--accent-line);
  padding: 5px 16px 5px 6px;
  border-radius: var(--r-full);
  box-shadow: 0 2px 8px rgba(217, 84, 30, 0.12);
  transition: all .2s var(--ease);
  text-decoration: none;
  color: var(--text-main);
}
.hero-pill-badge:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(217, 84, 30, 0.22);
  transform: translateY(-1px);
}
.hero-pill-badge__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #d9541e 0%, #b44210 100%);
  color: #ffffff;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.hero-pill-badge__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}
.hero-pill-badge__arrow {
  color: var(--accent);
  font-size: 11px;
  transition: transform .2s var(--ease);
}
.hero-pill-badge:hover .hero-pill-badge__arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   HORIZONTAL BUTTON ALIGNMENT FOR "LOOKING FOR A SPECIALIZED SOLUTION"
   ========================================================================== */
.ind-custom {
  margin-top: 48px;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(32px, 3.6vw, 52px);
  color: var(--on-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: var(--shadow-dark);
}
.ind-custom .btn-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  flex-shrink: 0 !important;
  flex-wrap: nowrap !important;
}
.ind-custom .btn-row .btn {
  margin: 0 !important;
  white-space: nowrap !important;
  height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
@media (max-width: 960px) {
  .ind-custom {
    flex-direction: column;
    align-items: flex-start;
  }
  .ind-custom .btn-row {
    flex-wrap: wrap !important;
    width: 100%;
  }
}
@media (max-width: 520px) {
  .ind-custom .btn-row {
    flex-direction: column !important;
  }
  .ind-custom .btn-row .btn {
    width: 100% !important;
  }
}

/* ==========================================================================
   DYNAMIC STICKY SCROLL SECTION (01 / The Market Shift)
   ========================================================================== */
.shift-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: start;
  position: relative;
}
.shift-sticky-panel {
  position: sticky;
  top: 100px;
  align-self: start;
  padding-bottom: 24px;
}
.shift-sticky-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.shift-tracker {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  margin-top: 6px;
}
.shift-tracker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.shift-tracker__label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
}
.shift-tracker__counter {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--accent);
}
.shift-tracker__bar {
  height: 6px;
  background: var(--rule-3);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 12px;
}
.shift-tracker__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #b44210 100%);
  border-radius: 99px;
  transition: width .25s ease-out;
}
.shift-tracker__pills {
  display: flex;
  gap: 6px;
}
.shift-pill {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 0;
  border-radius: var(--r-sm);
  background: var(--paper-2);
  color: var(--text-light);
  border: 1px solid var(--rule);
  transition: all .2s;
  cursor: pointer;
}
.shift-pill.is-active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 2px 6px rgba(217, 84, 30, 0.3);
}
.shift-sticky-cta {
  background: var(--paper);
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.shift-stream {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.shift-card {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.2vw, 42px);
  box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
  position: relative;
}
.shift-card.is-active,
.shift-card:hover {
  border-color: var(--accent-line);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.shift-card--solution {
  background: #ffffff;
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px rgba(217, 84, 30, 0.12);
}
.shift-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.shift-card__num {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-wash);
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.shift-card__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.shift-card h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 12px;
}
.shift-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
}
.shift-card__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 16px;
  background: var(--paper-2);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-md);
  font-size: 13.5px;
  color: var(--text-main);
}
@media (max-width: 1024px) {
  .shift-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .shift-sticky-panel {
    position: static;
  }
}

/* ==========================================================================
   REDESIGNED SECTION 04: LOCAL & GOOGLE MAPS DOMINANCE (END-TO-END)
   ========================================================================== */
.local-e2e-ribbon {
  background: var(--ink);
  border-radius: var(--r-xl);
  border: 1px solid var(--rule-ink);
  padding: clamp(28px, 3.2vw, 44px);
  color: var(--on-ink);
  margin-bottom: 36px;
  box-shadow: var(--shadow-dark);
}
.local-e2e-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule-ink);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 14px;
}
.local-e2e-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.e2e-step {
  display: flex;
  flex-direction: column;
}
.e2e-step__num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(217, 84, 30, 0.15);
  border: 1px solid rgba(217, 84, 30, 0.3);
  width: fit-content;
  padding: 2px 9px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.e2e-step__title {
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.e2e-step__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--on-ink-dim);
  margin: 0;
}

/* GBP Showcase Grid */
.gbp-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

/* Photorealistic GBP Mobile Card */
.gbp-card {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.gbp-card__topbar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule-2);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.gbp-browser-dots {
  display: flex;
  gap: 5px;
}
.gbp-browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rule-3);
}
.gbp-search-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--rule);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  color: var(--text-body);
  flex: 1;
  max-width: 380px;
}
.gbp-g-icon {
  font-weight: 900;
  font-family: var(--display);
  color: #4285f4;
  font-size: 13px;
}
.gbp-verified-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--pine);
  background: var(--pine-wash);
  padding: 4px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.gbp-card__body {
  padding: clamp(24px, 2.8vw, 36px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gbp-pack-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.gbp-rank-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #d9541e 0%, #b44210 100%);
  color: #ffffff;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.gbp-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pine-wash);
  color: var(--pine);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(31,95,78,0.25);
}

.gbp-biz-title {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gbp-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.gbp-score {
  font-family: var(--mono);
  font-weight: 800;
  font-size: 15px;
  color: var(--text-main);
}
.gbp-stars {
  color: #f59e0b;
  font-size: 14px;
}
.gbp-review-count {
  font-weight: 600;
}

.gbp-biz-details {
  margin: 18px 0;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-md);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-body);
}

.gbp-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.gbp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 700;
  background: var(--paper-2);
  color: var(--text-main);
  border: 1px solid var(--rule);
  transition: all .2s;
}
.gbp-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.gbp-btn--primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.gbp-btn--primary:hover {
  background: #b44210;
  color: #ffffff;
}

.gbp-metrics-strip {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule-2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gbp-metric-item {
  display: flex;
  flex-direction: column;
}
.gbp-metric-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
}
.gbp-metric-val {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  margin: 2px 0;
}
.gbp-metric-sub {
  font-size: 11px;
  color: var(--text-light);
}

/* Col 2: 25-Node GeoGrid Radar Card */
.geogrid-card {
  background: var(--ink);
  border: 1px solid var(--rule-ink);
  border-radius: var(--r-xl);
  padding: clamp(24px, 2.8vw, 36px);
  color: var(--on-ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-dark);
}
.geogrid-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-ink);
  gap: 12px;
}
.geogrid-radar-view {
  position: relative;
  background: #191612;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  margin: 20px 0;
  display: grid;
  place-items: center;
  min-height: 260px;
}
.radar-map-roads {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(217, 84, 30, 0.08) 0%, transparent 65%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  pointer-events: none;
}
.radar-map-water {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: rgba(96, 165, 250, 0.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.radar-center-hub {
  position: absolute;
  bottom: 10px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.radar-pins-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 1.4vw, 16px);
  position: relative;
  z-index: 2;
}
.radar-pin {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #15803d;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
  position: relative;
  transition: transform .2s var(--ease);
}
.radar-pin:hover {
  transform: scale(1.15);
}
.radar-pin--center {
  background: #16a34a;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.6);
}
.radar-pin--hq {
  background: var(--accent);
  box-shadow: 0 0 16px rgba(217, 84, 30, 0.8);
}
.radar-pin--hq i {
  position: absolute;
  top: -8px;
  right: -4px;
  font-size: 10px;
  color: #f59e0b;
}
.radar-num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
}

.geogrid-card__footer {
  padding-top: 16px;
  border-top: 1px solid var(--rule-ink);
}

/* Local Stats Row */
.local-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.local-stat-box {
  background: var(--paper-2);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.local-stat-box b {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 4px;
}
.local-stat-box span {
  font-size: 12.5px;
  color: var(--text-body);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .local-e2e-steps { grid-template-columns: repeat(2, 1fr); }
  .gbp-showcase-grid { grid-template-columns: 1fr; }
  .local-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .local-e2e-steps { grid-template-columns: 1fr; }
  .local-stats-row { grid-template-columns: 1fr; }
  .gbp-metrics-strip { grid-template-columns: 1fr; }
}



/* ==========================================================================
   ANIMATED & ATTRACTIVE RESULTS LISTINGS (results.html)
   ========================================================================== */
.teardown-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 40px;
}

.teardown-card {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.teardown-card:hover {
  border-color: var(--accent-line);
  box-shadow: 0 20px 48px rgba(20, 18, 15, 0.09), 0 0 0 1px rgba(217, 84, 30, 0.25);
  transform: translateY(-4px);
}

/* Card Header Strip */
.teardown-card__head {
  padding: 18px clamp(20px, 2.8vw, 36px);
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.teardown-card__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.teardown-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}
.teardown-avatar--1 { background: linear-gradient(135deg, #d9541e 0%, #b44210 100%); }
.teardown-avatar--2 { background: linear-gradient(135deg, #1f5f4e 0%, #164639 100%); }
.teardown-avatar--3 { background: linear-gradient(135deg, #6b5ae0 0%, #4f3ec9 100%); }
.teardown-avatar--4 { background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); }
.teardown-avatar--5 { background: linear-gradient(135deg, #d97706 0%, #b45309 100%); }
.teardown-avatar--6 { background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%); }

.teardown-brand-meta {
  display: flex;
  flex-direction: column;
}
.teardown-brand-name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}
.teardown-brand-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.teardown-head-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.teardown-win-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(217,84,30,0.12) 0%, rgba(217,84,30,0.06) 100%);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}
.teardown-win-pill .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s infinite;
}

/* Card Main 2-Column Body */
.teardown-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  align-items: stretch;
}

/* Left Narrative Column */
.teardown-narrative {
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
}
.teardown-narrative h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 16px;
}

.teardown-challenge-box {
  background: var(--paper-2);
  border-left: 3.5px solid #f59e0b;
  padding: 12px 16px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
}
.teardown-challenge-box b {
  color: var(--text-main);
}

.teardown-fixes {
  margin: 18px 0 24px;
}
.teardown-fixes__label {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.teardown-fixes__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.teardown-fix-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-md);
  padding: 11px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-body);
  transition: all .2s;
}
.teardown-fix-item:hover {
  border-color: var(--accent-line);
  background: #ffffff;
  transform: translateX(4px);
}
.teardown-fix-item i {
  color: var(--accent);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Testimonial Quote */
.teardown-quote {
  margin-top: auto;
  padding: 16px 18px;
  background: var(--ink);
  color: var(--on-ink);
  border-radius: var(--r-lg);
  position: relative;
  margin-bottom: 22px;
}
.teardown-quote__stars {
  color: #f59e0b;
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}
.teardown-quote__text {
  font-size: 13.5px;
  line-height: 1.6;
  font-style: italic;
  color: var(--on-ink);
  margin: 0 0 10px;
}
.teardown-quote__author {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: var(--on-ink-dim);
  display: block;
}

/* Right Proof Cockpit */
.teardown-cockpit {
  background: var(--paper-2);
  border-left: 1px solid var(--rule);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cockpit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--rule-2);
}
.cockpit-label {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
}
.cockpit-verified-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--pine);
  background: var(--pine-wash);
  padding: 3px 9px;
  border-radius: var(--r-full);
}

/* Hero KPI Highlight */
.cockpit-kpi {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cockpit-kpi-left {
  display: flex;
  flex-direction: column;
}
.cockpit-kpi-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
}
.cockpit-kpi-val {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  margin-top: 2px;
}
.cockpit-kpi-badge {
  background: var(--accent-wash);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--r-md);
  text-align: center;
}

/* Animated Comparative Delta Bars */
.cockpit-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.cockpit-bars .bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cockpit-bars .bar-row__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.cockpit-bars .bar-row__name {
  font-weight: 700;
  color: var(--text-main);
}
.cockpit-bars .bar-row__values {
  font-family: var(--mono);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bar-val-before {
  color: var(--text-light);
  text-decoration: line-through;
}
.bar-val-after {
  color: var(--accent);
  font-weight: 800;
}
.bar-track {
  height: 8px;
  background: var(--rule-3);
  border-radius: 99px;
  overflow: hidden;
  display: flex;
  position: relative;
}
.bar-fill {
  height: 100%;
  border-radius: 99px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.bar-fill--accent {
  background: linear-gradient(90deg, #d9541e 0%, #b44210 100%);
  box-shadow: 0 0 8px rgba(217, 84, 30, 0.4);
}
.bar-fill--pine {
  background: linear-gradient(90deg, #1f5f4e 0%, #164639 100%);
  box-shadow: 0 0 8px rgba(31, 95, 78, 0.4);
}

.cockpit-footer {
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .teardown-card__body {
    grid-template-columns: 1fr;
  }
  .teardown-cockpit {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
}



/* ==========================================================================
   4-COLUMN ALL-SECTIONS MEGA MENU (Industries)
   ========================================================================== */
.nav__dropdown--industries {
  width: 1060px;
  left: -180px;
  padding: 22px 24px 18px;
}

.mega-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mega-col {
  display: flex;
  flex-direction: column;
}

.mega-col__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 11px;
  margin-bottom: 8px;
  border-bottom: 1.5px solid var(--rule-2);
}

.mega-col__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}
.mega-col__icon--1 {
  background: var(--pastel-terracotta-bg);
  color: var(--pastel-terracotta-fg);
}
.mega-col__icon--2 {
  background: var(--pastel-pine-bg);
  color: var(--pastel-pine-fg);
}
.mega-col__icon--3 {
  background: var(--pastel-lavender-bg);
  color: var(--pastel-lavender-fg);
}
.mega-col__icon--4 {
  background: var(--pastel-sand-bg);
  color: var(--pastel-sand-fg);
}

.mega-col__title {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-main);
  line-height: 1.2;
}

.mega-col__sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.mega-col__links {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 9px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all .18s var(--ease);
  border: 1px solid transparent;
}
.mega-item:hover {
  background: var(--paper-2);
  border-color: var(--rule);
  transform: translateX(3px);
}

.mega-item i {
  font-size: 12px;
  color: var(--accent);
  margin-top: 3px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
  transition: transform .18s ease, color .18s ease;
}
.mega-item:hover i {
  transform: scale(1.15);
  color: var(--accent-2);
}

.mega-item__name {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  line-height: 1.3;
  transition: color .18s ease;
}
.mega-item:hover .mega-item__name {
  color: var(--accent);
}

.mega-item__desc {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  line-height: 1.35;
  margin-top: 1px;
}

@media (max-width: 1280px) {
  .nav__dropdown--industries {
    width: 920px;
    left: -140px;
  }
  .mega-industries-grid {
    gap: 14px;
  }
  .mega-item {
    padding: 6px 7px;
  }
  .mega-item__name {
    font-size: 12px;
  }
  .mega-item__desc {
    font-size: 10.5px;
  }
}



/* ==========================================================================
   ALIGNED 4-COLUMN FOOTER & CLEAN SINGLE-ROW BOTTOM BAR
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--on-ink);
  padding: clamp(64px, 6vw, 96px) 0 32px;
  border-top: 1px solid var(--rule-ink);
  position: relative;
}

.footer__inner {
  width: 90%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.footer__grid-4 {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(40px, 4.5vw, 60px);
  border-bottom: 1px solid var(--rule-ink);
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--on-ink-dim);
  margin: 18px 0 22px;
  max-width: 36ch;
}

.footer__hotline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  width: fit-content;
  transition: all .2s;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer__hotline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  color: var(--on-ink-dim);
  line-height: 1.6;
}
.footer__contact-info i {
  margin-right: 6px;
  width: 14px;
  text-align: center;
}

.footer__col h5 {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 20px;
  padding-top: 8px;
  border-bottom: 1.5px solid rgba(246, 241, 232, 0.12);
  padding-bottom: 10px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__col a {
  font-size: 14px;
  color: var(--on-ink-dim);
  transition: all .18s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.footer__col a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

/* Bottom Bar Aligned in One Clean Horizontal Row */
.footer__bottom-aligned {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  font-size: 13px;
  color: var(--on-ink-dim);
  flex-wrap: nowrap;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.footer__bottom-divider {
  opacity: 0.35;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer__bottom-links a {
  color: var(--on-ink-dim);
  text-decoration: none;
  transition: color .18s;
}
.footer__bottom-links a:hover {
  color: var(--accent);
}

@media (max-width: 1200px) {
  .footer__bottom-aligned {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 960px) {
  .footer__grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .footer__grid-4 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    white-space: normal;
  }
  .footer__bottom-divider {
    display: none;
  }
  .footer__bottom-links {
    flex-wrap: wrap;
    gap: 14px;
    white-space: normal;
  }
}

/* ==========================================================================
   PRODUCTION COPYRIGHT FOOTER BAR (Center-Aligned & Executive Polish)
   ========================================================================== */
.footer__copyright-bar {
  margin-top: clamp(40px, 4.5vw, 64px);
  padding-top: 36px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.footer__cr-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.footer__cr-legal {
  color: #94a3b8;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer__cr-legal strong {
  color: #f8fafc;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer__cr-tagline {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.footer__cr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.footer__cr-sep {
  color: rgba(255, 255, 255, 0.18);
  font-weight: 600;
  font-size: 11px;
}

.footer__cr-link {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}

.footer__cr-link:hover {
  color: var(--accent, #f97316);
}

@media (max-width: 860px) {
  .footer__copyright-bar {
    padding-top: 28px;
    padding-bottom: 24px;
    margin-top: 36px;
  }
  .footer__cr-inner {
    gap: 10px;
  }
  .footer__cr-nav {
    gap: 8px 12px;
    font-size: 11.5px;
    border-radius: 12px;
    padding: 10px 14px;
  }
}



/* ==========================================================================
   WHAT'S INSIDE / 12-PILLAR DELIVERABLES (deliverables.html & index.html)
 /* ==========================================================================
   12-PILLAR DELIVERABLES PAGE (Clean, Modern, Responsive 2-Column Architecture)
   ========================================================================== */

/* Hero Statistics Strip */
.deliv-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 16px 28px;
  background: var(--paper-2);
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  max-width: 960px;
  margin-inline: auto;
}
.deliv-hero-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.deliv-hero-stat-num {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}
.deliv-hero-stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.25;
}
.deliv-hero-stat-sep {
  width: 1px;
  height: 24px;
  background: var(--rule);
}

/* Sticky Phase Navigation Bar */
.phase-nav-sticky {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--rule-2);
  padding: 12px 0;
  margin-bottom: 48px;
  transition: all .2s ease;
}
.phase-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.phase-nav-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.phase-nav-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  text-decoration: none;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  transition: all .18s var(--ease);
}
.phase-nav-tab:hover {
  background: #ffffff;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.phase-nav-tab.is-active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(217, 84, 30, 0.25);
}
.phase-nav-tab.is-active i {
  color: #ffffff !important;
}

/* Phase Container Sections */
.deliv-phase-block {
  margin-bottom: 72px;
  scroll-margin-top: 150px;
}
.deliv-phase-header {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--rule-2);
}
.deliv-phase-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.deliv-phase-badge {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.deliv-phase-badge--attract { background: var(--accent-wash); color: var(--accent); border: 1px solid var(--accent-line); }
.deliv-phase-badge--engage { background: var(--pine-wash); color: var(--pine); border: 1px solid rgba(31, 95, 78, 0.2); }
.deliv-phase-badge--convert { background: rgba(107, 90, 224, 0.12); color: #6b5ae0; border: 1px solid rgba(107, 90, 224, 0.25); }

.deliv-phase-header h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  line-height: 1.2;
}
.deliv-phase-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 680px;
  margin-top: 6px;
  line-height: 1.5;
}

/* 2-Column Responsive Deliverables Grid */
.deliv-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 32px);
  align-items: stretch;
}

/* Individual Deliverable Card */
.deliv-card {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
  scroll-margin-top: 140px;
}
.deliv-card:hover {
  border-color: var(--accent-line);
  box-shadow: 0 16px 36px rgba(20, 18, 15, 0.08);
  transform: translateY(-3px);
}

.deliv-card__top {
  padding: 24px 28px 20px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
.deliv-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.deliv-chapter-badge {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--accent);
}
.deliv-timeline-badge {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--paper-3);
  padding: 3px 8px;
  border-radius: var(--r-full);
}

.deliv-card__title-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.deliv-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Gradients for all 12 modules */
.deliv-icon--1 { background: linear-gradient(135deg, #d9541e, #b44210); }
.deliv-icon--2 { background: linear-gradient(135deg, #1f5f4e, #164639); }
.deliv-icon--3 { background: linear-gradient(135deg, #6b5ae0, #4f3ec9); }
.deliv-icon--4 { background: linear-gradient(135deg, #0284c7, #0369a1); }
.deliv-icon--5 { background: linear-gradient(135deg, #d97706, #b45309); }
.deliv-icon--6 { background: linear-gradient(135deg, #059669, #047857); }
.deliv-icon--7 { background: linear-gradient(135deg, #e11d48, #be123c); }
.deliv-icon--8 { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.deliv-icon--9 { background: linear-gradient(135deg, #ea580c, #c2410c); }
.deliv-icon--10 { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.deliv-icon--11 { background: linear-gradient(135deg, #0d9488, #0f766e); }
.deliv-icon--12 { background: linear-gradient(135deg, #4f46e5, #3730a3); }

.deliv-card__title-row h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0;
}
.deliv-card__subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 4px;
}

.deliv-card__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.deliv-intro-p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* What We Ship Box */
.deliv-ship-box {
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 18px 20px;
}
.deliv-ship-title {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.deliv-ship-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.deliv-ship-list li {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.deliv-check {
  color: var(--pine);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}
.deliv-ship-list b {
  color: var(--text-main);
}

/* Revenue Impact Callout */
.deliv-impact-box {
  background: var(--paper-2);
  border-left: 3.5px solid var(--accent);
  padding: 14px 18px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.deliv-impact-head {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.deliv-impact-box p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-body);
  margin: 0;
}

/* Verifiable Shipped Artifact Footer */
.deliv-card__foot {
  padding: 14px 28px;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  margin-top: auto;
}
.deliv-artifact-label {
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.deliv-artifact-badge {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-wash);
  padding: 3px 9px;
  border-radius: var(--r-sm);
  border: 1px solid var(--accent-line);
}

/* FAQ Section Styling */
.deliv-faq-section {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid var(--rule-2);
}

/* Responsive overrides */
@media (max-width: 980px) {
  .deliv-grid-2 {
    grid-template-columns: 1fr;
  }
  .phase-nav-inner {
    justify-content: center;
  }
  .deliv-card__top,
  .deliv-card__body,
  .deliv-card__foot {
    padding-inline: 20px;
  }
}


/* ==========================================================================
   HOMEPAGE DELIVERABLES PREVIEW SECTION (#deliverables)
   ========================================================================== */
.deliv-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.deliv-phase-card {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
}
.deliv-phase-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.deliv-phase-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--rule-2);
  margin-bottom: 18px;
}
.deliv-phase-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #ffffff;
  flex-shrink: 0;
}
.deliv-phase-badge--1 { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%); }
.deliv-phase-badge--2 { background: linear-gradient(135deg, var(--pine) 0%, #164639 100%); }
.deliv-phase-badge--3 { background: linear-gradient(135deg, #6b5ae0 0%, #4f3ec9 100%); }

.deliv-phase-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}
.deliv-phase-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.deliv-phase-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.deliv-phase-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-body);
}
.deliv-phase-item span.num {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--accent);
  background: var(--paper-2);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.deliv-phase-card__btn {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.deliv-phase-card__btn a {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .18s;
}
.deliv-phase-card__btn a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .deliv-preview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



/* Services Dropdown Icon Accents (Focus on SEO, AI SEO, Web Dev, Deliverables) */
.dropdown-card__icon--seo { background: var(--accent-wash); color: var(--accent); }
.dropdown-card__icon--ai { background: var(--pine-wash); color: var(--pine); }
.dropdown-card__icon--web { background: rgba(107, 90, 224, 0.12); color: #6b5ae0; }
.dropdown-card__icon--deliv { background: var(--amber-wash); color: var(--amber); }

/* Ensure navbar spacing is balanced and generous */
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link,
.nav__menu-item > a {
  padding: 9px 15px;
  font-size: 14.5px;
  font-weight: 700;
}


/* ==========================================================================
   CHURCH & MINISTRY MOBILE APP DEVELOPMENT & 40-VERTICAL DIRECTORY STYLES
   ========================================================================== */

.church-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  margin-top: 16px;
}

@media (max-width: 991px) {
  .church-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Smartphone Mockup */
.phone-mockup {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: #0d121c;
  border: 10px solid #1a2233;
  border-radius: 44px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 40px rgba(224, 90, 58, 0.15);
  overflow: hidden;
  position: relative;
}

.phone-mockup__notch {
  width: 140px;
  height: 22px;
  background: #1a2233;
  margin: 0 auto;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-mockup__camera {
  width: 8px;
  height: 8px;
  background: #0a0d14;
  border-radius: 50%;
}

.phone-mockup__speaker {
  width: 36px;
  height: 4px;
  background: #0a0d14;
  border-radius: 2px;
}

.phone-mockup__screen {
  padding: 16px 18px 24px;
  background: #090d15;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.phone-app-church-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-app-church-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), #ff7b54);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.phone-app-church-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.phone-app-church-status {
  font-size: 10.5px;
  color: var(--pine-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-app-church-status .pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--pine-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.phone-app-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.phone-app-tab {
  flex: 1;
  text-align: center;
  padding: 6px 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
}

.phone-app-tab.is-active {
  background: var(--accent);
  color: #fff;
}

.phone-app-view {
  display: none;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  animation: fadeIn 0.3s ease;
}

.phone-app-view.is-active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.phone-player-card {
  background: #131926;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.phone-player-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  background: rgba(224, 90, 58, 0.2);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 8px;
}

.phone-player-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.phone-player-meta {
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.phone-player-scrubber {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-bottom: 12px;
  position: relative;
}

.phone-player-scrubber-progress {
  width: 65%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.phone-player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-player-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 11px;
}

.phone-player-btn--play {
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
}

.phone-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.phone-action-btn {
  background: #131926;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}

.phone-action-btn i {
  color: var(--accent);
  font-size: 14px;
}

/* Giving View in Mockup */
.tithe-card {
  background: linear-gradient(135deg, #131926, #1b2336);
  border: 1px solid rgba(224, 90, 58, 0.3);
  border-radius: 14px;
  padding: 14px;
}

.tithe-amount-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 10px 0;
}

.tithe-chip {
  padding: 8px 4px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tithe-chip.is-selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.tithe-pay-btn {
  width: 100%;
  padding: 10px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

/* Prayer Card in Mockup */
.prayer-item {
  background: #131926;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 12px;
}

.prayer-author {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
}

.prayer-text {
  font-size: 11.5px;
  color: var(--ink-secondary);
  line-height: 1.35;
}

.prayer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-size: 10px;
  color: var(--ink-muted);
}

/* Church Module Grid */
.church-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

@media (max-width: 991px) {
  .church-modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .church-modules-grid {
    grid-template-columns: 1fr;
  }
}

.church-module-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.church-module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 90, 58, 0.4);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.5), 0 0 24px rgba(224, 90, 58, 0.1);
}

.church-module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.church-module-card:hover::before {
  opacity: 1;
}

.church-module-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(224, 90, 58, 0.1);
  border: 1px solid rgba(224, 90, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 18px;
}

.church-module-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.church-module-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-secondary);
  margin-bottom: 18px;
  flex-grow: 1;
}

.church-module-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.church-module-features li {
  font-size: 12.5px;
  color: var(--ink-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.church-module-features li i {
  color: var(--pine-light);
  margin-top: 2px;
  font-size: 12px;
}

.church-module-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
}

/* Comparison Table */
.church-comp-wrap {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow-x: auto;
  margin-top: 32px;
}

.church-comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.church-comp-table th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.02);
}

.church-comp-table th.impixo-col {
  color: var(--accent);
  background: rgba(224, 90, 58, 0.08);
}

.church-comp-table td {
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--ink-secondary);
  border-bottom: 1px solid var(--rule);
}

.church-comp-table td.impixo-col {
  background: rgba(224, 90, 58, 0.03);
  font-weight: 600;
  color: var(--ink);
}

.church-comp-table tr:last-child td {
  border-bottom: none;
}

/* 40-Vertical Master Grid Styles */
.ind40-wrapper {
  margin-top: 36px;
}

.ind40-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}

.ind40-tab {
  padding: 9px 18px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ind40-tab:hover {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.25);
}

.ind40-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.ind40-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) {
  .ind40-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ind40-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ind40-grid {
    grid-template-columns: 1fr;
  }
}

.ind40-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.ind40-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 90, 58, 0.35);
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.4);
}

.ind40-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ind40-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.ind40-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.ind40-card__desc {
  font-size: 12px;
  color: var(--ink-secondary);
  line-height: 1.45;
  margin-bottom: 10px;
  flex-grow: 1;
}

.ind40-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.ind40-card__tag {
  font-size: 10.5px;
  padding: 2px 7px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  color: var(--ink-muted);
}



/* ==========================================================================
   ATTRACTIVE DELIVERABLES CHAPTER & PHASE REDESIGN STYLES
   ========================================================================== */

/* Phase Filter Control Ribbon */
.phase-filter-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 36px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 100px;
  max-width: fit-content;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
  position: sticky;
  top: 76px;
  z-index: 40;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.phase-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-secondary);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.phase-filter-btn:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.04);
}

.phase-filter-btn.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(224, 90, 58, 0.35);
}

.phase-filter-btn .phase-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  color: inherit;
}

.phase-filter-btn.is-active .phase-count {
  background: rgba(0,0,0,0.25);
  color: #fff;
}

/* Chapter Cards Stream */
.chapters-stream {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

.deliv-chapter-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 36px 38px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .deliv-chapter-card {
    padding: 24px 20px;
  }
}

.deliv-chapter-card:hover {
  border-color: rgba(224, 90, 58, 0.4);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.6), 0 0 24px rgba(224, 90, 58, 0.08);
}

.deliv-chapter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--rule);
  transition: background 0.3s ease;
}

.deliv-chapter-card[data-phase="attract"]::before {
  background: linear-gradient(180deg, var(--accent), #ff7b54);
}

.deliv-chapter-card[data-phase="engage"]::before {
  background: linear-gradient(180deg, var(--pine-light), #22c55e);
}

.deliv-chapter-card[data-phase="convert"]::before {
  background: linear-gradient(180deg, #8b5cf6, #6366f1);
}

/* Chapter Card Header Meta */
.deliv-chapter-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}

.deliv-chapter-meta-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.deliv-phase-pill {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.deliv-phase-pill--attract {
  background: rgba(224, 90, 58, 0.15);
  color: var(--accent);
  border: 1px solid rgba(224, 90, 58, 0.3);
}

.deliv-phase-pill--engage {
  background: rgba(74, 222, 128, 0.12);
  color: var(--pine-light);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.deliv-phase-pill--convert {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.deliv-num-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--ink);
}

.deliv-time-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  color: var(--ink-muted);
}

.deliv-artifact-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-secondary);
}

.deliv-artifact-tag i {
  color: var(--accent);
}

/* Chapter Title & Icon Row */
.deliv-chapter-title-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px;
}

.deliv-chapter-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -4px rgba(0,0,0,0.4);
}

.deliv-chapter-title-row h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 6px;
}

.deliv-chapter-subtitle {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.5;
}

/* Intro Paragraph */
.deliv-chapter-intro {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-secondary);
  margin-bottom: 24px;
}

/* What We Build Checklist */
.deliv-spec-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 24px;
}

.deliv-spec-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 16px;
}

.deliv-spec-heading i {
  color: var(--accent);
}

.deliv-ticks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.deliv-tick-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-secondary);
}

.deliv-tick-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  color: var(--pine-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Revenue Impact Banner */
.deliv-revenue-box {
  background: linear-gradient(135deg, rgba(224, 90, 58, 0.08), rgba(20, 25, 36, 0.5));
  border: 1px solid rgba(224, 90, 58, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.deliv-revenue-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(224, 90, 58, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.deliv-revenue-content {
  flex: 1;
}

.deliv-revenue-title {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 4px;
}

.deliv-revenue-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-secondary);
  margin: 0;
}

/* TechIndiaSoftware-Style "Industries We Serve" Grid */
.techindia-industries-section {
  padding: 72px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.techindia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

@media (max-width: 1100px) {
  .techindia-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .techindia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .techindia-grid {
    grid-template-columns: 1fr;
  }
}

.techindia-item {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.techindia-item:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 90, 58, 0.4);
  box-shadow: 0 10px 24px -6px rgba(0,0,0,0.5);
}

.techindia-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(224, 90, 58, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(224, 90, 58, 0.2);
}

.techindia-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.techindia-item:hover .techindia-name {
  color: var(--accent);
}



/* ==========================================================================
   FOXXR-STYLE 3-COLUMN SERVICE MENU & DUAL FOOTER CTA STYLES
   ========================================================================== */

/* Foxxr 3-Column Services Layout */
.foxxr-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .foxxr-services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.foxxr-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.foxxr-col-header {
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.foxxr-col-header--attract {
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, rgba(224, 90, 58, 0.08), var(--surface));
}

.foxxr-col-header--engage {
  border-left: 4px solid var(--pine-light);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.08), var(--surface));
}

.foxxr-col-header--convert {
  border-left: 4px solid #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), var(--surface));
}

.foxxr-col-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.foxxr-col-count {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-secondary);
}

/* Service Item Card */
.foxxr-service-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.foxxr-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 90, 58, 0.4);
  box-shadow: 0 14px 32px -8px rgba(0, 0, 0, 0.5);
}

.foxxr-service-card__top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.foxxr-service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.foxxr-service-card__icon--attract {
  background: rgba(224, 90, 58, 0.12);
  color: var(--accent);
  border: 1px solid rgba(224, 90, 58, 0.25);
}

.foxxr-service-card__icon--engage {
  background: rgba(74, 222, 128, 0.12);
  color: var(--pine-light);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.foxxr-service-card__icon--convert {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.foxxr-service-card__title-wrap {
  flex: 1;
}

.foxxr-service-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 3px;
  transition: color 0.2s ease;
}

.foxxr-service-card:hover .foxxr-service-card__title {
  color: var(--accent);
}

.foxxr-service-card__tagline {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.3;
}

.foxxr-service-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-secondary);
  margin-bottom: 14px;
  flex-grow: 1;
}

.foxxr-service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
}

.foxxr-service-card:hover .foxxr-service-card__footer {
  color: var(--ink);
}

.foxxr-service-card__footer i {
  color: var(--accent);
  transition: transform 0.2s ease;
}

.foxxr-service-card:hover .foxxr-service-card__footer i {
  transform: translateX(4px);
}

/* Foxxr-Style Dual Footer CTA */
.foxxr-cta-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .foxxr-cta-strip {
    grid-template-columns: 1fr;
  }
}

.foxxr-cta-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.45);
}

.foxxr-cta-card--pricing {
  background: linear-gradient(135deg, #121824 0%, #1a2335 100%);
  border: 1.5px solid rgba(217, 84, 30, 0.4);
}

.foxxr-cta-card--questions {
  background: linear-gradient(135deg, #0e1c1f 0%, #152b2f 100%);
  border: 1.5px solid rgba(46, 182, 125, 0.4);
}

.foxxr-cta-card h2 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.foxxr-cta-card p {
  font-size: 15.5px;
  color: #d2cbbf !important;
  line-height: 1.65;
  margin-bottom: 24px;
}

.foxxr-cta-card .phone-highlight {
  color: #34d399 !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.foxxr-cta-card .phone-highlight:hover {
  color: #ffffff !important;
}

.foxxr-cta-card .btn--outline,
.foxxr-cta-card .btn--dark-line {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-md);
  font-weight: 600;
  transition: all 0.2s ease;
}

.foxxr-cta-card .btn--outline:hover,
.foxxr-cta-card .btn--dark-line:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff !important;
}


/* ==========================================================================
   INDUSTRIES WE SERVE — REFINED 4-COLUMN VERTICAL DIRECTORY (IMPIXO DESIGN SYSTEM)
   ========================================================================== */

.industry-search-wrap {
  max-width: 720px;
  margin: 0 auto 36px;
  position: relative;
}

.industry-search-input-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper-card, #ffffff);
  border: 1.5px solid var(--rule-2, #ddd3c1);
  border-radius: var(--r-md, 12px);
  padding: 13px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.22s var(--ease);
}

.industry-search-input-box:focus-within {
  border-color: var(--accent, #d9541e);
  box-shadow: 0 0 0 4px var(--accent-wash, rgba(217,84,30,0.12));
}

.industry-search-input-box i {
  color: var(--text-muted);
  font-size: 16px;
}

.industry-search-input-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-main);
  width: 100%;
}

.industry-search-input-box input::placeholder {
  color: var(--text-light);
}

.industry-search-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.industry-chip {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-body);
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  padding: 6px 14px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all 0.18s var(--ease);
  box-shadow: 0 1px 3px rgba(20, 18, 15, 0.03);
}

.industry-chip:hover {
  background: var(--paper-2);
  border-color: var(--accent);
  color: var(--accent);
}

.industry-chip.is-active {
  background: var(--accent) !important;
  color: #ffffff !important;
  border-color: var(--accent) !important;
  box-shadow: 0 4px 14px rgba(217, 84, 30, 0.35) !important;
}

.hero__nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero__nav-pills .btn {
  background: #ffffff;
  border: 1.5px solid var(--rule-2);
  color: var(--text-main);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--r-full);
  box-shadow: 0 2px 6px rgba(20, 18, 15, 0.04);
  transition: all 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__nav-pills .btn:hover {
  background: #ffffff;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(217, 84, 30, 0.2);
}

.hero__nav-pills .btn--orange {
  background: linear-gradient(135deg, #d9541e 0%, #b44210 100%) !important;
  border-color: #d9541e !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(217, 84, 30, 0.3) !important;
}

.hero__nav-pills .btn--orange:hover {
  background: linear-gradient(135deg, #c44715 0%, #98360b 100%) !important;
  box-shadow: 0 8px 22px rgba(217, 84, 30, 0.4) !important;
  color: #ffffff !important;
}

#architecture-matrix .card {
  transition: all .25s var(--ease);
}

#architecture-matrix .card:hover {
  transform: translateY(-4px);
  border-color: var(--accent) !important;
  box-shadow: 0 14px 30px -6px rgba(217, 84, 30, 0.16), 0 4px 10px rgba(20, 18, 15, 0.04) !important;
}

.industry-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

@media (max-width: 1200px) {
  .industry-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .industry-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .industry-wrapper {
    grid-template-columns: 1fr;
  }
}

.industry-item {
  display: flex;
  align-items: center;
  background: var(--paper-card, #ffffff);
  border: 1px solid var(--rule-2, #ddd3c1);
  border-radius: var(--r-md, 12px);
  padding: 8px 14px 8px 10px;
  text-decoration: none;
  position: relative;
  transition: all 0.22s var(--ease);
  min-height: 58px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.industry-item:hover {
  border-color: var(--accent, #d9541e);
  transform: translateY(-2.5px);
  box-shadow: 0 12px 26px -6px rgba(217, 84, 30, 0.14), 0 3px 8px rgba(20, 18, 15, 0.04);
}

.market-icon-div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  min-width: 40px;
  flex-shrink: 0;
  border-radius: var(--r-sm, 8px);
  transition: transform 0.2s var(--ease);
}

.industry-item:hover .market-icon-div {
  transform: scale(1.08) rotate(3deg);
}

.market-icon-div i {
  font-size: 15px;
}

.industry-item h5 {
  color: var(--text-main, #14120f);
  font-size: 14.5px;
  font-weight: 700;
  margin: 0;
  padding: 0 10px;
  line-height: 1.28;
  letter-spacing: -0.01em;
  flex-grow: 1;
  transition: color 0.18s ease;
}

.industry-item:hover h5 {
  color: var(--accent, #d9541e);
}

.industry-item__arrow {
  color: var(--text-light, #938b7d);
  font-size: 11px;
  opacity: 0.4;
  transform: translateX(-4px);
  transition: all 0.2s var(--ease);
  margin-left: auto;
  flex-shrink: 0;
}

.industry-item:hover .industry-item__arrow {
  color: var(--accent, #d9541e);
  opacity: 1;
  transform: translateX(0);
}

/* 6 Warm Editorial Pastel Themes for the badge icons */
.industry-item:nth-child(6n+1) .market-icon-div {
  background-color: var(--pastel-terracotta-bg, #fbece2);
  color: var(--pastel-terracotta-fg, #d9541e);
  border: 1px solid rgba(217, 84, 30, 0.16);
}

.industry-item:nth-child(6n+2) .market-icon-div {
  background-color: var(--pastel-pine-bg, #e7f0ec);
  color: var(--pastel-pine-fg, #1f5f4e);
  border: 1px solid rgba(31, 95, 78, 0.16);
}

.industry-item:nth-child(6n+3) .market-icon-div {
  background-color: var(--pastel-sand-bg, #f6ede0);
  color: var(--pastel-sand-fg, #b47b2c);
  border: 1px solid rgba(180, 123, 44, 0.16);
}

.industry-item:nth-child(6n+4) .market-icon-div {
  background-color: var(--pastel-lavender-bg, #ede8f4);
  color: var(--pastel-lavender-fg, #6d538e);
  border: 1px solid rgba(109, 83, 142, 0.16);
}

.industry-item:nth-child(6n+5) .market-icon-div {
  background-color: var(--pastel-peach-bg, #faeade);
  color: var(--pastel-peach-fg, #c25e2e);
  border: 1px solid rgba(194, 94, 46, 0.16);
}

.industry-item:nth-child(6n+6) .market-icon-div {
  background-color: var(--pastel-slate-bg, #e5ecf2);
  color: var(--pastel-slate-fg, #2c5e7a);
  border: 1px solid rgba(44, 94, 122, 0.16);
}
