/* Purna Web — AI-Powered Growth Systems Company */

:root {
  --navy: #0B2D4D;
  --navy-2: #133A60;
  --navy-3: #1F4E7B;
  --teal: #2EB5B4;
  --teal-2: #28A09F;
  --teal-3: #4FC8C7;
  --green: #22C55E;
  --green-2: #16A34A;
  --white: #FFFFFF;
  --grey: #F5F7FA;
  --grey-2: #E8ECF2;
  --grey-3: #C6CEDB;
  --text: #1A2B3C;
  --text-muted: #5C6B7E;
  --line: #E2E8F0;
  --line-2: #CBD5E1;

  --shadow-sm: 0 1px 2px rgba(11, 45, 77, 0.06), 0 1px 3px rgba(11, 45, 77, 0.04);
  --shadow-md: 0 4px 16px rgba(11, 45, 77, 0.08), 0 2px 6px rgba(11, 45, 77, 0.04);
  --shadow-lg: 0 24px 48px rgba(11, 45, 77, 0.12), 0 8px 16px rgba(11, 45, 77, 0.06);
  --shadow-teal: 0 8px 24px rgba(46, 181, 180, 0.25);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --container: 1240px;
  --gutter: 32px;
  --section-y: 120px;

  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
::selection { background: var(--teal); color: var(--white); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* Type ─────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--teal);
}

.h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
}
.h1 .accent { color: var(--teal); }
.h1 .green { color: var(--green); }

.h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}
.h2 .accent { color: var(--teal); }

.h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 0;
}

.lead {
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--text);
  max-width: 60ch;
}

.muted { color: var(--text-muted); }
.label-mono {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.2s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--grey); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-arr svg { transition: transform 0.2s; }
.btn:hover .btn-arr svg, .btn-arr:hover svg { transform: translateX(3px); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(var(--reveal-y, 16px)); transition: opacity var(--reveal-dur, 0.7s) ease, transform var(--reveal-dur, 0.7s) cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* Grain overlay */
body.pw-grain::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 100;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.55; mix-blend-mode: multiply;
}

/* Button style overrides */
body.pw-btn-pill .btn { border-radius: 999px; }
body.pw-btn-square .btn { border-radius: 0; }

/* Nav style overrides */
body.pw-nav-flush .nav { background: var(--white); border-bottom: 1px solid var(--line); }
body.pw-nav-floating .nav { position: sticky; top: 12px; max-width: calc(var(--container) + 24px); margin: 12px auto 0; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
body.pw-no-sticky .nav { position: relative; top: auto; }

/* Dark hero override */
body.pw-dark-hero .hero { background: var(--navy); color: var(--white); }
body.pw-dark-hero .hero .h1 { color: var(--white); }
body.pw-dark-hero .hero .lead { color: rgba(255,255,255,0.78); }
body.pw-dark-hero .hero .hero-stats { border-top-color: rgba(255,255,255,0.15); }
body.pw-dark-hero .hero .hero-stat-num { color: var(--white); }
body.pw-dark-hero .hero .hero-stat-lbl { color: rgba(255,255,255,0.6); }
body.pw-dark-hero .hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* Heading scale */
.h1 { font-size: calc(clamp(40px, 5.6vw, 76px) * var(--heading-scale, 1)); }
.h2 { font-size: calc(clamp(32px, 3.6vw, 52px) * var(--heading-scale, 1)); }

/* Hero variants */
.hero-centered { text-align: center; }
.hero-centered .hero-grid { grid-template-columns: 1fr; max-width: 900px; margin: 0 auto; }
.hero-centered .lead { margin: 0 auto; }
.hero-centered .hero-stats { max-width: 720px; margin: 48px auto 0; }
.hero-centered .hero-cta { justify-content: center; }

.metric-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.metric-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.metric-row:last-child { border-bottom: 0; }
.metric-row .lbl { font-size: 14px; color: var(--text-muted); }
.metric-row .val { font-size: 32px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
.metric-row .val .accent { color: var(--green); }
.metric-row .val .teal { color: var(--teal); }
.metric-row .delta { font-family: var(--mono); font-size: 11px; color: var(--green); margin-top: 4px; display: block; }

.terminal-panel {
  background: #0A0E1A;
  border: 1px solid #1F2937;
  border-radius: var(--r-lg);
  padding: 24px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.65;
  color: #C6CEDB;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}
.terminal-panel .prompt { color: var(--teal-3); }
.terminal-panel .ok { color: var(--green); }
.terminal-panel .dim { color: #5C6B7E; }
.terminal-panel .hi { color: #FFF; }
.terminal-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid #1F2937;
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }

/* Nav ─────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav > .container,
.mega > .container {
  max-width: none;
  padding: 0 40px;
}
.nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  height: 88px;
}
@media (max-width: 720px) {
  .nav > .container,
  .mega > .container { padding: 0 20px; }
  .nav-row { height: 72px; gap: 16px; }
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; color: var(--navy); font-size: 19px; letter-spacing: -0.01em;
}
.brand-img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity 0.18s ease;
}
.brand:hover .brand-img { opacity: 0.85; }
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-tm { font-size: 11px; color: var(--text-muted); margin-left: 2px; font-weight: 500; }
@media (max-width: 720px) {
  .brand-img { height: 40px; }
}

.nav-links {
  display: flex; gap: 28px; justify-content: center;
  font-size: 14.5px; font-weight: 500;
}
.nav-links a {
  color: var(--text); transition: color 0.2s;
  position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--teal); border-radius: 1px;
}
.nav-cta { display: flex; gap: 10px; }

/* Mobile hamburger + drawer ───────────────── */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: drawerIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
@keyframes drawerIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1;
}
.mobile-drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.mobile-drawer-close:hover {
  background: var(--grey);
  border-color: var(--line-2);
}
.mobile-drawer-inner {
  padding: 8px 20px 80px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

.mobile-section { border-bottom: 1px solid var(--line); }
.mobile-section-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 4px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.mobile-section-trigger svg {
  transition: transform 0.2s ease;
  color: var(--text-muted);
}
.mobile-section.is-open .mobile-section-trigger svg { transform: rotate(180deg); }
.mobile-section.is-open .mobile-section-trigger { color: var(--teal); }
.mobile-section-body {
  padding: 4px 4px 18px;
  display: grid;
  gap: 18px;
}
.mobile-col-h {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.mobile-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.mobile-col li a {
  display: block;
  padding: 10px 8px;
  font-size: 15px;
  color: var(--text);
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-col li a:hover,
.mobile-col li a:active { background: var(--grey); color: var(--navy); }

.mobile-link {
  display: block;
  padding: 18px 4px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}

.mobile-cta {
  display: grid;
  gap: 10px;
  padding: 24px 0 16px;
}
.mobile-cta .btn { justify-content: center; padding: 14px 18px; font-size: 15px; }

.mobile-drawer-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.mobile-drawer-foot a { color: var(--teal); }
.mobile-drawer-foot a:hover { text-decoration: underline; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-row { grid-template-columns: 1fr auto; gap: 12px; }
  .mega { display: none; }
}
@media (min-width: 961px) {
  .mobile-drawer { display: none !important; }
  .nav-burger { display: none; }
}

/* Mobile-friendly catch-alls ───────────────────────────────────── */
@media (max-width: 720px) {
  /* Prevent any element from forcing horizontal scroll */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Inline-styled multi-column grids → stack on mobile.
     Components that genuinely need 2-cols on mobile use CSS classes
     (with their own media queries), not inline grid-template-columns. */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Grid children must be allowed to shrink below their min-content width
     so they don't blow out their parent column on narrow viewports. */
  .hero-grid > *,
  .blog-feature > *,
  .leak-grid > *,
  .svc-grid > *,
  .aud-grid > *,
  .process-grid > *,
  .outcome-grid > *,
  .foot-grid > * { min-width: 0; }

  /* Hide the right-hand decorative visual on phones — it can't compress
     gracefully into a 335px column. */
  .hero-grid > div:nth-child(2) { display: none; }

  /* Container padding tuned for narrow viewports */
  .container { padding: 0 20px; }

  /* Section padding compresses on mobile */
  .sec { padding: 56px 0; }
  .hero { padding: 60px 0 70px; }

  /* Hero stats stack to 2-up on phones (was 3-up) */
  .hero-stats { grid-template-columns: 1fr 1fr !important; gap: 18px !important; }

  /* Headlines shrink to fit */
  .h1 { font-size: clamp(32px, 8vw, 44px) !important; }
  .h2 { font-size: clamp(26px, 6.5vw, 34px) !important; }

  /* Buttons should never force overflow */
  .btn { white-space: normal; }

  /* Tables that exist anywhere — let them scroll inside their parent */
  table { display: block; overflow-x: auto; max-width: 100%; }

  /* Footer reflow */
  .foot-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* Nav dropdowns ──────────────── */
.nav-item { position: relative; }
.nav-trigger {
  background: none; border: none; cursor: pointer;
  font: inherit; color: var(--text);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 0; transition: color 0.2s;
  font-weight: 500;
}
.nav-trigger:hover, .nav-trigger.is-open, .nav-trigger.active { color: var(--navy); }
.nav-trigger.active { font-weight: 600; }

.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px -24px rgba(11, 31, 58, 0.18);
  animation: megaIn 0.18s ease-out;
}
@keyframes megaIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.mega-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(var(--mega-cols, 2), 1fr);
  gap: 56px;
  padding: 36px 0 40px;
}
.mega-intro { padding-right: 24px; border-right: 1px solid var(--line); }
.mega-intro h4 {
  font-size: 22px; font-weight: 600; color: var(--navy);
  margin: 12px 0 10px; letter-spacing: -0.01em;
  line-height: 1.25;
}
.mega-intro p {
  font-size: 14px; line-height: 1.55; color: var(--text-muted);
  margin-bottom: 18px;
}
.mega-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--teal-3);
  padding: 8px 0; transition: gap 0.2s, color 0.2s;
}
.mega-cta:hover { color: var(--navy); gap: 10px; }

.mega-col .mega-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li { margin: 0; }
.mega-col li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  font-size: 14.5px; font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.mega-col li a:hover { color: var(--navy); border-bottom-color: var(--line); }
.mega-arr {
  font-size: 14px; color: var(--text-muted);
  opacity: 0; transform: translateX(-4px);
  transition: opacity 0.18s, transform 0.18s, color 0.18s;
}
.mega-col li a:hover .mega-arr {
  opacity: 1; transform: translateX(0); color: var(--teal-3);
}

/* Hero slider ─────────────── */
.hero-slider { padding-top: 56px; padding-bottom: 80px; }
.hero-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.hero-tab {
  position: relative;
  display: flex; align-items: baseline; gap: 12px;
  padding: 18px 4px;
  background: none; border: 0; cursor: pointer;
  font: inherit; text-align: left;
  color: var(--text-muted);
  border-right: 1px solid var(--line);
  transition: color 0.2s, background 0.2s;
}
.hero-tab:last-child { border-right: 0; }
.hero-tab:hover { color: var(--navy); background: rgba(var(--teal-rgb), 0.04); }
.hero-tab.is-active { color: var(--navy); }
.hero-tab-num {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--text-muted);
}
.hero-tab.is-active .hero-tab-num { color: var(--teal-3); }
.hero-tab-lbl { font-size: 15px; font-weight: 600; }
.hero-tab-prog {
  position: absolute; left: 0; bottom: -1px; height: 2px;
  background: var(--teal);
  width: 0;
  animation: heroProg 6.5s linear forwards;
}
@keyframes heroProg { from { width: 0; } to { width: 100%; } }

.hero-slides { position: relative; min-height: 520px; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1; transform: none;
  pointer-events: auto;
  position: relative;
}

.hero-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 48px;
}
.hero-nav {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  cursor: pointer; color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.hero-nav:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-1px); }
.hero-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-2); border: 0; cursor: pointer; padding: 0;
  transition: background 0.18s, width 0.18s;
}
.hero-dot:hover { background: var(--text-muted); }
.hero-dot.is-active { background: var(--teal); width: 24px; border-radius: 4px; }

/* Lead-gen chat bubbles */
.chat-bubble {
  border-radius: var(--r-md);
  padding: 12px 14px;
  margin: 0 0 10px;
  max-width: 88%;
  font-size: 14px; line-height: 1.5;
  animation: bubbleIn 0.35s cubic-bezier(.2,.8,.2,1);
}
@keyframes bubbleIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.chat-who {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px; text-transform: uppercase;
  font-weight: 600;
}
.chat-voice {
  background: rgba(46, 181, 180, 0.22);
  border: 1px solid rgba(46, 181, 180, 0.45);
  color: #FFFFFF;
}
.chat-voice .chat-who { color: #4FC8C7; }
.chat-lead {
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-left: auto;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.chat-lead .chat-who { color: #64748B; }
.chat-sys {
  background: rgba(34, 197, 94, 0.22);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #FFFFFF;
  font-family: var(--mono);
  font-size: 12.5px;
  text-align: center;
  max-width: 100%;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Enterprise stack visual */
.enterprise {
  background: linear-gradient(180deg, #0B1426 0%, #0A1828 100%);
  color: #E2E8F0;
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid #1E2B45;
  box-shadow: var(--shadow-lg);
  font-family: var(--mono);
  position: relative;
  overflow: hidden;
}
.enterprise::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(var(--teal-rgb), 0.2), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.18), transparent 50%);
  pointer-events: none;
}
.ent-head {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding-bottom: 14px; margin-bottom: 18px;
  border-bottom: 1px solid #1E2B45;
  color: #CBD5E1;
}
.ent-meta { margin-left: auto; color: #64748B; font-size: 11px; }
.ent-stack { position: relative; display: flex; flex-direction: column; gap: 8px; }
.ent-row { display: grid; gap: 12px; }
.ent-row-cloud { grid-template-columns: repeat(3, 1fr); }
.ent-row-data { grid-template-columns: 1fr 1fr; }
.ent-row-app { grid-template-columns: 1fr; }
.ent-cloud {
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid #243657;
  border-radius: var(--r-md);
  text-align: center;
  font-size: 14px; font-weight: 600;
  color: #F1F5F9;
  letter-spacing: 0.04em;
  font-family: var(--sans);
  transition: background 0.2s;
}
.ent-cloud:hover { background: rgba(var(--teal-rgb), 0.12); border-color: rgba(var(--teal-rgb), 0.4); }
.ent-pipe {
  width: 1px; height: 18px;
  background: linear-gradient(180deg, transparent, #2EB5B4 40%, #2EB5B4 60%, transparent);
  margin: 0 auto;
  position: relative;
}
.ent-pipe::after {
  content: ""; position: absolute;
  width: 4px; height: 4px; border-radius: 50%;
  background: #2EB5B4; left: -1.5px;
  animation: pipeFlow 1.6s linear infinite;
}
@keyframes pipeFlow { from { top: 0; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } to { top: 100%; opacity: 0; } }
.ent-card {
  padding: 16px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid #243657;
}
.ent-card-tag {
  font-size: 10px; letter-spacing: 0.12em;
  color: #64748B; margin-bottom: 8px;
}
.ent-card-name {
  font-family: var(--sans);
  font-size: 16px; font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 14px;
}
.ent-bars { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.ent-bars i {
  flex: 1; background: linear-gradient(180deg, #38BDF8, #0EA5E9);
  border-radius: 2px;
  animation: entBar 2s ease-in-out infinite;
}
.ent-bars i:nth-child(2) { animation-delay: 0.2s; }
.ent-bars i:nth-child(3) { animation-delay: 0.4s; }
.ent-bars i:nth-child(4) { animation-delay: 0.6s; }
.ent-bars i:nth-child(5) { animation-delay: 0.8s; }
@keyframes entBar { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.7); } }
.ent-vec {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 3px;
  height: 40px;
}
.ent-vec span {
  background: rgba(124, 58, 237, 0.6);
  border-radius: 2px;
  animation: vecPulse 1.8s ease-in-out infinite;
}
.ent-vec span:nth-child(2) { animation-delay: 0.1s; }
.ent-vec span:nth-child(3) { animation-delay: 0.2s; }
.ent-vec span:nth-child(4) { animation-delay: 0.3s; }
.ent-vec span:nth-child(5) { animation-delay: 0.4s; }
.ent-vec span:nth-child(6) { animation-delay: 0.5s; }
.ent-vec span:nth-child(7) { animation-delay: 0.6s; }
.ent-vec span:nth-child(8) { animation-delay: 0.7s; }
@keyframes vecPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
.ent-app {
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(var(--teal-rgb), 0.18), rgba(124, 58, 237, 0.18));
  border: 1px solid rgba(var(--teal-rgb), 0.4);
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 14px; font-weight: 600;
  color: #F8FAFC;
  display: flex; align-items: center; gap: 8px;
}
.ent-app-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(var(--teal-rgb), 0.6);
  animation: dotPulse 2s ease-out infinite;
}
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(var(--teal-rgb), 0.6); } 70% { box-shadow: 0 0 0 8px rgba(var(--teal-rgb), 0); } 100% { box-shadow: 0 0 0 0 rgba(var(--teal-rgb), 0); } }
.ent-app-meta { margin-left: auto; font-family: var(--mono); font-size: 11px; color: #94A3B8; font-weight: 400; }
.enterprise .engine-foot {
  position: relative;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid #1E2B45;
  font-family: var(--mono); font-size: 11px;
}
.enterprise .engine-foot .label { color: #94A3B8; }
.enterprise .engine-foot .val { color: var(--green); font-weight: 600; }

/* TheraNote panel */
.thera-panel {
  background: #FAFAF7;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.thera-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: var(--navy); color: rgba(255,255,255,0.92);
  font-size: 13px; font-weight: 500;
}
.thera-bar-l { display: flex; align-items: center; gap: 8px; }
.thera-lock { font-size: 12px; }
.thera-bar-r { color: rgba(255,255,255,0.5); letter-spacing: 4px; font-size: 10px; }
.thera-body { padding: 20px; }
.thera-section { margin-bottom: 16px; }
.thera-h {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 10px;
}
.thera-row { display: flex; gap: 8px; flex-wrap: wrap; }
.thera-pill {
  font-family: var(--mono); font-size: 11px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  color: var(--text-muted);
}
.thera-pill-on { background: rgba(var(--green-rgb), 0.12); border-color: rgba(var(--green-rgb), 0.3); color: var(--green-2); }
.thera-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
  margin-bottom: 16px;
}
.thera-tag {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-3); font-weight: 600;
  margin-top: 12px; margin-bottom: 4px;
}
.thera-tag:first-child { margin-top: 0; }
.thera-line { font-size: 13.5px; line-height: 1.55; color: var(--text); }
.thera-line.thera-dim { color: var(--text-muted); font-style: italic; }
.thera-cursor { color: var(--teal-3); animation: blink 1s infinite; }
.thera-priv {
  display: flex; flex-direction: column; gap: 6px;
  padding: 12px 14px;
  background: rgba(var(--green-rgb), 0.06);
  border: 1px solid rgba(var(--green-rgb), 0.18);
  border-radius: var(--r-md);
}
.thera-priv-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--text);
  font-family: var(--mono);
}
.thera-priv-row > span:first-child { width: 16px; }
.thera-zero {
  margin-left: auto;
  background: rgba(var(--green-rgb), 0.18);
  color: var(--green-2);
  padding: 1px 8px; border-radius: 4px;
  font-weight: 600;
}
.thera-ok { margin-left: auto; color: var(--green); font-weight: 600; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Hero ────────────────────────────────── */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.84) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 90% 0%, rgba(46, 181, 180, 0.07), transparent 50%),
    radial-gradient(circle at 0% 80%, rgba(34, 197, 94, 0.05), transparent 45%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stat-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-num .accent { color: var(--teal); }
.hero-stat-num .green { color: var(--green); }
.hero-stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
  max-width: 22ch;
}

/* Hero engine demo ─────────────────────── */
.engine {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.engine::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 181, 180, 0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.1), transparent 50%);
  pointer-events: none;
}
.engine-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative; z-index: 2;
}
.engine-title {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  font-size: 13px; font-weight: 600;
}
.engine-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.05); }
}
.engine-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.engine-body { padding-top: 20px; position: relative; z-index: 2; min-height: 360px; }
.engine-step {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  animation: stepIn 0.5s forwards;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.engine-step:last-child { border-bottom: 0; }
.engine-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(46, 181, 180, 0.15);
  border: 1px solid rgba(46, 181, 180, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-3);
}
.engine-step.done .engine-icon { background: rgba(34, 197, 94, 0.18); border-color: rgba(34, 197, 94, 0.4); color: var(--green); }
.engine-text {
  color: var(--white);
  font-size: 13.5px;
  line-height: 1.4;
}
.engine-text .sub {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.engine-time {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.engine-step.done .engine-time { color: var(--green); }
.engine-foot {
  margin-top: 16px;
  padding: 16px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--r-md);
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2;
}
.engine-foot .label {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.engine-foot .val {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.engine-callout {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  z-index: 5;
}
.engine-callout.tl { top: -16px; left: -24px; transform: rotate(-3deg); }
.engine-callout.br { bottom: -16px; right: -24px; transform: rotate(2deg); }
.engine-callout .badge {
  background: var(--green);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Logo strip ──────────────────────────── */
.logos {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--grey);
}
.logos-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}
.logos-row .label-mono { color: var(--text-muted); }
.logos-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.logos-list .logo {
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  opacity: 0.55;
  letter-spacing: -0.005em;
  transition: opacity 0.2s;
  text-align: center;
}
.logos-list .logo:hover { opacity: 1; }

/* Sections ────────────────────────────── */
.sec { padding: var(--section-y) 0; position: relative; }
.sec-grey { background: var(--grey); }
.sec-navy { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.sec-navy::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 181, 180, 0.12), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.08), transparent 50%);
  pointer-events: none;
}
.sec-navy .container { position: relative; z-index: 2; }
.sec-navy .h2 { color: var(--white); }
.sec-navy .h2 .accent { color: var(--teal-3); }
.sec-navy .lead { color: rgba(255,255,255,0.8); }
.sec-navy .label-mono { color: var(--teal-3); }

.sec-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head .h2 { margin-bottom: 20px; }
.sec-head .lead { margin: 0 auto; }

.sec-head-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

/* Problem / leak section ──────────────── */
.leak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.leak-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.leak-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.leak-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.leak-num .pct {
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-transform: none;
}
.leak-card .h3 { margin-bottom: 8px; }
.leak-card p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* Services ────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  transition: all 0.3s;
  display: flex; flex-direction: column;
  min-height: 360px;
}
.svc-card.feat {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.svc-card.feat .h3 { color: var(--white); }
.svc-card.feat .muted { color: rgba(255,255,255,0.7); }
.svc-card.feat .svc-tag { background: rgba(46, 181, 180, 0.15); color: var(--teal-3); border-color: rgba(46, 181, 180, 0.3); }
.svc-card.feat .svc-num { color: var(--teal-3); }
.svc-card.feat .svc-icon { background: rgba(46, 181, 180, 0.15); color: var(--teal-3); }
.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.svc-card.feat:hover { border-color: var(--teal); box-shadow: 0 16px 40px rgba(11, 45, 77, 0.4); }
.svc-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(46, 181, 180, 0.12);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.svc-card .h3 { margin-bottom: 12px; }
.svc-card p { font-size: 15px; line-height: 1.55; margin: 0 0 24px; color: var(--text-muted); flex: 1; }
.svc-card.feat p { color: rgba(255,255,255,0.75); }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.svc-tag {
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grey);
  color: var(--text);
  border: 1px solid var(--line);
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--teal);
}
.svc-card.feat .svc-link { color: var(--teal-3); }

/* Process / how it works ──────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  position: relative;
}
.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  transition: all 0.3s;
}
.process-step:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}
.process-num {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  margin-bottom: 20px;
}
.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.process-step p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.process-time {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}

/* Outcomes / stats panel ──────────────── */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.outcome-cell {
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.outcome-cell:last-child { border-right: 0; }
.outcome-num {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 12px;
}
.outcome-num .accent { color: var(--green); }
.outcome-num .teal { color: var(--teal-3); }
.outcome-lbl {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
}

/* Audience / who it's for ─────────────── */
.aud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.aud-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.aud-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.aud-card.alt { background: var(--grey); }
.aud-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(46, 181, 180, 0.1);
  color: var(--teal-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.aud-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.aud-card.alt .aud-tag { background: rgba(34, 197, 94, 0.12); color: var(--green-2); }
.aud-card.alt .aud-tag::before { background: var(--green); }
.aud-card h3 { font-size: 28px; font-weight: 700; color: var(--navy); margin: 0 0 14px; letter-spacing: -0.015em; line-height: 1.15; }
.aud-card p { font-size: 15.5px; color: var(--text-muted); margin: 0 0 24px; }
.aud-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.aud-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text); align-items: flex-start; }
.aud-list svg { flex-shrink: 0; margin-top: 4px; color: var(--green); }

/* Testimonial ──────────────────────────── */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: """;
  position: absolute;
  top: -10px; left: 32px;
  font-family: Georgia, serif;
  font-size: 200px;
  line-height: 1;
  color: var(--teal);
  opacity: 0.15;
}
.quote-card blockquote {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 28px;
  letter-spacing: -0.012em;
  position: relative;
}
.quote-author {
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.quote-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}
.quote-name { font-weight: 600; color: var(--navy); font-size: 15px; }
.quote-role { font-size: 13.5px; color: var(--text-muted); }
.quote-stat {
  text-align: right;
  border-left: 1px solid var(--line);
  padding-left: 56px;
  position: relative;
}
.quote-stat-num {
  font-size: 64px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.025em;
  line-height: 1;
}
.quote-stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* TheraNote highlight ──────────────────── */
.thera-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 64px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.thera-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(46, 181, 180, 0.18), transparent 60%);
}
.thera-card > * { position: relative; z-index: 2; }
.thera-card .h2 { color: var(--white); margin-bottom: 20px; }
.thera-card .h2 .accent { color: var(--teal-3); }
.thera-card .lead { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.thera-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.thera-features li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.thera-features svg { flex-shrink: 0; margin-top: 3px; color: var(--green); }
.thera-mock {
  background: linear-gradient(180deg, #0F3157, #08243F);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
}
.thera-mock-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.thera-mock-head .privacy {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.thera-mock-line {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  margin-bottom: 10px;
}
.thera-mock-line.long { width: 100%; }
.thera-mock-line.med { width: 78%; }
.thera-mock-line.short { width: 52%; }
.thera-mock-line.teal { background: rgba(46, 181, 180, 0.4); }
.thera-mock-section-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-3);
  margin: 18px 0 10px;
  font-weight: 500;
}

/* FAQ ──────────────────────────────────── */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
  transition: padding 0.3s;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.faq-q {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grey);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), background 0.2s, color 0.2s;
  color: var(--navy);
}
.faq-item.open .faq-toggle { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.2,.8,.2,1), margin-top 0.3s;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}
.faq-item.open .faq-a { max-height: 360px; margin-top: 14px; }

/* CTA banner ──────────────────────────── */
.cta-banner {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 181, 180, 0.25), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.15), transparent 50%);
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner .h2 { color: var(--white); margin: 24px auto 20px; max-width: 18ch; }
.cta-banner .h2 .accent { color: var(--teal-3); }
.cta-banner .lead { color: rgba(255,255,255,0.75); margin: 0 auto 36px; }
.cta-banner .eyebrow { color: var(--teal-3); }
.cta-banner .eyebrow::before { background: var(--teal-3); }
.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* Footer ──────────────────────────────── */
.foot {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.foot-brand .brand { color: var(--white); margin-bottom: 16px; }
.foot-brand p { font-size: 14.5px; max-width: 32ch; margin: 0 0 24px; line-height: 1.55; }
.foot-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}
.foot-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14.5px; color: rgba(255,255,255,0.78); transition: color 0.2s; }
.foot-col a:hover { color: var(--teal-3); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bottom a:hover { color: var(--teal-3); }

/* Page intro */
.page-intro {
  padding: 80px 0 100px;
  background: var(--grey);
  border-bottom: 1px solid var(--line);
}
.page-intro .container {
  max-width: 920px;
  text-align: center;
}
.page-intro .h1 { margin: 24px 0; }
.page-intro .lead { margin: 0 auto; }
.page-logo {
  display: block;
  margin: 0 auto 24px;
  max-width: 280px;
  width: 100%;
  height: auto;
}

/* ─── HVAC Summer Landing Page (Meta ad LP) ───────────────────────── */

.lp-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.lp-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.lp-header .brand-mark {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grey);
  border-radius: 8px;
}
.lp-header .brand-mark svg { width: 18px; height: 18px; }
.lp-header-phone {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}
.lp-header-phone:hover {
  border-color: var(--teal);
  background: rgba(46,181,180,0.08);
}

/* Hero */
.lp-hero {
  position: relative;
  padding: 88px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.12), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(46, 181, 180, 0.10), transparent 50%);
  pointer-events: none;
}
.lp-hero .container { position: relative; z-index: 2; }
.lp-hero-inner { max-width: 820px; }

.lp-urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.55);
  color: #FCD34D;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 22px;
  backdrop-filter: blur(2px);
}
.lp-urgency-dot {
  width: 8px; height: 8px;
  background: #F59E0B;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25);
  animation: pulse 1.6s infinite;
}

.lp-h1 {
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 22px;
}
.lp-accent {
  background: linear-gradient(90deg, var(--teal-3), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-lead {
  font-size: 17.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 0 32px;
}
.lp-lead strong { color: var(--white); font-weight: 700; }

.lp-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  padding: 22px 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  width: fit-content;
}
.lp-hero-stat .v {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.lp-hero-stat .l {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.lp-cta-primary {
  font-size: 17px;
  padding: 16px 28px;
  box-shadow: 0 14px 28px rgba(46, 181, 180, 0.45);
}
.lp-hero-or {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}
.lp-hero-or a {
  color: var(--teal-3);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(79,200,199,0.4);
}
.lp-hero-or a:hover { color: var(--white); border-bottom-color: var(--white); }

.lp-trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

/* Sections */
.lp-section {
  padding: 80px 0;
}
.lp-grey { background: var(--grey); }
.lp-section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.lp-section-head .eyebrow { display: inline-block; }
.lp-eyebrow-warn { color: #B45309; }
.lp-eyebrow-warn::before { background: #F59E0B; }

/* Pain grid */
.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.lp-pain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid #EF4444;
  border-radius: var(--r-lg);
  padding: 26px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-pain-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.lp-pain-x {
  width: 32px; height: 32px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #EF4444;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
}
.lp-pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.lp-pain-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* Phone grid */
.lp-phone-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  justify-items: center;
}
.lp-phone-cell { display: flex; justify-content: center; }
.lp-package-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.lp-package-cta strong {
  display: block;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 4px;
}
.lp-package-cta span {
  font-size: 13.5px;
  color: #475569;
}

/* Timeline */
.lp-timeline-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  max-width: 1080px;
  margin: 0 auto;
}
.lp-timeline-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, transform 0.2s;
}
.lp-timeline-step:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.lp-timeline-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
}
.lp-timeline-text {
  font-size: 12.5px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.35;
}

/* Proof */
.lp-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.lp-proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
}
.lp-proof-stat .lp-proof-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
}
.lp-proof-stat .lp-proof-l {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.lp-proof-stat .lp-proof-name {
  font-size: 12px;
  color: #94A3B8;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.lp-proof-quote {
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  border-color: var(--navy-2);
  color: var(--white);
  text-align: left;
  padding: 32px 32px;
}
.lp-proof-q {
  font-size: 17px;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 16px;
}
.lp-proof-quote .lp-proof-name {
  font-size: 13px;
  color: var(--teal-3);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* Final CTA */
.lp-final-cta {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 50%, #1F4E7B 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.lp-final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 181, 180, 0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.12), transparent 55%);
  pointer-events: none;
}
.lp-final-cta .container { position: relative; z-index: 1; }
.lp-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.lp-final-cta .h2 { color: var(--white); }
.lp-final-cta .h2 .accent { color: var(--teal-3); }
.lp-final-cta .lead { color: rgba(255,255,255,0.85); }
.lp-final-cta .eyebrow-light { color: var(--teal-3); }
.lp-final-cta .eyebrow-light::before { background: var(--teal-3); }
.lp-final-bullets {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.lp-final-bullets li {
  font-size: 14.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.lp-final-meta {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.lp-final-meta-link {
  color: var(--teal-3);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
}
.lp-final-meta-link:hover { color: var(--white); }
.lp-final-calendar {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 12px;
  min-height: 740px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.lp-final-calendar iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: none;
}

/* Footer */
.lp-foot {
  background: #0B1B2E;
  color: rgba(255,255,255,0.6);
  padding: 28px 0;
}
.lp-foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-foot a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.lp-foot a:hover { color: var(--teal-3); }

/* Responsive */
@media (max-width: 1100px) {
  .lp-phone-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .lp-final-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .lp-hero { padding: 64px 0 80px; }
  .lp-hero-stats { grid-template-columns: 1fr; gap: 18px; padding: 18px 0; }
  .lp-pain-grid { grid-template-columns: 1fr; }
  .lp-phone-grid { grid-template-columns: 1fr; gap: 28px; }
  .lp-timeline-rail { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .lp-proof-grid { grid-template-columns: 1fr; }
  .lp-package-cta { flex-direction: column; align-items: stretch; text-align: left; }
  .lp-trust-row { gap: 14px; font-size: 12px; }
}

/* ─── Footer social icons ─────────────────────────────────────────── */

.foot-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.foot-social a:hover {
  background: rgba(46,181,180,0.18);
  border-color: var(--teal-3);
  color: var(--teal-3);
  transform: translateY(-2px);
}

/* ─── Legal pages (Privacy / Terms) ──────────────────────────────── */

.legal-shell { max-width: 920px; }
.legal-effective {
  font-family: var(--mono);
  font-size: 12px;
  color: #94A3B8;
  letter-spacing: 0.06em;
  margin-top: 12px;
  text-transform: uppercase;
}
.legal-doc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 56px 64px;
  box-shadow: var(--shadow-sm);
}
.legal-section {
  margin-bottom: 40px;
}
.legal-section:last-child {
  margin-bottom: 0;
}
.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.legal-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 22px 0 10px;
  letter-spacing: -0.005em;
}
.legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--navy); }
.legal-warning {
  background: #FFF8EB;
  border: 1px solid #FCD34D;
  border-left: 4px solid #F59E0B;
  border-radius: var(--r-md);
  padding: 24px 28px;
}
.legal-warning h2 { color: #78350F; }
.legal-warning p {
  color: #78350F;
  font-size: 14px;
  line-height: 1.65;
  font-family: var(--mono);
  letter-spacing: 0.01em;
}
.legal-address {
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.7;
  color: #334155;
  margin-top: 8px;
  display: inline-block;
}
.legal-address strong {
  color: var(--navy);
  font-size: 15px;
}

@media (max-width: 720px) {
  .legal-doc { padding: 36px 28px; }
  .legal-warning { padding: 20px 22px; }
}

/* ─── Contact page (calendar embed + reach-us card) ────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}
.contact-calendar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 12px;
  min-height: 760px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-calendar iframe {
  display: block;
  width: 100%;
  min-height: 740px;
  border: none;
}
.contact-aside {
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: 24px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.contact-card-h {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.contact-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.contact-list li {
  display: grid;
  gap: 4px;
}
.contact-list-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.contact-list-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.contact-list-link[href]:hover { color: var(--teal); }
.contact-card-dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border-color: var(--navy-2);
  position: relative;
  overflow: hidden;
}
.contact-card-dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(46,181,180,0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(34,197,94,0.10), transparent 55%);
  pointer-events: none;
}
.contact-card-dark > * { position: relative; z-index: 1; }
.contact-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.contact-bullets li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.contact-bullets li::before {
  content: "→";
  color: var(--teal-3);
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
}
@media (max-width: 720px) {
  .contact-card { padding: 22px; }
  .contact-calendar { padding: 8px; min-height: 680px; }
  .contact-calendar iframe { min-height: 660px; }
}

/* ─── Careers page ──────────────────────────────────────────────────── */

.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-lg);
  padding: 44px 48px 40px;
  box-shadow: var(--shadow-md);
}
.job-card-head {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.job-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, #16A34A 100%);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 700;
}
.job-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 38px);
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 13px;
  color: var(--text-muted, #475569);
}
.job-meta span strong {
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.job-section {
  margin-bottom: 28px;
}
.job-section h3.job-section-h,
.job-section-h {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.job-section p {
  font-size: 15px;
  color: #334155;
  line-height: 1.65;
  margin: 0 0 12px;
}
.job-section p:last-child { margin-bottom: 0; }
.job-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.job-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: #334155;
  line-height: 1.55;
}
.job-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}
.job-list li strong {
  color: var(--navy);
  font-weight: 600;
}
.job-apply {
  margin-top: 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(46,181,180,0.07) 0%, rgba(34,197,94,0.06) 100%);
  border: 1px solid rgba(46,181,180,0.25);
  border-radius: var(--r-lg);
}
.job-apply p {
  font-size: 15px;
  color: #334155;
  line-height: 1.65;
  margin: 0;
}
.job-apply-link {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.job-apply-cta {
  margin-top: 18px;
}
.careers-foot {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-align: center;
}
.careers-foot p {
  color: var(--text-muted, #475569);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .job-card { padding: 28px 24px 28px; border-left-width: 3px; }
  .job-apply { padding: 22px 20px; }
  .careers-foot { padding: 22px 20px; }
}

/* ─── ROI Calculator page ──────────────────────────────────────────── */

.roi-shell { max-width: 980px; }

.roi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-md);
}
.roi-card-h { margin: 0 0 6px; }
.roi-card-lead { margin: 0 0 28px; max-width: 720px; }

.roi-section { margin-bottom: 28px; }
.roi-section-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.roi-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.roi-industry-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 14px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.roi-industry-card:hover {
  border-color: rgba(46,181,180,0.4);
  background: var(--grey);
}
.roi-industry-card.is-selected {
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(46,181,180,0.08) 0%, rgba(34,197,94,0.06) 100%);
  box-shadow: 0 6px 14px rgba(46,181,180,0.16);
}
.roi-industry-emoji { font-size: 22px; line-height: 1; }
.roi-industry-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.roi-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.roi-input-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.roi-input-wrap { position: relative; }
.roi-input-prefix,
.roi-input-suffix {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #64748B;
  font-weight: 600;
  pointer-events: none;
}
.roi-input-prefix { left: 14px; }
.roi-input-suffix { right: 14px; }
.roi-input-field {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  -moz-appearance: textfield;
}
.roi-input-field.has-prefix { padding-left: 30px; }
.roi-input-field.has-suffix { padding-right: 32px; }
.roi-input-field:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(46,181,180,0.12);
}
.roi-input-field::-webkit-outer-spin-button,
.roi-input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.roi-input-hint {
  font-size: 12px;
  color: #64748B;
  margin: 6px 0 0;
}

.roi-cta-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}
.roi-cta-row-split {
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

/* Result hero */
.roi-result-hero {
  position: relative;
  margin-bottom: 24px;
  padding: 56px 48px;
  border-radius: var(--r-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(46,181,180,0.35), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(34,197,94,0.22), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #1F4E7B 100%);
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(11,46,77,0.32);
}
.roi-result-hero::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, #4285F4 33%, #EA4335 66%, var(--green) 100%);
}
.roi-result-hero-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.roi-result-h {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 12px;
}
.roi-result-h .accent {
  background: linear-gradient(90deg, var(--teal-3) 0%, var(--white) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.roi-result-sub {
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 32px;
}
.roi-result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.roi-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(4px);
}
.roi-stat-l {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  font-weight: 600;
}
.roi-stat-v {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}

/* Today vs After comparison */
.roi-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.roi-compare {
  border-radius: var(--r-lg);
  padding: 26px 28px;
  border: 1px solid var(--line);
}
.roi-compare-today {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.roi-compare-after {
  background: linear-gradient(135deg, rgba(46,181,180,0.07) 0%, rgba(34,197,94,0.05) 100%);
  border-color: rgba(46,181,180,0.25);
}
.roi-compare-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 14px;
}
.roi-compare-after .roi-compare-label { color: var(--teal); }
.roi-compare-rows { display: grid; gap: 4px; }
.roi-compare-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.roi-compare-row:last-child { border-bottom: none; }
.roi-compare-row span {
  font-size: 13.5px;
  color: #475569;
}
.roi-compare-row strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Features list inside results card */
.roi-features {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.roi-features li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}
.roi-feature-tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.roi-disclaimer {
  font-size: 11.5px;
  color: #94A3B8;
  margin: 24px 0 0;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .roi-card { padding: 26px 22px 24px; }
  .roi-result-hero { padding: 40px 26px; }
  .roi-input-grid { grid-template-columns: 1fr; }
  .roi-industry-grid { grid-template-columns: 1fr 1fr; }
  .roi-result-stats { grid-template-columns: 1fr; }
  .roi-compare-grid { grid-template-columns: 1fr; }
  .roi-features { grid-template-columns: 1fr; }
  .roi-cta-row, .roi-cta-row-split { flex-direction: column; align-items: stretch; }
}

/* ─── Therapist Growth Partner page ────────────────────────────────── */

.tgp-logo {
  display: block;
  width: 280px;
  max-width: 80%;
  height: auto;
  margin: 0 auto 24px;
}

/* Service detail */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.svc-detail-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.offer-list { border-top: 1px solid var(--line); margin-top: 32px; }
.offer-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.offer-name { font-weight: 600; color: var(--navy); font-size: 17px; letter-spacing: -0.01em; }
.offer-desc { color: var(--text-muted); font-size: 15px; }

/* Form / Contact */
.form-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(46, 181, 180, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 9px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  background: var(--white);
  color: var(--text);
  transition: all 0.2s;
}
.pill:hover { border-color: var(--teal); }
.pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.aside-card {
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-bottom: 16px;
}
.aside-card.dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.aside-card.dark a { color: var(--teal-3); }
.aside-num { font-family: var(--mono); color: var(--teal); font-size: 13px; font-weight: 600; }

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid, .thera-card, .form-row, .svc-detail, .quote-card, .sec-head-row { grid-template-columns: 1fr; gap: 48px; }
  .hero-tabs { grid-template-columns: 1fr; }
  .hero-tab { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-tab:last-child { border-bottom: 0; }
  .hero-slides { min-height: auto; }
  .quote-card { padding: 40px; }
  .quote-stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; text-align: left; }
  .leak-grid, .svc-grid, .aud-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .outcome-cell { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .outcome-cell:nth-child(2n) { border-right: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .logos-row { grid-template-columns: 1fr; gap: 16px; }
  .logos-list { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .nav-links { display: none; }
  .mega { display: none; }
  .cta-banner, .thera-card { padding: 40px; }
  .offer-row { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 720px) {
  :root { --section-y: 80px; --gutter: 20px; }
  .hero-stats { grid-template-columns: 1fr; gap: 24px; }
  .leak-grid, .svc-grid, .aud-grid, .process-grid, .outcome-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .nav-cta .btn-ghost { display: none; }
  .engine-callout { display: none; }
}

/* ─── Footer BBB accreditation ───────────────────────────────────── */

.foot-bbb {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 14px;
  width: auto;
  border-radius: 8px;
  background: var(--white);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(11, 45, 77, 0.08);
}
.foot-bbb img {
  width: 280px;
  max-width: 100%;
  height: auto;
  display: block;
}
.foot-bbb:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(11, 45, 77, 0.16);
}
@media (max-width: 720px) {
  .foot-bbb img { width: 220px; }
}

/* LeadConnector chat widget — host-level theming ───────────────── */
/* The widget renders inside Shadow DOM. We only expose Purna Web brand
   colors as CSS custom properties; if the widget consumes any of these
   inside its shadow root they'll cascade in automatically.
   IMPORTANT: do not set `filter`, `transform`, `backdrop-filter`, or
   `will-change` on this host — any of those create a CSS containing
   block that breaks the launcher's internal `position: fixed`. */
chat-widget {
  --primary-color: #2EB5B4;
  --brand-color: #2EB5B4;
  --launcher-color: #2EB5B4;
  --chat-primary: #2EB5B4;
  --chat-accent: #22C55E;
  --header-color: #0B2D4D;
  --text-color: #1A2B3C;
  --font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Hero trust signal (BBB) ─────────────────────────────────────── */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 0;
  padding: 8px 16px 8px 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 14px rgba(11, 45, 77, 0.18);
  max-width: 100%;
}
.hero-trust:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11, 45, 77, 0.24);
  background: var(--white);
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background: var(--white);
  border-radius: 8px;
  flex-shrink: 0;
}
.hero-trust-badge img {
  width: 110px;
  height: auto;
  display: block;
}
@media (max-width: 720px) {
  .hero-trust-badge img { width: 88px; }
}
.hero-trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--sans);
}
.hero-trust-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.hero-trust-text span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 720px) {
  .hero-trust { margin-top: 22px; gap: 10px; padding: 6px 14px 6px 6px; }
  .hero-trust-badge { width: 54px; height: 30px; }
  .hero-trust-text strong { font-size: 12.5px; }
  .hero-trust-text span { font-size: 10.5px; }
}

/* ─── Industry pages ─────────────────────────────────────────────── */

.industry-hero {
  position: relative;
  padding: 140px 0 110px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.industry-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(11,46,77,0.55), transparent 65%);
  pointer-events: none;
}
.industry-hero .container { position: relative; z-index: 2; }
.industry-hero-inner { max-width: 760px; }
.industry-hero .eyebrow,
.eyebrow-light {
  color: var(--teal-3);
}
.industry-hero .eyebrow::before { background: var(--teal-3); }
.industry-h1 {
  color: var(--white);
  margin: 20px 0 24px;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.industry-h1 .accent { color: var(--teal-3); }
.industry-lead {
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
}
.industry-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  margin: 40px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  width: fit-content;
}
.industry-stat-v {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.industry-stat-l {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.industry-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

/* Pain points grid */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover {
  border-left-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pain-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.pain-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.pain-desc {
  color: var(--ink, #334155);
  line-height: 1.6;
  margin: 0;
}

/* Capability cards (chat / voice / automation) */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cap-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cap-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.cap-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(46, 181, 180, 0.1);
  border: 1px solid rgba(46, 181, 180, 0.25);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.cap-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 24px;
  border-radius: 12px;
  overflow: hidden;
  background: #0B2D4D;
  border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cap-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cap-card:hover .cap-image {
  transform: scale(1.015);
}
.cap-card:has(.cap-image) {
  padding-top: 28px;
}
.cap-card:has(.cap-image) .cap-tag {
  margin-bottom: 16px;
}
.cap-card:has(.cap-image) .cap-title {
  font-size: 20px;
}
.cap-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.cap-desc {
  color: var(--ink, #334155);
  line-height: 1.6;
  margin: 0 0 20px;
}
.cap-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.cap-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--navy);
}
.cap-bullets li svg {
  flex: none;
  color: var(--green);
  margin-top: 4px;
}

/* Flow rail */
.flow-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.flow-step {
  position: relative;
  padding: 0 24px 0 0;
}
.flow-step-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--teal-3);
  margin-bottom: 16px;
}
.flow-step-line {
  height: 2px;
  background: linear-gradient(90deg, var(--teal-3), rgba(255,255,255,0.1));
  margin-bottom: 20px;
  position: relative;
}
.flow-step-line::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 10px; height: 10px;
  background: var(--teal-3);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(79, 200, 199, 0.2);
}
.flow-step:last-child .flow-step-line {
  background: linear-gradient(90deg, var(--green), rgba(34,197,94,0.1));
}
.flow-step:last-child .flow-step-line::before {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}
.flow-step-time {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.flow-step-text {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.5;
}

/* Support panel */
.support-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 56px;
  box-shadow: var(--shadow-md);
}
.support-copy h2 { margin: 12px 0 16px; }
.support-copy .lead { margin: 0 0 28px; }
.support-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.support-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--grey);
  transition: border-color 0.2s, background 0.2s;
}
.support-list li:hover {
  border-color: var(--teal);
  background: var(--white);
}
.support-icon {
  font-family: var(--mono);
  color: var(--teal);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.support-list li strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 600;
}
.support-list li span {
  color: var(--ink, #475569);
  font-size: 14px;
  line-height: 1.5;
}

/* Other industries grid */
.industry-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.industry-other-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 180px;
  padding: 24px;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(11,46,77,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.industry-other-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.industry-other-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.industry-other-arr {
  font-size: 22px;
  opacity: 0.9;
  transition: transform 0.2s;
}
.industry-other-card:hover .industry-other-arr {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .pain-grid, .cap-grid, .industry-other-grid { grid-template-columns: 1fr 1fr; }
  .flow-rail { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .support-panel { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
}
@media (max-width: 720px) {
  .industry-hero { padding: 100px 0 80px; background-position: 60% center; }
  .industry-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pain-grid, .cap-grid, .industry-other-grid { grid-template-columns: 1fr; }
  .flow-rail { grid-template-columns: 1fr; gap: 24px; }
  .flow-step { padding-right: 0; }
  .support-panel { padding: 32px 24px; }
}

/* ─── Featured package showcase (full-width, with iPhone mocks) ──── */

.package-showcase {
  position: relative;
  padding: 80px 0 96px;
  background: var(--white);
  color: var(--navy);
  overflow: hidden;
}
.package-showcase::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, #4285F4 33%, #EA4335 66%, var(--green) 100%);
  z-index: 2;
}
.package-showcase-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
#featured-package { scroll-margin-top: 100px; }
html { scroll-behavior: smooth; }

/* ─── Row 1: package info (compact horizontal) ─────────────────── */

.psi {
  width: 100%;
}
.psi-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.psi-centered .pkg-tag-pill {
  margin: 0;
  background: var(--grey);
  border-color: var(--line);
  color: var(--navy);
  backdrop-filter: none;
}
.psi-centered .psi-h {
  margin: 0;
  max-width: 22ch;
  color: var(--navy);
}
.psi-centered .psi-h .accent { color: var(--teal); }
.psi-centered .psi-lead {
  margin: 0;
  max-width: 60ch;
  color: #475569;
}
.psi-centered .psi-bare-label { color: var(--teal); }
.psi-centered .psi-bare-offer-name { color: var(--navy); }
.psi-centered .psi-bare-offer-sub { color: #64748B; }

/* Bare (no-panel) seasonal offer block */
.psi-offer-bare {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  max-width: 640px;
}
.psi-bare-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-3);
  font-weight: 700;
}
.psi-bare-label-lg {
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
}
.psi-bare-offer-name {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.25;
  max-width: 28ch;
}
.psi-bare-offer-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  max-width: 56ch;
  margin: 4px 0 0;
}

/* "What's included" — pain-card style tiles */
.psi-includes-section {
  width: 100%;
  max-width: 1120px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.psi-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}
.psi-include-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.psi-include-card:hover {
  border-left-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.psi-include-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
}
.psi-include-card:hover .psi-include-num { color: var(--green); }
.psi-include-icon {
  width: 38px;
  height: 38px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 10px;
  color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.psi-include-card:hover .psi-include-icon {
  background: rgba(34,197,94,0.2);
  transform: scale(1.05);
}
.psi-include-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.psi-include-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}
.psi-tick {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: transparent;
  text-align: left;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.psi-tick:hover {
  border-color: rgba(34,197,94,0.55);
  background: rgba(34,197,94,0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(11,46,77,0.22);
}
.psi-tick-icon {
  width: 30px;
  height: 30px;
  background: rgba(34,197,94,0.2);
  border: 1.5px solid rgba(34,197,94,0.55);
  border-radius: 50%;
  color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.psi-tick:hover .psi-tick-icon {
  background: rgba(34,197,94,0.32);
  border-color: rgba(34,197,94,0.8);
  transform: scale(1.05);
}
.psi-tick-text {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
}

/* Legacy psi-top kept for backward compat (unused) */
.psi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.pkg-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--mono);
  color: var(--white);
  backdrop-filter: blur(2px);
}
.psi-cta-inline {
  display: flex;
  align-items: center;
  gap: 18px;
}
.psi-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.psi-price-v {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.psi-price-n {
  font-size: 10px;
  color: rgba(255,255,255,0.62);
  margin-top: 3px;
  max-width: 200px;
  line-height: 1.3;
}
.psi-launch {
  white-space: nowrap;
}

.psi-h {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
  max-width: 28ch;
}
.psi-h .accent { color: var(--teal-3); }
.psi-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 70ch;
}

/* 2-column info grid (offer · includes) */
.psi-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 16px;
}
.psi-col {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, background 0.25s;
}
.psi-col:hover {
  border-color: rgba(46,181,180,0.4);
  background: rgba(255,255,255,0.06);
}
.psi-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-3);
  font-weight: 700;
}
.psi-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.psi-week-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* Offer column */
.psi-offer-col {
  background: rgba(46,181,180,0.12);
  border-color: rgba(46,181,180,0.3);
}
.psi-offer-col:hover { border-color: rgba(46,181,180,0.5); }
.psi-offer-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.psi-offer-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.45;
}

/* Includes column */
.psi-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.psi-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
}
.psi-includes li svg {
  flex: none;
  color: var(--teal-3);
  margin-top: 4px;
}

/* Week column */
.psi-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.psi-week-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 8px 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  text-align: center;
  min-height: 64px;
  cursor: default;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.psi-week-cell:hover {
  border-color: var(--teal-3);
  background: rgba(46,181,180,0.2);
  transform: translateY(-1px);
}
.psi-week-d {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--teal-3);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.psi-week-t {
  font-size: 8.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.25;
}

/* ─── Row 2: phone showcase (3 iPhones + email) ─────────────────── */

.psp {
  width: 100%;
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 1px solid var(--navy-2);
  border-radius: 24px;
  padding: 48px 40px;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(11,46,77,0.25);
}
.psp::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 181, 180, 0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.12), transparent 55%);
  pointer-events: none;
}
.psp > * { position: relative; z-index: 1; }
.psp-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(255,255,255,0.16);
}
.psp-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
  justify-items: center;
}

/* ─── iPhone shell ────────────────────────────────────────────────── */

.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.phone-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  max-width: 240px;
  min-height: 64px;
}
.phone-label-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-3);
  background: rgba(46,181,180,0.12);
  border: 1px solid rgba(46,181,180,0.3);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.phone-label-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.94);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.35;
  max-width: 200px;
}
.phone {
  width: 240px;
  height: 462px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 9px;
  position: relative;
  box-shadow:
    0 0 0 1.5px #2e2e2e,
    0 0 0 3px #111,
    0 40px 80px rgba(0,0,0,0.5),
    0 16px 32px rgba(0,0,0,0.3);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.phone-wrap:hover .phone {
  transform: translateY(-4px);
}
.phone::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 80px;
  width: 3px;
  height: 28px;
  background: #222;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 38px 0 #222, 0 70px 0 #222;
}
.phone::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 120px;
  width: 3px;
  height: 50px;
  background: #222;
  border-radius: 0 2px 2px 0;
}
.phone-screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.phone-island {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 21px;
  background: #000;
  border-radius: 12px;
  z-index: 30;
}
.phone-status {
  background: #fff;
  padding: 9px 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  font-family: -apple-system, "SF Pro Text", "Segoe UI", sans-serif;
}
.phone-time {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.2px;
  flex-shrink: 0;
}
.phone-status-spacer {
  width: 84px;
  flex-shrink: 0;
}
.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000;
  flex-shrink: 0;
}
.phone-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 9px;
}
.phone-bars span {
  width: 2.5px;
  background: currentColor;
  border-radius: 1px;
}
.phone-bars span:nth-child(1) { height: 3px; }
.phone-bars span:nth-child(2) { height: 5px; }
.phone-bars span:nth-child(3) { height: 7px; }
.phone-bars span:nth-child(4) { height: 9px; }
.phone-battery {
  width: 21px;
  height: 11px;
  border: 1.2px solid currentColor;
  border-radius: 2.5px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1px;
}
.phone-battery::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 5px;
  background: currentColor;
  border-radius: 0 1px 1px 0;
}
.phone-battery-fill {
  background: currentColor;
  border-radius: 1px;
  height: 100%;
  width: 75%;
}
.phone-content {
  flex: 1;
  overflow-y: auto;
  background: #f0f2f5;
  font-family: -apple-system, "SF Pro Text", "Segoe UI", sans-serif;
  scrollbar-width: none;
}
.phone-content::-webkit-scrollbar { display: none; }
.phone-home {
  padding: 6px 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}
.phone-home span {
  width: 96px;
  height: 4px;
  background: #1a1a1a;
  border-radius: 2.5px;
  display: block;
}

/* ─── Mobile landing page ─────────────────────────────────────────── */
.m-lp { background: #fff; min-height: 100%; }
.m-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #F2F4F7;
  border-bottom: 0.5px solid #E4E6EB;
  flex-shrink: 0;
}
.m-browser-back {
  color: #1A73E8;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}
.m-browser-url {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-browser-url svg { color: #94A3B8; flex-shrink: 0; }
.m-browser-share {
  color: #1A73E8;
  font-size: 14px;
  flex-shrink: 0;
}
.m-lp-hero {
  padding: 16px 16px 14px;
  background: linear-gradient(160deg, #0B2D4D 0%, #133A60 100%);
  color: #fff;
}
.m-lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,181,180,0.18);
  border: 1px solid rgba(46,181,180,0.4);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4FC8C7;
  font-weight: 700;
  margin-bottom: 10px;
}
.m-lp-tag-dot {
  width: 5px; height: 5px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
  animation: pulse 1.6s infinite;
}
.m-lp-h1 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 6px;
}
.m-lp-h1 .accent { color: #4FC8C7; }
.m-lp-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
  margin: 0 0 12px;
}
.m-lp-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.78);
}
.m-lp-stars { color: #FBBC04; letter-spacing: 0.5px; }
.m-lp-form {
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 8px;
  border-bottom: 6px solid #f0f2f5;
}
.m-lp-input {
  background: #f0f2f5;
  border: 1px solid #E4E6EB;
  border-radius: 6px;
  padding: 9px 10px;
  font-size: 11px;
  color: #94A3B8;
}
.m-lp-cta {
  background: linear-gradient(135deg, #2EB5B4 0%, #1F8C8B 100%);
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  font-family: inherit;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 10px rgba(46,181,180,0.35);
}
.m-lp-cta-sub {
  text-align: center;
  font-size: 9.5px;
  color: #94A3B8;
  margin-top: 2px;
}
.m-lp-includes {
  background: #fff;
  padding: 14px;
}
.m-lp-includes-h {
  font-size: 11px;
  font-weight: 700;
  color: #0B2D4D;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.m-lp-includes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.m-lp-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #050505;
}
.m-lp-includes li span {
  width: 18px;
  height: 18px;
  background: rgba(34,197,94,0.12);
  color: #22C55E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}

/* ─── Mobile Facebook ad ──────────────────────────────────────────── */
.m-fb { background: #f0f2f5; min-height: 100%; }
.m-fb-header {
  background: #fff;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid #E4E6EB;
  position: sticky;
  top: 0;
  z-index: 5;
}
.m-fb-logo {
  font-size: 24px;
  font-weight: 900;
  color: #1877F2;
  letter-spacing: -1px;
  font-family: Georgia, serif;
  line-height: 1;
}
.m-fb-icons {
  display: flex;
  gap: 6px;
}
.m-fb-icon-btn {
  width: 28px;
  height: 28px;
  background: #E4E6EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #050505;
}
.m-fb-nav {
  background: #fff;
  display: flex;
  border-bottom: 0.5px solid #E4E6EB;
}
.m-fb-nav-item {
  flex: 1;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2.5px solid transparent;
  color: #65676B;
}
.m-fb-nav-item.is-active {
  border-bottom-color: #1877F2;
  color: #1877F2;
}
.m-fb-feed { padding: 0; }
.m-fb-stories {
  background: #fff;
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border-bottom: 6px solid #f0f2f5;
  scrollbar-width: none;
}
.m-fb-stories::-webkit-scrollbar { display: none; }
.m-fb-story {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
}
.m-fb-story-bg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 2.5px solid #1877F2;
  color: #050505;
  font-weight: 700;
}
.m-fb-story-add .m-fb-story-bg {
  border-color: #E4E6EB;
  color: #1877F2;
  font-size: 22px;
  font-weight: 600;
}
.m-fb-story span {
  font-size: 9px;
  color: #050505;
  font-weight: 500;
  line-height: 1.2;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-fb-composer {
  background: #fff;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 6px solid #f0f2f5;
}
.m-fb-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1877F2, #0B5BC8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.m-fb-composer-input {
  flex: 1;
  background: #f0f2f5;
  border-radius: 16px;
  padding: 7px 12px;
  font-size: 11px;
  color: #65676B;
}
.m-fb-post {
  background: #fff;
  margin-bottom: 8px;
}
.m-fb-post-head {
  padding: 10px 14px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.m-fb-post-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0d2d5e, #1565c0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.m-fb-post-meta { flex: 1; min-width: 0; }
.m-fb-post-name {
  font-size: 12px;
  font-weight: 700;
  color: #050505;
  line-height: 1.2;
}
.m-fb-post-sub {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #65676B;
  margin-top: 1px;
}
.m-fb-dot {
  width: 2px;
  height: 2px;
  background: #65676B;
  border-radius: 50%;
  display: inline-block;
}
.m-fb-post-more { color: #65676B; font-size: 16px; line-height: 1; }
.m-fb-post-caption {
  padding: 8px 14px 8px;
  font-size: 12px;
  color: #050505;
  line-height: 1.4;
}
.m-fb-post-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.91 / 1;
  background-size: cover;
  background-position: center;
  background-color: #0B2D4D;
}
.m-fb-post-img::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,46,77,0.6) 0%, rgba(11,46,77,0.18) 50%, transparent 100%);
}
.m-fb-overlay {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.m-fb-overlay-small {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 3px;
  opacity: 0.92;
}
.m-fb-overlay-badge {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #4FC8C7;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(11,46,77,0.5);
}
.m-fb-overlay-line {
  font-size: 8px;
  letter-spacing: 0.05em;
  opacity: 0.94;
}
.m-fb-cta-strip {
  background: #f0f2f5;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.m-fb-cta-domain {
  font-size: 9px;
  text-transform: uppercase;
  color: #65676B;
  letter-spacing: 0.4px;
}
.m-fb-cta-headline {
  font-size: 11.5px;
  font-weight: 700;
  color: #050505;
  margin: 1px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-fb-cta-desc {
  font-size: 9.5px;
  color: #65676B;
}
.m-fb-cta-btn {
  background: #E4E6EB;
  border-radius: 5px;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 700;
  color: #050505;
  flex-shrink: 0;
  white-space: nowrap;
}
.m-fb-reactions {
  padding: 6px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #65676B;
  border-top: 0.5px solid #E4E6EB;
}
.m-fb-rxn-emojis {
  display: flex;
  align-items: center;
  gap: 1px;
}
.m-fb-rxn-emojis span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.2px solid #fff;
  background: #fff;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -3px;
}
.m-fb-rxn-count {
  margin-left: 8px !important;
  margin-right: 0 !important;
  border: none !important;
  background: transparent !important;
  width: auto !important;
  font-size: 11px !important;
  color: #65676B;
  font-weight: 500;
}
.m-fb-actions {
  display: flex;
  border-top: 0.5px solid #E4E6EB;
  padding: 0;
}
.m-fb-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 0;
  font-size: 10.5px;
  font-weight: 600;
  color: #65676B;
}

/* ─── Mobile Google Maps ──────────────────────────────────────────── */
.m-maps {
  background: #E8EDDF;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.m-maps-search {
  background: #fff;
  margin: 8px 10px;
  padding: 9px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #1A0DAB;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.m-maps-back {
  color: #5F6368;
  font-size: 16px;
  font-weight: 600;
}
.m-maps-q {
  flex: 1;
  font-weight: 500;
  color: #202124;
  font-size: 11.5px;
}
.m-maps-x {
  color: #5F6368;
  font-size: 14px;
}
.m-maps-tabs {
  display: flex;
  gap: 6px;
  padding: 4px 10px 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.m-maps-tabs::-webkit-scrollbar { display: none; }
.m-maps-tab {
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #DADCE0;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 10px;
  color: #5F6368;
  white-space: nowrap;
  font-weight: 500;
}
.m-maps-tab.is-active {
  background: #E8F0FE;
  border-color: #4285F4;
  color: #1967D2;
  font-weight: 600;
}
.m-maps-canvas {
  position: relative;
  flex: 1;
  background:
    radial-gradient(circle at 30% 40%, #DDE4D5 0%, transparent 20%),
    radial-gradient(circle at 75% 65%, #C3D1B5 0%, transparent 25%),
    linear-gradient(135deg, #E8EDDF 0%, #DBE5C9 100%);
  min-height: 220px;
  overflow: hidden;
}
.m-maps-roads {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 18%, #fff 18%, #fff 19.5%, transparent 19.5%),
    linear-gradient(180deg, transparent 32%, #fff 32%, #fff 33.5%, transparent 33.5%),
    linear-gradient(45deg, transparent 60%, #FBE08F 60%, #FBE08F 62%, transparent 62%);
  opacity: 0.85;
}
.m-maps-roads::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 70%, #B5D6F2 70%, #B5D6F2 75%, transparent 75%);
  opacity: 0.8;
}
.m-maps-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.m-maps-pin span {
  transform: rotate(45deg);
  display: block;
}
.m-maps-pin-active {
  background: #EA4335;
  top: 38%;
  left: 42%;
  width: 36px;
  height: 36px;
  z-index: 3;
  box-shadow: 0 6px 12px rgba(234,67,53,0.5);
}
.m-maps-pin-active span { font-size: 13px; }
.m-maps-pin-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50% 50% 50% 0;
  background: rgba(234,67,53,0.3);
  animation: mapsPulse 1.8s ease-out infinite;
  z-index: -1;
}
@keyframes mapsPulse {
  0% { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.m-maps-pin-2 {
  background: #1A73E8;
  top: 22%;
  left: 70%;
  font-size: 10px;
}
.m-maps-pin-3 {
  background: #1A73E8;
  top: 60%;
  left: 25%;
  font-size: 10px;
}
.m-maps-zoom {
  position: absolute;
  right: 10px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.m-maps-zoom button {
  border: none;
  background: #fff;
  width: 28px;
  height: 28px;
  font-size: 14px;
  color: #5F6368;
  font-weight: 600;
  border-bottom: 1px solid #E8EAED;
}
.m-maps-zoom button:last-child { border-bottom: none; }
.m-maps-card {
  background: #fff;
  border-radius: 14px 14px 0 0;
  padding: 8px 14px 12px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  margin-top: -14px;
  position: relative;
  z-index: 5;
}
.m-maps-card-grip {
  width: 32px;
  height: 4px;
  background: #DADCE0;
  border-radius: 3px;
  margin: 0 auto 10px;
}
.m-maps-card-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.m-maps-card-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0B2D4D 0%, #2EB5B4 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.m-maps-card-name {
  font-size: 13px;
  font-weight: 500;
  color: #1A0DAB;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.m-maps-ad {
  font-size: 9px;
  font-weight: 700;
  color: #006621;
  border: 1px solid #006621;
  border-radius: 2px;
  padding: 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.m-maps-card-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  font-size: 10px;
  color: #5F6368;
  margin-bottom: 4px;
}
.m-maps-stars {
  color: #FBBC04;
  letter-spacing: 0.2px;
}
.m-maps-dot {
  width: 2px;
  height: 2px;
  background: #5F6368;
  border-radius: 50%;
  display: inline-block;
}
.m-maps-card-snippet {
  font-size: 11px;
  color: #4D5156;
  line-height: 1.3;
  margin-bottom: 4px;
}
.m-maps-card-status {
  font-size: 10px;
  color: #5F6368;
  display: flex;
  align-items: center;
  gap: 5px;
}
.m-maps-open {
  width: 6px;
  height: 6px;
  background: #34A853;
  border-radius: 50%;
}
.m-maps-card-actions {
  display: flex;
  gap: 6px;
}
.m-maps-card-btn {
  flex: 1;
  background: #fff;
  color: #1A73E8;
  border: 1px solid #DADCE0;
  border-radius: 6px;
  padding: 7px 6px;
  font-size: 10.5px;
  font-weight: 500;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.m-maps-card-btn-primary {
  background: #1A73E8;
  color: #fff;
  border-color: #1A73E8;
}

/* ─── Slider (paired include + phone, 2 at a time) ────────────────── */

.slider {
  --slider-perview: 3;
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
.slider-viewport {
  overflow: hidden;
  padding: 8px 0;
}
.slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.slider-item {
  flex: 0 0 calc(100% / var(--slider-perview));
  box-sizing: border-box;
  padding: 0 10px;
  --tx: 0;
  --ty: 0;
  perspective: 1100px;
}
.slider-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  padding: 22px 14px 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: transparent;
  transform: rotateX(0) rotateY(0);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  will-change: transform, background;
}
.slider-item:hover .slider-item-inner {
  background:
    radial-gradient(
      circle at calc(50% + var(--tx) * 100%) calc(50% + var(--ty) * 100%),
      rgba(46, 181, 180, 0.28) 0%,
      rgba(46, 181, 180, 0.08) 38%,
      transparent 78%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(46, 181, 180, 0.04) 100%);
  border-color: rgba(46, 181, 180, 0.32);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.42),
    0 0 90px rgba(46, 181, 180, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform:
    rotateX(calc(var(--ty) * -7deg))
    rotateY(calc(var(--tx) * 9deg))
    translate(calc(var(--tx) * 10px), calc(var(--ty) * 6px))
    scale(1.02);
  transition:
    transform 0.12s ease-out,
    background 0.25s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.phone-content {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (prefers-reduced-motion: reduce) {
  .slider-item-inner {
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  }
  .slider-item:hover .slider-item-inner {
    transform: none;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  }
}
.slider-item-card {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: transform 0.25s;
}
.slider-item:hover .slider-item-card {
  transform: translateY(-2px);
}
.slider-item-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.slider-item-icon {
  width: 30px;
  height: 30px;
  background: rgba(34,197,94,0.18);
  border: 1px solid rgba(34,197,94,0.55);
  border-radius: 50%;
  color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.slider-item:hover .slider-item-icon {
  background: rgba(34,197,94,0.32);
  border-color: rgba(34,197,94,0.8);
  transform: scale(1.06);
}
.slider-item-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--teal-3);
  font-weight: 700;
}
.slider-item-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.slider-item-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0;
  max-width: 240px;
}

/* Arrow buttons */
.slider-arr {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
  flex-shrink: 0;
  backdrop-filter: blur(2px);
}
.slider-arr:hover:not(:disabled) {
  background: rgba(46,181,180,0.28);
  border-color: var(--teal-3);
  transform: scale(1.06);
  color: var(--white);
}
.slider-arr:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.slider-arr:focus-visible {
  outline: 2px solid var(--teal-3);
  outline-offset: 3px;
}

/* Pip indicators */
.slider-pips {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}
.slider-pips button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.25s, border-radius 0.2s;
}
.slider-pips button:hover { background: rgba(255,255,255,0.4); }
.slider-pips button.is-on {
  background: var(--teal-3);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 1280px) {
  .slider-item { padding: 0 8px; }
}
@media (max-width: 1100px) {
  .slider { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 10px; }
  .slider-arr { width: 44px; height: 44px; }
}
@media (max-width: 720px) {
  .slider { grid-template-columns: 40px minmax(0, 1fr) 40px; gap: 8px; }
  .slider-arr { width: 40px; height: 40px; }
}

/* ─── Mobile email (rendered email body inside iPhone) ────────────── */

.m-email {
  background: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.m-email-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
  background: #f8fafc;
  border-bottom: 0.5px solid #E4E6EB;
  flex-shrink: 0;
}
.m-email-tb-back {
  color: #1A73E8;
  font-size: 16px;
  font-weight: 600;
}
.m-email-tb-icons {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #5F6368;
}
.m-email-meta {
  background: #fff;
  padding: 10px 12px 8px;
  border-bottom: 0.5px solid #E4E6EB;
  flex-shrink: 0;
}
.m-email-subject {
  font-size: 13px;
  font-weight: 700;
  color: #050505;
  line-height: 1.3;
  margin-bottom: 8px;
}
.m-email-from-row {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  gap: 8px;
  align-items: center;
}
.m-email-from-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d2d5e, #2EB5B4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.m-email-from-info { min-width: 0; }
.m-email-from-name {
  font-size: 11px;
  font-weight: 600;
  color: #050505;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-email-from-name span {
  font-weight: 400;
  color: #65676B;
}
.m-email-from-detail {
  font-size: 9.5px;
  color: #65676B;
  margin-top: 1px;
}
.m-email-star {
  color: #94A3B8;
  font-size: 14px;
}

/* The actual email body */
.m-email-body { background: #f1f5f9; }
.m-em-header {
  background: #0d2d5e;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.m-em-logo-icon {
  width: 26px;
  height: 26px;
  background: #F57C00;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.m-em-logo-text {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.m-em-logo-text span {
  display: block;
  font-size: 7.5px;
  color: #90CAF9;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.m-em-hero {
  background: linear-gradient(135deg, #0d2d5e 0%, #1565c0 100%);
  padding: 22px 16px 20px;
  text-align: center;
  color: #fff;
}
.m-em-offer-pill {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.m-em-hero h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.m-em-hero p {
  font-size: 11px;
  color: #BBDEFB;
  line-height: 1.4;
  margin: 0;
}
.m-em-price-tag {
  display: inline-block;
  background: #F57C00;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  padding: 7px 18px;
  border-radius: 6px;
  margin: 14px 0 4px;
  box-shadow: 0 4px 12px rgba(245,124,0,0.4);
}
.m-em-price-sub {
  font-size: 9px;
  color: #BBDEFB;
}
.m-em-content {
  padding: 16px 16px 8px;
  background: #fff;
  font-size: 11px;
  line-height: 1.55;
  color: #334155;
}
.m-em-content p {
  margin: 0 0 10px;
}
.m-em-content p:last-child { margin-bottom: 0; }
.m-em-greeting {
  font-size: 12px;
  font-weight: 600;
  color: #0d2d5e;
}
.m-em-bullets {
  background: #f8fafc;
  border-radius: 6px;
  padding: 10px 12px;
  margin: 10px 0;
}
.m-em-bullets ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.m-em-bullets li {
  padding: 2px 0;
  font-size: 10.5px;
  color: #334155;
}
.m-em-bullets li::before {
  content: "✅ ";
}
.m-em-cta-block {
  text-align: center;
  padding: 4px 16px 18px;
  background: #fff;
}
.m-em-cta {
  display: inline-block;
  background: #F57C00;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 10px rgba(245,124,0,0.4);
}
.m-em-cta-sub {
  display: block;
  font-size: 8.5px;
  color: #94A3B8;
  margin-top: 8px;
}
.m-em-signoff {
  margin-top: 6px;
}
.m-em-signoff strong {
  display: block;
  color: #0d2d5e;
  font-size: 11px;
  margin-bottom: 2px;
}
.m-em-signoff span {
  font-size: 9.5px;
  color: #64748B;
}
.m-em-footer {
  background: #f8fafc;
  border-top: 1px solid #E4E6EB;
  padding: 10px 16px;
  text-align: center;
  font-size: 8.5px;
  color: #94A3B8;
  line-height: 1.5;
}

/* ─── Mobile booked / appointment confirmation ─────────────────────── */

.m-booked {
  background: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.m-booked-hero {
  text-align: center;
  padding: 20px 16px 22px;
  background: linear-gradient(160deg, #F0FAFA 0%, #E6F4F4 100%);
  border-bottom: 1px solid #E2E8F0;
}
.m-booked-check {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(34,197,94,0.25));
}
.m-booked-eyebrow {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16A34A;
  font-weight: 700;
  margin-bottom: 6px;
}
.m-booked-h {
  font-size: 19px;
  font-weight: 800;
  color: #0B2D4D;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 6px;
}
.m-booked-sub {
  font-size: 11px;
  color: #475569;
  line-height: 1.4;
  margin: 0;
}
.m-booked-card {
  margin: 14px 14px 0;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 4px 14px rgba(11,46,77,0.06);
}
.m-booked-card-h {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2EB5B4;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #E2E8F0;
}
.m-booked-card-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 6px 0;
  align-items: center;
  border-bottom: 1px solid #F1F5F9;
}
.m-booked-card-row:last-child { border-bottom: none; }
.m-booked-card-lbl {
  font-size: 10px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.m-booked-card-val {
  font-size: 11.5px;
  color: #0B2D4D;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.m-booked-tech-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2EB5B4;
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
}
.m-booked-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 14px;
}
.m-booked-btn {
  background: #fff;
  color: #0B2D4D;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.m-booked-btn-primary {
  background: linear-gradient(135deg, #2EB5B4 0%, #1F8C8B 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(46,181,180,0.35);
}
.m-booked-meta {
  margin: 0 14px 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 10px 12px;
  display: grid;
  gap: 6px;
}
.m-booked-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #475569;
  line-height: 1.4;
}
.m-booked-meta-icon {
  font-size: 12px;
  flex-shrink: 0;
}

/* ─── Email nurture flow (below phones) ───────────────────────────── */

.package-showcase-email {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 24px;
}
.package-showcase-email-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.16);
}
.package-showcase-email-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: stretch;
}
.pse-email {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, transform 0.2s;
}
.pse-email:hover {
  border-color: var(--teal-3);
  transform: translateY(-2px);
}
.pse-email-day {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-3);
  font-weight: 700;
}
.pse-email-subject {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}
.pse-email-arr {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal-3);
  font-size: 16px;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1500px) {
  .psp-row { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
}
@media (max-width: 1024px) {
  .psp-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .package-showcase { padding: 56px 0 64px; }
  .package-showcase-inner { padding: 0 20px; gap: 36px; }
  .psi-h { font-size: 26px; }
  .psi-lead { font-size: 14.5px; }
  .psi-includes-grid { grid-template-columns: 1fr; gap: 14px; }
  .psi-include-card { padding: 22px 22px 20px; }
  .psp { padding: 32px 22px; border-radius: 18px; }
  .psp-head { flex-direction: column; align-items: center; gap: 4px; text-align: center; }
  .psp-row { grid-template-columns: 1fr; gap: 32px; }
  .phone { width: 280px; height: 540px; border-radius: 40px; padding: 10px; }
  .phone-screen { border-radius: 32px; }
  .phone-island { width: 84px; height: 24px; top: 7px; }
}

/* ─── Industry split layout (when package is featured) ───────────── */

.industry-split-section {
  padding: 56px 0 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--grey) 120px);
}
.industry-stack-section {
  padding: 0;
}
.industry-stack {
  display: flex;
  flex-direction: column;
}
.industry-stack > .iblock {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.industry-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 540px);
  gap: 40px;
  align-items: start;
  padding: 0 40px;
  max-width: none;
}
#featured-package { scroll-margin-top: 100px; }
html { scroll-behavior: smooth; }
.industry-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.industry-aside {
  position: sticky;
  top: 24px;
  align-self: start;
  z-index: 5;
}

.iblock {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
}
.iblock-grey { background: var(--grey); }
.iblock-navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border-color: var(--navy-2);
  overflow: hidden;
}
.iblock-navy::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 181, 180, 0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.1), transparent 55%);
  pointer-events: none;
}
.iblock-navy > * { position: relative; z-index: 1; }
.iblock-navy .h2 { color: var(--white); }
.iblock-navy .h2 .accent { color: var(--teal-3); }
.iblock-navy .lead { color: rgba(255,255,255,0.78); }
.iblock-navy .eyebrow { color: var(--teal-3); }
.iblock-navy .eyebrow::before { background: var(--teal-3); }

.iblock .sec-head { margin-bottom: 8px; }

/* Compact mode overrides — used inside split layout */
.iblock.is-compact { padding: 32px 32px; }
.iblock.is-compact .h2 { font-size: clamp(24px, 2.4vw, 32px); }
.iblock.is-compact .pain-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.iblock.is-compact .pain-card { padding: 22px; }
.iblock.is-compact .pain-title { font-size: 17px; }
.iblock.is-compact .pain-desc { font-size: 14px; }
.iblock.is-compact .cap-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
.iblock.is-compact .cap-card { padding: 24px; }
.iblock.is-compact .cap-title { font-size: 18px; }
.iblock.is-compact .flow-rail { grid-template-columns: 1fr 1fr; gap: 24px 28px; margin-top: 24px; }
.iblock.is-compact .flow-step { padding-right: 12px; }
.iblock.is-compact .support-panel {
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.iblock.is-compact .support-list { gap: 14px; }
.iblock.is-compact .support-list li { padding: 14px 16px; }

/* ─── Seasonal package — sticky aside ─────────────────────────────── */

.pkg-aside {
  width: 100%;
  max-width: 480px;
}
.pkg-aside-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.pkg-pulse {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 1.6s infinite;
}

.pkg-aside-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 1px solid var(--navy-2);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 28px 56px rgba(11,46,77,0.32), 0 8px 16px rgba(11,46,77,0.18);
  overflow: hidden;
  color: var(--white);
}
.pkg-aside-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, #4285F4 33%, #EA4335 66%, var(--green) 100%);
  z-index: 2;
}
.pkg-aside-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 181, 180, 0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.10), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.pkg-aside-card > * { position: relative; z-index: 1; }

.pkg-aside-head {
  margin-bottom: 18px;
}
.pkg-aside-eyebrow {
  font-size: 10.5px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-3);
  margin-bottom: 8px;
}
.pkg-aside-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0;
}
.pkg-aside-title .accent { color: var(--teal-3); }

.pkg-aside-offer {
  background: rgba(46, 181, 180, 0.12);
  border: 1px solid rgba(46, 181, 180, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 22px;
  backdrop-filter: blur(2px);
}
.pkg-aside-offer-tag {
  font-size: 9.5px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-3);
  margin-bottom: 4px;
}
.pkg-aside-offer-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.pkg-section {
  margin-bottom: 22px;
}
.pkg-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.pkg-section-eyebrow {
  font-size: 10.5px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-3);
  font-weight: 700;
}
.pkg-section-meta {
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
}

/* The four prominent deliverable tiles */
.pkg-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pkg-tile {
  position: relative;
  display: grid;
  grid-template-columns: 18px 36px 1fr 16px;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 14px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--white);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.28s,
              filter 0.2s;
  box-shadow: 0 4px 14px rgba(11,46,77,0.12), 0 1px 2px rgba(11,46,77,0.05);
}
.pkg-tile::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
}
.pkg-tile-teal { background: linear-gradient(135deg, #2EB5B4 0%, #1F8C8B 100%); }
.pkg-tile-fb { background: linear-gradient(135deg, #1877F2 0%, #0B5BC8 100%); }
.pkg-tile-google { background: linear-gradient(135deg, #4285F4 0%, #EA4335 100%); }
.pkg-tile-green { background: linear-gradient(135deg, #22C55E 0%, #15803D 100%); }
.pkg-tile:hover, .pkg-tile.is-active {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 14px 28px rgba(11,46,77,0.22), 0 4px 8px rgba(11,46,77,0.1);
  filter: saturate(1.1);
}
.pkg-tile.is-active {
  border-color: rgba(255,255,255,0.55);
}
.pkg-tile.is-active::after {
  content: "";
  position: absolute;
  bottom: 6px; left: 12px; right: 12px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
}
.pkg-tile-num {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  align-self: flex-start;
  margin-top: 2px;
}
.pkg-tile-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.pkg-tile-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}
.pkg-tile:hover .pkg-tile-icon,
.pkg-tile.is-active .pkg-tile-icon {
  background: rgba(255,255,255,0.32);
  border-color: rgba(255,255,255,0.5);
}
.pkg-tile-info {
  min-width: 0;
  position: relative;
  z-index: 1;
}
.pkg-tile-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--white);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pkg-tile-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pkg-tile-arr {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: transform 0.25s, color 0.25s;
}
.pkg-tile:hover .pkg-tile-arr,
.pkg-tile.is-active .pkg-tile-arr {
  transform: translateX(3px);
  color: var(--white);
}

/* Active preview area — light "window" inside the navy card */
.pkg-preview {
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.pkg-preview-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed var(--line-2);
}
.pkg-preview-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
}
.pkg-preview-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.pkg-preview-pip {
  margin-left: auto;
  display: inline-flex;
  gap: 4px;
}
.pkg-preview-pip span {
  width: 6px; height: 6px;
  background: var(--line-2);
  border-radius: 50%;
  transition: background 0.2s, width 0.2s;
}
.pkg-preview-pip span.is-on {
  background: var(--teal);
  width: 16px;
  border-radius: 3px;
}
.pkg-preview-stage {
  background: var(--white);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  animation: pkgFade 0.32s ease;
  min-height: 220px;
  max-height: 360px;
  overflow: auto;
}
.pkg-preview-stage::-webkit-scrollbar { width: 6px; }
.pkg-preview-stage::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
@keyframes pkgFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tighter mock styles inside the small preview */
.pkg-preview-stage .lp-mock,
.pkg-preview-stage .fb-mock,
.pkg-preview-stage .gbp-mock,
.pkg-preview-stage .email-mock {
  box-shadow: none;
}
.pkg-preview-stage .fb-overlay-badge { font-size: 30px; }
.pkg-preview-stage .lp-headline { font-size: 18px; }
.pkg-preview-stage .lp-form { grid-template-columns: 1fr 1fr; }

/* 7-day timeline (on navy) */
.pkg-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.pkg-week-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  min-height: 56px;
  backdrop-filter: blur(2px);
}
.pkg-week-cell:hover {
  border-color: var(--teal-3);
  background: rgba(46,181,180,0.18);
  transform: translateY(-1px);
  z-index: 2;
}
.pkg-week-day {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--teal-3);
  font-weight: 700;
}
.pkg-week-text {
  font-size: 8.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.25;
  font-weight: 500;
}

.pkg-cta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.pkg-price-v {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pkg-price-n {
  font-size: 10px;
  color: rgba(255,255,255,0.62);
  margin-top: 3px;
  max-width: 110px;
  line-height: 1.3;
}
.pkg-cta {
  width: 100%;
  justify-content: center;
}

/* ─── Hero "Featured package" button ─────────────────────────────── */

.btn-package {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 16px;
  margin-bottom: 16px;
  background: linear-gradient(120deg, #2EB5B4 0%, #4285F4 35%, #EA4335 70%, #22C55E 100%);
  background-size: 220% 220%;
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  box-shadow: 0 12px 28px rgba(11,46,77,0.45), 0 0 0 1px rgba(255,255,255,0.12) inset;
  transition: transform 0.25s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.25s, background-position 0.6s;
  animation: pkgShimmer 8s linear infinite;
  max-width: 100%;
}
@keyframes pkgShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.btn-package::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: inherit;
  filter: blur(14px);
  opacity: 0.55;
  z-index: -1;
}
.btn-package:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11,46,77,0.55), 0 0 0 1px rgba(255,255,255,0.2) inset;
}
.btn-package:hover::after { opacity: 0.8; }
.btn-package-pulse {
  width: 10px; height: 10px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.65);
  animation: pkgBtnPulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pkgBtnPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.btn-package-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  min-width: 0;
}
.btn-package-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.92;
}
.btn-package-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-package svg { flex-shrink: 0; }

/* Responsive: collapse split below 1100px */
@media (max-width: 1100px) {
  .industry-split { grid-template-columns: 1fr; gap: 28px; padding: 0 24px; }
  .industry-aside {
    position: static;
    max-width: 100%;
  }
  .pkg-aside { max-width: 100%; }
  .iblock.is-compact .flow-rail { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .industry-split-section { padding: 32px 0 56px; }
  .industry-split { gap: 20px; padding: 0 16px; }
  .iblock, .iblock.is-compact { padding: 24px 22px; }
  .iblock.is-compact .pain-grid { grid-template-columns: 1fr; }
  .iblock.is-compact .flow-rail { grid-template-columns: 1fr; }
  .pkg-tiles { grid-template-columns: 1fr; }
  .pkg-week { grid-template-columns: repeat(4, 1fr); }
  .pkg-aside-card { padding: 22px; }
  .pkg-cta-row { grid-template-columns: 1fr; }
  .btn-package-name { font-size: 13px; }
}

/* ─── Seasonal package section ───────────────────────────────────── */

.package-section {
  position: relative;
}

.package-banner {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.package-banner-copy {
  padding: 40px 44px;
  border-right: 1px solid var(--line);
}
.package-offer-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.package-offer-h {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.package-offer-sub {
  color: var(--ink, #475569);
  margin: 0 0 28px;
  line-height: 1.55;
}
.package-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.package-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.45;
}
.package-includes li svg {
  flex: none;
  color: var(--green);
  margin-top: 4px;
}

.package-banner-side {
  padding: 32px 32px 32px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.package-week-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.package-week-num {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--teal-3);
}
.package-week-lbl {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.package-week {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.package-week li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.package-week li:last-child { border-bottom: none; }
.package-week-d {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--teal-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.package-week-t {
  color: rgba(255,255,255,0.92);
  line-height: 1.35;
}
.package-price {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.package-price-v {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.package-price-n {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.deliverables-head {
  margin-top: 72px;
  text-align: center;
}
.deliverables-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.deliverable-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.deliverable-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.deliverable-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.deliverable-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--grey);
  border-radius: 999px;
}
.deliverable-meta {
  font-size: 12px;
  color: var(--ink, #64748B);
}
.deliverable-mock-wrap {
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 360px;
}
.deliverable-cap {
  font-size: 14px;
  color: var(--ink, #475569);
  line-height: 1.55;
  margin: 0;
}

/* Landing page mock */
.lp-mock {
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-family: var(--sans);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #F2F4F7;
  border-bottom: 1px solid var(--line);
}
.browser-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.browser-url {
  margin-left: 10px;
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--ink, #475569);
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser-url svg { color: #94A3B8; }
.lp-body {
  padding: 18px 18px 20px;
}
.lp-hero-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 11px;
}
.lp-brand {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--navy);
}
.lp-mark {
  width: 14px; height: 14px;
  background: var(--teal);
  border-radius: 4px;
}
.lp-nav { color: #94A3B8; font-size: 10px; }
.lp-headline {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.lp-headline .accent { color: var(--teal); }
.lp-sub {
  font-size: 12px;
  color: var(--ink, #475569);
  line-height: 1.5;
  margin-bottom: 16px;
}
.lp-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.lp-input {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  color: #94A3B8;
}
.lp-cta {
  grid-column: span 2;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.lp-trust {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 10px;
  color: var(--ink, #64748B);
  border-top: 1px dashed var(--line);
  padding-top: 10px;
}

/* Facebook ad mock */
.fb-mock {
  width: 100%;
  background: var(--white);
  border: 1px solid #E4E6EB;
  border-radius: 8px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, var(--sans);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.fb-head {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  padding: 12px;
  align-items: center;
}
.fb-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em;
}
.fb-name {
  font-size: 13px;
  font-weight: 600;
  color: #050505;
}
.fb-meta {
  font-size: 11px;
  color: #65676B;
  margin-top: 2px;
}
.fb-dots {
  color: #65676B;
  font-size: 18px;
  padding: 0 4px;
  cursor: pointer;
}
.fb-body {
  padding: 0 12px 12px;
  font-size: 13px;
  color: #050505;
  line-height: 1.4;
}
.fb-image {
  position: relative;
  aspect-ratio: 1.91 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.fb-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,46,77,0.55) 0%, rgba(11,46,77,0.15) 50%, rgba(11,46,77,0.0) 100%);
}
.fb-overlay {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.fb-overlay-small {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.92;
}
.fb-overlay-badge {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--teal-3);
  text-shadow: 0 2px 10px rgba(11,46,77,0.45);
  margin-bottom: 6px;
}
.fb-overlay-line {
  font-size: 10px;
  letter-spacing: 0.05em;
  opacity: 0.94;
}
.fb-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: #F0F2F5;
  border-top: 1px solid #E4E6EB;
  border-bottom: 1px solid #E4E6EB;
}
.fb-cta {
  background: #1877F2;
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.fb-actions {
  display: flex;
  justify-content: space-around;
  padding: 8px 12px;
  font-size: 12px;
  color: #65676B;
}

/* Google Business Profile mock */
.gbp-mock {
  width: 100%;
  background: var(--white);
  font-family: arial, sans-serif;
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.gbp-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.gbp-google {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.gbp-card {
  padding: 16px;
}
.gbp-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.gbp-thumb {
  width: 64px; height: 64px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  position: relative;
  flex-shrink: 0;
}
.gbp-thumb::after {
  content: "PH";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.gbp-name {
  font-size: 16px;
  font-weight: 500;
  color: #1A0DAB;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gbp-ad-tag {
  font-size: 11px;
  font-weight: 700;
  color: #006621;
  border: 1px solid #006621;
  border-radius: 3px;
  padding: 1px 5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.gbp-rating {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: #5F6368;
  margin-bottom: 4px;
}
.gbp-snippet {
  font-size: 13px;
  color: #4D5156;
  line-height: 1.4;
  margin-bottom: 4px;
}
.gbp-status {
  font-size: 12px;
  color: #5F6368;
}
.gbp-actions {
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  flex-wrap: wrap;
}
.gbp-btn {
  background: var(--white);
  color: #1A73E8;
  border: 1px solid #DADCE0;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}
.gbp-btn:hover { background: #F8F9FA; }

/* Email nurture mock */
.email-mock {
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
}
.email-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
}
.email-folder {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.email-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--teal-3);
}
.email-list {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.email-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.email-row:last-child { border-bottom: none; }
.email-row.is-open {
  background: #F0F9F8;
  border-left: 3px solid var(--teal);
  padding-left: 13px;
}
.email-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(46, 181, 180, 0.08);
  border: 1px solid rgba(46, 181, 180, 0.2);
  border-radius: 4px;
  padding: 4px 6px;
  height: fit-content;
  text-align: center;
}
.email-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink, #64748B);
  margin-bottom: 4px;
}
.email-from { font-weight: 600; color: var(--navy); }
.email-subject {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
  letter-spacing: -0.005em;
}
.email-snippet {
  font-size: 11.5px;
  color: var(--ink, #64748B);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.email-conn {
  position: absolute;
  left: 51px;
  bottom: -1px;
  width: 2px;
  height: 8px;
  background: var(--teal-3);
  z-index: 1;
}

.package-foot {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.package-foot-copy {
  flex: 1;
  min-width: 280px;
}
.package-foot-copy .lead {
  margin: 8px 0 0;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .package-banner { grid-template-columns: 1fr; }
  .package-banner-copy { border-right: none; border-bottom: 1px solid var(--line); }
  .deliverables-grid { grid-template-columns: 1fr; }
  .deliverable-mock-wrap { min-height: 320px; }
}
@media (max-width: 720px) {
  .package-banner-copy { padding: 28px 24px; }
  .package-banner-side { padding: 24px 24px; }
  .package-foot { padding: 24px; flex-direction: column; align-items: flex-start; }
  .package-week-num { font-size: 48px; }
}

/* ─── Custom AI Engineering page ──────────────────────────────────── */

.cai-hero {
  position: relative;
  padding: 140px 0 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cai-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(11,46,77,0.45), transparent 65%);
  pointer-events: none;
}
.cai-hero .container { position: relative; z-index: 2; }
.cai-hero-inner { max-width: 820px; }
.cai-hero .eyebrow,
.cai-hero .eyebrow-light { color: var(--teal-3); }
.cai-hero .eyebrow::before { background: var(--teal-3); }
.cai-hero-h1 {
  color: var(--white);
  margin: 20px 0 24px;
  font-size: clamp(38px, 4.6vw, 60px);
  letter-spacing: -0.02em;
  line-height: 1.06;
}
.cai-hero-h1 .accent { color: var(--teal-3); }
.cai-hero-lead {
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.cai-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 56px;
  padding: 28px 0;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  width: fit-content;
}
.cai-hero-stat .v {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cai-hero-stat .l {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cai-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Pitfall grid ──────────────────────────────────────────────── */

.cai-pitfall-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cai-pitfall {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid #EF4444;
  border-radius: var(--r-lg);
  padding: 28px 32px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cai-pitfall:hover {
  border-left-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cai-pitfall-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #EF4444;
  margin-bottom: 12px;
  font-weight: 700;
}
.cai-pitfall:hover .cai-pitfall-num { color: var(--teal); }
.cai-pitfall-t {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.cai-pitfall-d {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ─── 4-phase rail ──────────────────────────────────────────────── */

.cai-phase-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  position: relative;
}
.cai-phase {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 32px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.cai-phase:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cai-phase-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.cai-phase-num {
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-family: var(--mono);
}
.cai-phase:hover .cai-phase-num {
  background: var(--teal);
}
.cai-phase-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.cai-phase-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.cai-phase-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 18px;
}
.cai-phase-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.cai-phase-bullets li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 10px;
  align-items: start;
}
.cai-phase-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 6px;
}
.cai-phase-bullets strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.cai-phase-bullets span {
  display: block;
  font-size: 12px;
  color: #64748B;
  line-height: 1.4;
}
.cai-phase-arr {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

/* ─── Agent anatomy diagram ──────────────────────────────────────── */

.cai-agent-diagram {
  display: grid;
  grid-template-columns: 1fr 32px 1.4fr 32px 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 56px;
}
.cai-agent-col {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.cai-agent-core {
  background: linear-gradient(180deg, rgba(46,181,180,0.15) 0%, rgba(46,181,180,0.05) 100%);
  border-color: rgba(46,181,180,0.4);
}
.cai-agent-col-h {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.cai-agent-col-h-light { color: var(--teal-3); }
.cai-agent-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.cai-agent-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.cai-agent-list li > span {
  font-size: 18px;
  margin-top: -2px;
}
.cai-agent-list strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.cai-agent-list span:not(:first-child) {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
}
.cai-agent-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-3);
}
.cai-agent-stack {
  display: grid;
  gap: 10px;
}
.cai-agent-piece {
  background: linear-gradient(135deg, var(--teal) 0%, #4285F4 100%);
  color: var(--white);
  border-radius: 999px;
  padding: 14px 22px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(46,181,180,0.25);
  transition: transform 0.25s;
}
.cai-agent-piece:hover { transform: translateY(-2px); }
.cai-agent-piece-2 { background: linear-gradient(135deg, #6366F1 0%, #4285F4 100%); }
.cai-agent-piece-3 { background: linear-gradient(135deg, #4285F4 0%, var(--navy-3) 100%); }
.cai-agent-piece-t {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.cai-agent-piece-d {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

/* Tool calls panel */
.cai-agent-tools {
  margin-top: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-lg);
  padding: 32px;
}
.cai-agent-tools-h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
  flex-wrap: wrap;
  gap: 10px;
}
.cai-agent-tools-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-3);
  font-weight: 700;
}
.cai-agent-tools-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
}
.cai-agent-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cai-agent-tool {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 22px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.cai-agent-tool:hover {
  border-color: var(--teal-3);
  background: rgba(46,181,180,0.1);
  transform: translateY(-2px);
}
.cai-agent-tool-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.cai-agent-tool-t {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cai-agent-tool-d {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

/* ─── Why our process avoids pitfalls ──────────────────────────── */

.cai-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.cai-why {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  align-items: start;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cai-why:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cai-why-tick {
  width: 40px;
  height: 40px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.cai-why:hover .cai-why-tick {
  background: rgba(34,197,94,0.22);
  transform: scale(1.05);
}
.cai-why-t {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.cai-why-d {
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* ─── Engagement model ────────────────────────────────────────── */

.cai-engage {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 56px;
  box-shadow: var(--shadow-md);
}
.cai-engage-copy h2 { margin: 12px 0 16px; }
.cai-engage-copy .lead { margin: 0 0 28px; }
.cai-engage-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: cai-engage;
}
.cai-engage-steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 22px;
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: start;
  transition: border-color 0.2s, background 0.2s;
}
.cai-engage-steps li:hover {
  border-color: var(--teal);
  background: var(--white);
}
.cai-engage-num {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.01em;
  line-height: 1;
}
.cai-engage-steps strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cai-engage-steps span {
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
  .cai-phase-rail { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cai-phase-arr { display: none; }
  .cai-agent-diagram {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cai-agent-arrow { transform: rotate(90deg); padding: 8px 0; }
  .cai-engage { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
}
@media (max-width: 720px) {
  .cai-hero { padding: 100px 0 80px; }
  .cai-hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cai-pitfall-grid, .cai-why-grid { grid-template-columns: 1fr; }
  .cai-phase-rail { grid-template-columns: 1fr; }
  .cai-agent-tools-grid { grid-template-columns: 1fr; }
  .cai-engage { padding: 28px 22px; }
  .cai-engage-steps li { padding: 14px 16px; }
}

/* Onboarding (Typeform-style survey) ─────── */
body.ob-body { background: linear-gradient(180deg, #F7FAFC 0%, #FFFFFF 100%); min-height: 100vh; }

.ob-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.ob-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}
.ob-header-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 6px 12px;
  border: 1px solid rgba(46, 181, 180, 0.3);
  border-radius: 999px;
  background: rgba(46, 181, 180, 0.06);
}

.ob-progress-bar {
  position: sticky;
  top: 73px;
  z-index: 49;
  height: 3px;
  background: var(--line);
}
.ob-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--green) 100%);
  transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(46, 181, 180, 0.5);
}

.ob-main {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 24px 80px;
}
.ob-shell {
  width: 100%;
  max-width: 720px;
  animation: obFade 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes obFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.ob-step-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ob-step-num {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(46, 181, 180, 0.1);
  color: var(--teal);
  border-radius: 6px;
  font-weight: 600;
}
.ob-step-num span {
  color: var(--text-muted);
  font-weight: 400;
}
.ob-step-section {
  color: var(--text-muted);
  font-weight: 500;
}

.ob-intro {
  text-align: left;
  padding: 32px 0;
}
.ob-intro .eyebrow { margin-bottom: 24px; }
.ob-h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 20px;
}
.ob-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 32px;
}
.ob-sub-lg {
  font-size: 19px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 32px;
}
.ob-intro-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  gap: 14px;
}
.ob-intro-list li {
  position: relative;
  padding: 14px 18px 14px 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
}
.ob-intro-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 7l3 3 5-6' stroke='%2322C55E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.ob-btn-lg {
  font-size: 15px !important;
  padding: 16px 28px !important;
}

.ob-step { padding: 8px 0; }
.ob-q {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 14px;
}
.ob-step .ob-sub {
  font-size: 16px;
  margin-bottom: 28px;
}

.ob-input,
.ob-textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--line-2);
  border-radius: 0;
  padding: 14px 4px;
  outline: none;
  transition: border-color 0.2s ease;
}
.ob-input::placeholder,
.ob-textarea::placeholder {
  color: var(--grey-3);
  font-weight: 400;
}
.ob-input:focus,
.ob-textarea:focus {
  border-bottom-color: var(--teal);
}
.ob-textarea {
  font-size: 18px;
  line-height: 1.55;
  resize: vertical;
  min-height: 120px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  background: var(--white);
}
.ob-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(46, 181, 180, 0.12);
}

.ob-options {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.ob-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: var(--shadow-sm);
}
.ob-option:hover {
  border-color: var(--teal);
  background: rgba(46, 181, 180, 0.04);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.ob-option.is-selected {
  border-color: var(--teal);
  background: rgba(46, 181, 180, 0.08);
  color: var(--teal);
}
.ob-option-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  flex-shrink: 0;
  margin-left: 14px;
  transition: all 0.18s ease;
}
.ob-option.is-selected .ob-option-check {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.ob-help {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(245, 247, 250, 0.6);
  overflow: hidden;
}
.ob-help summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  list-style: none;
  user-select: none;
}
.ob-help summary::-webkit-details-marker { display: none; }
.ob-help summary:hover { color: var(--teal); }
.ob-help-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46, 181, 180, 0.15);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.ob-help-arr {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 12px;
  transition: transform 0.2s ease;
}
.ob-help[open] .ob-help-arr { transform: rotate(180deg); }
.ob-help-steps {
  margin: 0;
  padding: 4px 16px 18px 44px;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.65;
  display: grid;
  gap: 6px;
}
.ob-help-steps li::marker { color: var(--teal); font-weight: 600; }

.ob-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.ob-actions .btn-ghost {
  color: var(--text-muted);
}
.ob-actions .btn-ghost:hover { color: var(--navy); }
.ob-actions button:disabled,
.ob-actions a[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.ob-actions .btn-primary:disabled {
  background: var(--line-2);
  box-shadow: none;
}

.ob-review {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 8px;
}
.ob-review-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 18px;
  background: var(--white);
  font-size: 14.5px;
}
.ob-review-label {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ob-review-value {
  color: var(--navy);
  font-weight: 500;
  word-break: break-word;
}

.ob-done {
  text-align: center;
  padding: 60px 0;
}
.ob-done-check {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  animation: obPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes obPop {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}
.ob-done .ob-h1 { margin-bottom: 18px; }
.ob-done-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 36px;
  padding: 10px 18px;
  background: rgba(245, 247, 250, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
}
.ob-done-link {
  color: var(--teal);
  font-weight: 500;
}
.ob-done-link:hover { text-decoration: underline; }
.ob-done-sep { color: var(--grey-3); }
.ob-done-back { display: inline-flex; }

@media (max-width: 720px) {
  .ob-header-row { padding: 14px 20px; }
  .ob-progress-bar { top: 65px; }
  .ob-main { padding: 32px 18px 56px; }
  .ob-h1 { font-size: 32px; }
  .ob-q { font-size: 24px; }
  .ob-input { font-size: 19px; }
  .ob-step-meta { gap: 8px; flex-wrap: wrap; }
  .ob-review-row { grid-template-columns: 1fr; gap: 4px; }
  .ob-actions { flex-direction: column-reverse; align-items: stretch; }
  .ob-actions .btn { justify-content: center; width: 100%; }
}

/* Blog ────────────────────────────────────────────────────── */
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }

.blog-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--grey) 0%, #FFFFFF 100%);
  text-align: center;
}
.blog-hero .eyebrow { justify-content: center; margin-bottom: 18px; }
.blog-hero .h1 { max-width: 800px; margin: 0 auto 18px; }
.blog-hero .lead { max-width: 640px; margin: 0 auto; color: var(--text-muted); }

.sec-tight { padding: 60px 0 100px; }

.blog-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.blog-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.blog-feature-img {
  background-size: cover;
  background-position: center;
  min-height: 360px;
}
.blog-feature-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-feature-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin: 14px 0 14px;
}
.blog-feature-excerpt {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}
.blog-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
}
.blog-feature-link svg { transition: transform 0.2s ease; }
.blog-feature:hover .blog-feature-link svg { transform: translateX(3px); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 181, 180, 0.4);
}
.blog-card-img {
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 9;
}
.blog-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 12px 0 10px;
}
.blog-card-excerpt {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}
.blog-card-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.blog-meta-cat {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  background: rgba(46, 181, 180, 0.10);
  color: var(--teal);
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 11px;
}
.blog-meta-dot { color: var(--grey-3); }

/* Single post layout ──────────────── */
.post-shell { padding: 100px 0 80px; }

.post-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.post-back {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 500;
}
.post-back:hover { color: var(--teal); }

.post-h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--navy);
  margin: 0 0 22px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.post-hero {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 56px;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-xl);
}

.post-tldr {
  background: linear-gradient(135deg, rgba(46, 181, 180, 0.08) 0%, rgba(34, 197, 94, 0.06) 100%);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin: 0 0 28px;
}
.post-tldr-label {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}
.post-tldr p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--navy);
  font-weight: 500;
}

.post-takeaways {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px 24px;
  margin: 0 0 44px;
  box-shadow: var(--shadow-sm);
}
.post-takeaways-label {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.post-takeaways ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.post-takeaways li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}
.post-takeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 7l3 3 5-6' stroke='%2322C55E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

/* Body typography ──────── */
.blog-body { color: var(--text); }
.blog-h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 48px 0 16px;
}
.blog-h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  color: var(--navy);
  margin: 32px 0 10px;
}
.blog-p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--text);
  margin: 0 0 18px;
}
.blog-ul, .blog-ol {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  padding-left: 24px;
  margin: 0 0 22px;
}
.blog-ul li, .blog-ol li { margin-bottom: 10px; }
.blog-ul li::marker { color: var(--teal); }
.blog-ol li::marker { color: var(--teal); font-weight: 700; }

.blog-callout {
  background: rgba(46, 181, 180, 0.06);
  border: 1px solid rgba(46, 181, 180, 0.25);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 28px 0;
}
.blog-callout-title {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-callout p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  font-weight: 500;
}

.blog-quote {
  margin: 32px 0;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--teal);
}
.blog-quote p {
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  margin: 0 0 8px;
}
.blog-quote cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ ──────────────── */
.post-faq { margin-top: 56px; }
.post-faq .blog-h2 { margin-top: 0; }
.post-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.post-faq-item summary {
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.post-faq-item summary::-webkit-details-marker { display: none; }
.post-faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--teal);
  transition: transform 0.2s ease;
}
.post-faq-item[open] summary::after { content: "−"; }
.post-faq-item p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

/* In-post CTA ─────── */
.post-cta {
  margin: 64px 0 32px;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--r-xl);
  color: var(--white);
  text-align: center;
}
.post-cta h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--white);
}
.post-cta p {
  margin: 0 0 20px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive ─────── */
@media (max-width: 960px) {
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature-img { min-height: 240px; }
  .blog-feature-body { padding: 32px 28px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .blog-hero { padding: 100px 0 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-hero { height: 240px; margin-bottom: 40px; }
  .post-h1 { font-size: 30px; }
  .blog-h2 { font-size: 22px; margin-top: 36px; }
  .blog-p, .blog-ul, .blog-ol { font-size: 16px; }
  .post-tldr, .post-takeaways, .blog-callout { padding: 18px 20px; }
  .post-cta { padding: 28px 22px; }
  .post-cta h3 { font-size: 20px; }
}
