/* ==========================================================================
   Start My Tradie — styles.css
   1. Tokens
   2. Reset & base
   3. Utilities
   4. Buttons & shared components
   5. Header & navigation
   6. Hero
   7. Trust bar
   8. Features
   9. Pricing
  10. Industries
  11. Website preview carousel
  12. CRM
  13. Booking flow
  14. SEO
  15. Comparison table
  16. Process
  17. Testimonials
  18. FAQ
  19. Contact
  20. Footer & sticky CTA
  21. Motion / reveal
  22. Responsive
  ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand — sampled from the Start My Tradie logo. Navy + blue only; the mark
     carries no green, so green is reserved for success states (ticks,
     confirmations) and never used in brand gradients. */
  /* Sampled from the Start My Tradie logo artwork (assets/brand/). */
  --navy: #08203F;        /* "Start" / "Tradie" wordmark, house outline */
  --blue-700: #0058C8;    /* pressed / hover */
  --blue: #0068E4;        /* "Tradie" wordmark, check mark, primary */
  --blue-light: #2A87F5;  /* check-mark highlight */
  --blue-400: #6BAEFF;
  --blue-100: #C9DFFF;
  --blue-50: #EAF2FF;

  /* Accent — the arrow and the "My" in the wordmark. Used sparingly. */
  --orange: #F97C0A;
  --orange-600: #DD6A00;
  --orange-50: #FFF3E6;
  --green: #10B981;       /* success only */
  --green-600: #059669;
  --green-50: #ECFDF5;

  /* Neutrals */
  --ink: #08203F;
  --ink-soft: #14314F;
  --muted: #44566B;
  --muted-light: #8A94A6;
  --line: #E7EBF3;
  --line-soft: #F0F3F9;
  --surface: #FFFFFF;
  --tint: #F6F9FE;
  --tint-blue: #F1F7FF;

  /* Type */
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(15, 23, 42, .05);
  --sh-sm: 0 2px 8px rgba(15, 23, 42, .05), 0 1px 2px rgba(15, 23, 42, .04);
  --sh-md: 0 10px 30px -12px rgba(15, 23, 42, .14), 0 2px 8px rgba(15, 23, 42, .04);
  --sh-lg: 0 28px 60px -24px rgba(15, 23, 42, .22), 0 8px 20px -12px rgba(15, 23, 42, .1);
  --sh-blue: 0 12px 28px -10px rgba(13, 134, 255, .42);
  --sh-blue-hover: 0 18px 38px -12px rgba(13, 134, 255, .52);

  /* Layout */
  --wrap: 1180px;
  --gutter: 24px;
  --header-h: 74px;
  --ease: cubic-bezier(.22, .78, .3, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); letter-spacing: -.038em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); letter-spacing: -.032em; }
h3 { font-size: 1.08rem; line-height: 1.35; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--blue-700); }

ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 6px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-sm);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); color: #fff; }

/* ---------- 3. Utilities ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap.narrow { max-width: 820px; }

.section { padding: clamp(64px, 8vw, 108px) 0; position: relative; }
.section-tint { background: var(--tint); }
.section-tint + .section-tint { padding-top: 0; }

.section-head { max-width: 660px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 1.06rem; }
.section-sub.left { text-align: left; }

.kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.kicker.light { background: rgba(255,255,255,.14); color: #fff; }

.visually-hidden, .hp {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.i { width: 20px; height: 20px; flex: none; display: inline-block; vertical-align: middle; }
.rot-l { transform: rotate(-90deg); }
.rot-r { transform: rotate(90deg); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn .i { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .i { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 55%, var(--blue-700) 100%);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--sh-blue-hover); }

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--sh-sm);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--blue-100); transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn-outline {
  background: #fff;
  color: var(--blue-700);
  border-color: var(--blue-100);
}
.btn-outline:hover { background: var(--blue-50); color: var(--blue-700); transform: translateY(-2px); }

.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px -16px rgba(15, 23, 42, .3);
  background: rgba(255, 255, 255, .92);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.logo-mark { display: inline-flex; filter: drop-shadow(0 4px 10px rgba(13, 134, 255, .3)); }
.logo-text {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}
.logo-text span { color: var(--blue); }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  color: var(--muted);
  font-size: .94rem;
  font-weight: 600;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); }
.nav a.is-current { color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 14px; margin-left: 8px; }
.tel-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 700;
}
.tel-link .i { width: 17px; height: 17px; color: var(--blue); }
.tel-link:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-left: auto;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.scroll-progress {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transition: width .1s linear;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  padding: 24px var(--gutter) 40px;
  background: #fff;
  overflow-y: auto;
  animation: navIn .28s var(--ease);
}
.mobile-nav[hidden] { display: none; }
@keyframes navIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-nav nav { display: grid; margin-bottom: 22px; }
.mobile-nav nav a {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
}
.mobile-tel {
  display: block;
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- 6. Hero ---------- */
.hero { position: relative; padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 64px); overflow: hidden; }

.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.blob-a {
  width: 620px; height: 620px;
  top: -240px; right: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(111, 190, 255, .55), rgba(111, 190, 255, 0) 70%);
}
.blob-b {
  width: 520px; height: 520px;
  top: 180px; left: -220px;
  background: radial-gradient(circle at 60% 40%, rgba(27, 163, 254, .3), rgba(27, 163, 254, 0) 70%);
}
.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 134, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 134, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 20%, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  box-shadow: var(--sh-xs);
  color: var(--muted);
  font-size: .85rem;
  font-weight: 600;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(13, 134, 255, .18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(13, 134, 255, .18); }
  50% { box-shadow: 0 0 0 8px rgba(13, 134, 255, .04); }
}

.hero-copy h1 { margin-bottom: 22px; }
.hl {
  position: relative;
  white-space: nowrap;
  background: linear-gradient(120deg, var(--orange) 0%, #FF9F42 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .04em;
  height: .13em;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(249, 124, 10, .22), rgba(255, 159, 66, .3));
}

.lede { max-width: 34em; color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.17rem); }
.lede strong { color: var(--ink); font-weight: 800; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }

.hero-ticks { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-ticks li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}
.hero-ticks .i { width: 16px; height: 16px; color: var(--green); }

/* Hero visual */
.hero-visual { position: relative; }
.tilt { position: relative; transform-style: preserve-3d; transition: transform .4s var(--ease); will-change: transform; }

.browser {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: var(--tint);
  border-bottom: 1px solid var(--line);
}
.dots { display: inline-flex; gap: 6px; }
.dots i { width: 9px; height: 9px; border-radius: 50%; background: #D7DEEA; }
.dots i:first-child { background: #FFB9AE; }
.dots i:nth-child(2) { background: #FFE0A3; }
.dots i:nth-child(3) { background: #B7EFCB; }
.url {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
}
.url .i { width: 12px; height: 12px; color: var(--green); }

.browser-body { padding: 18px; background: #fff; }

.mock-nav { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.mock-logo { width: 68px; height: 12px; border-radius: 4px; background: var(--ink); }
.mock-links { display: flex; gap: 10px; margin-left: auto; }
.mock-links i { width: 34px; height: 7px; border-radius: 4px; background: var(--line); }
.mock-btn { width: 58px; height: 22px; border-radius: var(--r-pill); background: var(--blue); }

.mock-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; align-items: center; margin-bottom: 18px; }
.mock-lines { display: grid; gap: 9px; }
.l { height: 13px; border-radius: 5px; background: var(--ink); opacity: .88; }
.l.l1 { width: 90%; }
.l.l2 { width: 66%; }
.l.l3 { width: 100%; height: 7px; background: var(--line); opacity: 1; }
.mock-cta { width: 84px; height: 26px; margin-top: 6px; border-radius: var(--r-pill); background: linear-gradient(135deg, var(--blue-light), var(--blue-700)); }
.mock-photo svg { display: block; width: 100%; height: auto; border-radius: 10px; }

.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-cards span { height: 46px; border-radius: 10px; background: var(--tint-blue); border: 1px solid var(--line-soft); }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-md);
  animation: floaty 6s ease-in-out infinite;
}
.float-card[data-float="2"] { animation-duration: 7.5s; animation-delay: -2s; }
.float-card[data-float="3"] { animation-duration: 6.8s; animation-delay: -4s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.fc-icon {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 9px;
  flex: none;
}
.fc-icon.blue { background: var(--blue-50); color: var(--blue); }
.fc-icon.green { background: var(--green-50); color: var(--green-600); }
.fc-icon .i { width: 17px; height: 17px; }
.fc-text { display: grid; line-height: 1.25; }
.fc-text strong { font-size: .82rem; font-weight: 800; color: var(--ink); }
.fc-text em { font-size: .74rem; font-style: normal; color: var(--muted-light); }

.fc-lead { top: 26%; left: -11%; }
.fc-book { bottom: 14%; right: -6%; }
.fc-seo { bottom: -5%; left: 2%; }

.float-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  box-shadow: var(--sh-md);
  animation: floaty 7s ease-in-out infinite;
}
.float-pill .i { width: 14px; height: 14px; }
.fp-crm { top: -18px; right: 14%; }
.fp-mail { top: 44%; right: -10%; background: var(--blue-700); animation-delay: -3s; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(48px, 6vw, 78px);
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--line);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.stat { padding: 26px 20px; text-align: center; background: #fff; }
.stat:first-child { border-radius: 24px 0 0 24px; }
.stat:last-child { border-radius: 0 24px 24px 0; }
.stat-num {
  display: block;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  background: linear-gradient(135deg, var(--orange), #FF9F42);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { display: block; margin-top: 6px; color: var(--muted); font-size: .86rem; font-weight: 600; }

/* ---------- 7. Trust bar ---------- */
.trust { padding: 34px 0 10px; border-top: 1px solid var(--line-soft); }
.trust-title {
  margin-bottom: 20px;
  text-align: center;
  color: var(--muted-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  max-width: 880px;
  margin-inline: auto;
}
.trust-logos li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
  transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.trust-logos li:hover { transform: translateY(-2px); border-color: var(--blue-100); color: var(--ink); }
.trust-logos .i { width: 16px; height: 16px; color: var(--blue); }

/* ---------- 8. Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.feature {
  position: relative;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at 50% -30%, rgba(13, 134, 255, .08), transparent 70%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--blue-100);
  box-shadow: var(--sh-md);
}
.feature:hover::before { opacity: 1; }
.f-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--blue-50), #fff);
  border: 1px solid var(--blue-100);
  color: var(--blue);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.feature:hover .f-icon {
  transform: scale(1.06) rotate(-4deg);
  background: linear-gradient(135deg, var(--blue), var(--blue-700));
  color: #fff;
  border-color: transparent;
}
.f-icon .i { width: 22px; height: 22px; }
.feature h3 { position: relative; margin-bottom: 7px; }
.feature p { position: relative; color: var(--muted); font-size: .93rem; }

/* Closes the grid with an intentional full-width band instead of an orphan card */
.feature-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(135deg, var(--tint-blue), #fff 60%);
}
.feature-wide .f-icon { margin-bottom: 0; }
.feature-wide .fw-copy { flex: 1; min-width: 0; }
.feature-wide p { max-width: 62ch; }
.feature-wide .btn { flex: none; }

/* ---------- 9. Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--sh-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--blue-100); }
.price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(150deg, var(--blue), var(--blue-light)) border-box;
  border: 2px solid transparent;
  box-shadow: var(--sh-lg);
  transform: translateY(-8px);
}
.price-card.featured:hover { transform: translateY(-13px); }

.pc-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--sh-blue);
}
.pc-head h3 { font-size: 1.32rem; margin-bottom: 8px; }
.pc-desc { color: var(--muted); font-size: .9rem; min-height: 3.2em; }
.pc-price { margin: 20px 0 22px; padding-top: 20px; border-top: 1px dashed var(--line); }
.pc-setup { display: block; color: var(--muted); font-size: .92rem; font-weight: 700; }
.pc-setup em { font-style: normal; font-weight: 600; color: var(--muted-light); }
.pc-monthly { display: flex; align-items: baseline; gap: 4px; margin-top: 6px; }
.pc-monthly b {
  font-size: 2.9rem;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--ink);
}
.pc-monthly em { font-style: normal; color: var(--muted); font-weight: 700; }

.pc-list { margin-top: 24px; display: grid; gap: 11px; }
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: .92rem;
}
.pc-list .i { width: 16px; height: 16px; margin-top: 4px; color: var(--green); }
.pc-inherit {
  padding-bottom: 4px;
  color: var(--muted-light);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-foot { margin-top: 28px; text-align: center; color: var(--muted-light); font-size: .86rem; }

/* ---------- 10. Industries ---------- */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 14px;
}
.ind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  color: var(--ink);
  text-align: center;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.ind:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--sh-md); color: var(--ink); }
.ind-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ind:hover .ind-icon { transform: scale(1.09) rotate(-5deg); }
.ind-icon .i { width: 25px; height: 25px; }
.ind-name { font-size: .92rem; font-weight: 700; letter-spacing: -.01em; }

.c1  { background: #EFF4FF; color: #2563EB; }
.c2  { background: #ECFDF5; color: #059669; }
.c3  { background: #FFF1F2; color: #E11D48; }
.c4  { background: #FEF6E7; color: #C2820A; }
.c5  { background: #EEF7FF; color: #0284C7; }
.c6  { background: #FFF3EA; color: #EA580C; }
.c7  { background: #F0FDF4; color: #16A34A; }
.c8  { background: #F5F3FF; color: #7C3AED; }
.c9  { background: #FDF2F8; color: #DB2777; }
.c10 { background: #F1F5F9; color: #475569; }
.c11 { background: #ECFEFF; color: #0891B2; }
.c12 { background: #FEF3C7; color: #B45309; }
.c13 { background: #EEF2FF; color: #4F46E5; }
.c14 { background: #F0F9FF; color: #0369A1; }
.c15 { background: #F7FEE7; color: #4D7C0F; }

.ind-foot { margin-top: 26px; text-align: center; color: var(--muted); font-size: .95rem; }
.ind-foot a { font-weight: 700; }

/* ---------- 11. Preview carousel ---------- */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; padding: 8px 0 4px; }
.carousel-track {
  display: flex;
  transition: transform .55s var(--ease);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 10px clamp(4px, 3vw, 40px) 6px;
  opacity: .35;
  transform: scale(.94);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.slide.is-active { opacity: 1; transform: scale(1); }
.slide-caption { margin-top: 18px; text-align: center; color: var(--muted); font-size: .9rem; font-weight: 600; }

.device { display: flex; justify-content: center; }
.browser-lg { width: 100%; max-width: 780px; }

.tablet-frame {
  width: 100%;
  max-width: 520px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--sh-lg);
}
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 280px;
  padding: 26px 10px 0;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 8px;
  border-radius: 6px;
  background: var(--line);
}
.phone-callbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px -10px 0;
  padding: 13px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-700));
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
}
.phone-callbar .i { width: 16px; height: 16px; }

/* Site mock */
.site-mock { padding: 16px; }
.site-mock.compact { padding: 12px; }
.site-mock.phone { padding: 10px; }
.sm-nav { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sm-logo { font-size: .68rem; font-weight: 800; letter-spacing: .08em; color: var(--ink); }
.sm-links { display: flex; gap: 9px; margin-left: auto; }
.sm-links i { width: 28px; height: 6px; border-radius: 3px; background: var(--line); }
.sm-cta {
  margin-left: auto;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--blue);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
}
.sm-links + .sm-cta { margin-left: 0; }
.sm-burger { display: grid; gap: 3px; margin-left: auto; }
.sm-burger i { width: 15px; height: 2px; border-radius: 2px; background: var(--ink); }

.sm-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 14px; align-items: center; margin-bottom: 14px; }
.sm-hero.stacked { grid-template-columns: 1fr; }
.sm-hero-copy { display: grid; gap: 7px; }
.sm-h1 { height: 12px; border-radius: 4px; background: var(--ink); opacity: .9; }
.sm-h1.short { width: 62%; }
.sm-p { height: 6px; border-radius: 3px; background: var(--line); }
.sm-p.short { width: 74%; }
.sm-buttons { display: flex; gap: 7px; margin-top: 6px; }
.sm-buttons i { display: block; width: 60px; height: 20px; border-radius: var(--r-pill); }
.sm-buttons i.pri { background: linear-gradient(135deg, var(--blue-light), var(--blue-700)); }
.sm-buttons i.pri.wide { width: 100%; }
.sm-buttons i.sec { background: var(--line-soft); border: 1px solid var(--line); }
.sm-hero-img {
  min-height: 92px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 78% 26%, rgba(16, 185, 129, .5) 0 14px, transparent 15px),
    linear-gradient(160deg, #DCE9FF, #EFF4FF);
}
.sm-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.sm-strip span { height: 22px; border-radius: var(--r-pill); background: var(--tint); border: 1px solid var(--line-soft); }
.sm-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sm-cards.two { grid-template-columns: repeat(2, 1fr); }
.sm-cards.one { grid-template-columns: 1fr; }
.sm-cards span {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--tint-blue);
}
.sm-cards i { width: 20px; height: 20px; border-radius: 6px; background: var(--blue-100); }
.sm-cards b { height: 7px; width: 70%; border-radius: 3px; background: var(--ink); opacity: .75; }
.sm-cards em { height: 5px; width: 92%; border-radius: 3px; background: var(--line); }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.c-btn {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.c-btn:hover { transform: translateY(-2px); border-color: var(--blue-100); color: var(--blue); }
.c-dots { display: flex; gap: 8px; }
.c-dot {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: width .25s var(--ease), background .25s var(--ease);
}
.c-dot[aria-selected="true"] { width: 26px; border-radius: var(--r-pill); background: var(--blue); }

/* ---------- 12. Split sections (CRM / SEO) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.split-copy h2 { margin-bottom: 16px; }
.split-copy .btn { margin-top: 26px; }

.check-list { display: grid; gap: 13px; margin-top: 26px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--muted); }
.check-list .i { width: 17px; height: 17px; margin-top: 4px; color: var(--green); }
.check-list strong { color: var(--ink); font-weight: 700; }

.split-visual { position: relative; }
.visual-note { margin-top: 14px; text-align: center; color: var(--muted-light); font-size: .8rem; }

.app-shot {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--sh-lg);
}
.as-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.as-title { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.as-pill {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--green-50);
  color: var(--green-600);
  font-size: .74rem;
  font-weight: 800;
}
.as-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: var(--r-md);
  transition: background .2s var(--ease);
}
.as-row:hover { background: var(--tint); }
.as-row + .as-row { border-top: 1px solid var(--line-soft); }
.as-avatar {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  flex: none;
  border-radius: 11px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.a1 { background: #EFF4FF; color: #2563EB; }
.a2 { background: #ECFDF5; color: #059669; }
.a3 { background: #FEF3C7; color: #B45309; }
.a4 { background: #F5F3FF; color: #7C3AED; }
.as-body { display: grid; min-width: 0; }
.as-body b { font-size: .88rem; font-weight: 700; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.as-body em { font-style: normal; font-size: .76rem; color: var(--muted-light); }
.as-tag {
  margin-left: auto;
  flex: none;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.as-tag.new { background: var(--blue-50); color: var(--blue-700); }
.as-tag.quoted { background: #FEF3C7; color: #B45309; }
.as-tag.booked { background: var(--green-50); color: var(--green-600); }
.as-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.as-mini { display: grid; text-align: center; }
.as-mini b { font-size: 1.12rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.as-mini em { font-style: normal; font-size: .74rem; color: var(--muted-light); }

/* ---------- 13. Booking flow ---------- */
.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.flow::before {
  content: "";
  position: absolute;
  top: 46px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-100), var(--blue), var(--blue-100));
  opacity: .45;
  z-index: 0;
}
.flow-step {
  position: relative;
  z-index: 1;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  text-align: center;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.flow-step:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.flow-num {
  position: absolute;
  top: 16px; right: 18px;
  font-size: .82rem;
  font-weight: 800;
  color: #FFD6AA;
}
.flow-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue-100);
  color: var(--blue);
  box-shadow: 0 0 0 6px #fff;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.flow-step:hover .flow-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-700));
  border-color: transparent;
  color: #fff;
  transform: scale(1.06);
}
.flow-icon .i { width: 24px; height: 24px; }
.flow-step h3 { margin-bottom: 8px; }
.flow-step p { color: var(--muted); font-size: .9rem; }

/* ---------- 14. SEO ---------- */
.split.reverse .split-visual { order: -1; }

.serp {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--sh-lg);
}
.serp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--muted);
  font-size: .9rem;
  box-shadow: var(--sh-xs);
}
.serp-bar .i { width: 16px; height: 16px; color: var(--muted-light); }
.serp-result { padding: 0 4px 18px; border-bottom: 1px solid var(--line-soft); }
.serp-crumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .78rem; margin-bottom: 6px; }
.serp-fav {
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
}
.serp-title {
  margin-bottom: 5px;
  color: #1A0DAB;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.serp-desc { color: var(--muted); font-size: .86rem; line-height: 1.5; margin-bottom: 7px; }
.serp-stars { display: flex; align-items: center; gap: 2px; color: #F5A623; }
.serp-stars .i { width: 13px; height: 13px; }
.serp-stars em { margin-left: 7px; font-style: normal; color: var(--muted-light); font-size: .76rem; }

.serp-map { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.serp-map-canvas {
  position: relative;
  width: 132px; height: 90px;
  flex: none;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, #EAF3EC, #E7EEF8);
  overflow: hidden;
}
.road { position: absolute; background: #fff; }
.r1 { top: 32px; left: -10%; width: 120%; height: 7px; transform: rotate(-7deg); }
.r2 { top: -10%; left: 44px; width: 6px; height: 120%; }
.r3 { bottom: 18px; left: -10%; width: 120%; height: 5px; transform: rotate(4deg); }
.pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--blue);
  box-shadow: 0 2px 5px rgba(15, 23, 42, .25);
}
.p1 { top: 22px; left: 30px; background: var(--blue); animation: pinPop 3s ease-in-out infinite; }
.p2 { top: 52px; left: 72px; background: var(--blue-light); animation: pinPop 3s .6s ease-in-out infinite; }
.p3 { top: 16px; left: 96px; background: var(--muted-light); animation: pinPop 3s 1.2s ease-in-out infinite; }
@keyframes pinPop {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-4px); }
}
.mapped { display: grid; }
.mapped b { font-size: .92rem; color: var(--ink); }
.mapped em { font-style: normal; font-size: .82rem; color: var(--muted); }

.seo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.seo-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}
.seo-item:hover { transform: translateY(-3px); border-color: var(--blue-100); }
.seo-item .i { grid-row: span 2; width: 22px; height: 22px; color: var(--blue); }
.seo-item b { font-size: .92rem; color: var(--ink); }
.seo-item span { font-size: .82rem; color: var(--muted); }

.disclaimer {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--green-50);
  color: #065F46;
  font-size: .88rem;
}
.disclaimer .i { width: 18px; height: 18px; margin-top: 3px; flex: none; }

/* ---------- 15. Comparison ---------- */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--sh-sm);
  -webkit-overflow-scrolling: touch;
}
.compare { width: 100%; min-width: 720px; border-collapse: collapse; font-size: .93rem; }
.compare th, .compare td { padding: 15px 18px; text-align: left; vertical-align: middle; }
.compare thead th {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 2px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.th-brand {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  font-size: .82rem;
  letter-spacing: -.01em;
  text-transform: none;
}
.compare tbody th {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
.compare tbody tr + tr th, .compare tbody tr + tr td { border-top: 1px solid var(--line-soft); }
.compare tbody tr:hover td, .compare tbody tr:hover th { background: var(--tint); }
.compare td { color: var(--muted); }
.compare td em { font-style: normal; font-size: .82rem; color: var(--muted-light); }
.compare .col-us { background: var(--blue-50); color: var(--ink); }
.compare tbody tr:hover .col-us { background: #E4EEFF; }
.compare .col-us b { font-weight: 800; color: var(--ink); }
.compare .i.yes { width: 19px; height: 19px; color: var(--green); }
.compare .i.no { width: 17px; height: 17px; color: #CBD5E1; }
.compare thead .col-us { background: var(--blue-50); }

/* ---------- 16. Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  position: relative;
  padding: 26px 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.step-index {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--line);
}
.step-art {
  width: 100%;
  margin-bottom: 18px;
  border-radius: var(--r-md);
  background: var(--tint-blue);
  padding: 12px;
}
.step-art svg { display: block; width: 100%; height: auto; }
.step h3 { margin-bottom: 8px; font-size: 1.14rem; }
.step p { color: var(--muted); font-size: .92rem; }
.process-cta { margin-top: 40px; text-align: center; }

/* ---------- 17. Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 28px 26px;
  border: 1px dashed var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testi-flag {
  position: absolute;
  top: 16px; right: 18px;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  background: var(--tint);
  border: 1px solid var(--line);
  color: var(--muted-light);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.testi-stars { display: flex; gap: 2px; margin-bottom: 14px; color: #E2E8F0; }
.testi-stars .i { width: 16px; height: 16px; }
.testi blockquote { flex: 1; margin: 0 0 20px; }
.testi blockquote p { color: var(--muted); font-size: .96rem; line-height: 1.6; }
.testi figcaption { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.testi-avatar {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--tint);
  border: 1px dashed var(--line);
  color: var(--muted-light);
  font-weight: 800;
}
.testi figcaption span { display: grid; }
.testi figcaption b { font-size: .92rem; color: var(--ink); }
.testi figcaption em { font-style: normal; font-size: .8rem; color: var(--muted-light); }

/* ---------- 18. FAQ ---------- */
.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.faq-item + .faq-item { border-top: 1px solid var(--line-soft); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 19px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.faq-q:hover { background: var(--tint); color: var(--blue-700); }
.faq-q span { flex: 1; }
.faq-q .i { width: 19px; height: 19px; color: var(--muted-light); transition: transform .3s var(--ease), color .2s var(--ease); }
.faq-q[aria-expanded="true"] { color: var(--blue-700); }
.faq-q[aria-expanded="true"] .i { transform: rotate(180deg); color: var(--blue); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
  font-size: .95rem;
  transition: padding .32s var(--ease);
}
.faq-item.is-open .faq-a > p { padding: 0 24px 22px; }

/* ---------- 19. Contact ---------- */
.contact-section { padding-bottom: clamp(64px, 8vw, 108px); }
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(30px, 4vw, 52px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(900px circle at 0% 0%, rgba(27, 163, 254, .38), transparent 55%),
    linear-gradient(140deg, #0A6BD1 0%, #0D86FF 45%, #001738 100%);
  box-shadow: var(--sh-lg);
  color: rgba(255, 255, 255, .86);
}
.contact-copy { align-self: center; }
.contact-copy h2 { color: #fff; margin-bottom: 16px; }
.contact-copy p { font-size: 1rem; }
.contact-points { display: grid; gap: 11px; margin: 26px 0; }
.contact-points li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; color: #fff; }
.contact-points .i { width: 17px; height: 17px; color: #6EE7B7; }
.contact-direct { display: grid; gap: 10px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .18); }
.contact-direct a { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; font-size: .94rem; }
.contact-direct a:hover { color: #A7F3D0; }
.contact-direct .i { width: 17px; height: 17px; color: #93C5FD; }

.contact-form {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--sh-md);
}
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 700;
}
.field label span { color: var(--blue); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--tint);
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A667C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(13, 134, 255, .14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-light); }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #E11D48;
  background: #FFF5F6;
}
.error { margin: 6px 0 0; color: #E11D48; font-size: .8rem; font-weight: 600; min-height: 0; }
.error:empty { display: none; }

.contact-form .btn-lg { margin-top: 8px; }
.form-note { margin: 14px 0 0; text-align: center; color: var(--muted-light); font-size: .8rem; }
.form-status { margin: 12px 0 0; font-size: .9rem; font-weight: 600; text-align: center; }
.form-status.ok { color: var(--green-600); }
.form-status.err { color: #E11D48; }
.contact-form.is-sending .btn-lg { opacity: .7; pointer-events: none; }

.form-success {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 40px 24px;
  text-align: center;
}
.form-success .fs-icon {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-600);
}
.form-success .fs-icon .i { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.35rem; }
.form-success p { color: var(--muted); max-width: 34ch; }

/* ---------- 20. Footer ---------- */
.site-footer { padding: clamp(48px, 6vw, 72px) 0 28px; border-top: 1px solid var(--line); background: var(--tint); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  gap: 36px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 34ch; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--muted);
  transition: transform .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.socials a:hover { transform: translateY(-2px); color: var(--blue); border-color: var(--blue-100); }

.footer-col h3 {
  margin-bottom: 14px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 600;
}
.footer-col a:hover { color: var(--blue); }
.footer-col .i { width: 15px; height: 15px; color: var(--blue); }
.footer-hours { margin-top: 10px; color: var(--muted-light); font-size: .84rem; }
.footer-col a.footer-btn {
  margin-top: 14px;
  display: inline-flex;
  justify-content: center;
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.footer-bottom p { color: var(--muted-light); font-size: .84rem; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom nav a { color: var(--muted); font-size: .84rem; font-weight: 600; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  animation: ctaIn .35s var(--ease);
}
@keyframes ctaIn { from { transform: translateY(120%); opacity: 0; } to { transform: none; opacity: 1; } }
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: var(--r-md);
  font-size: .93rem;
  font-weight: 800;
}
.sc-call { flex: 0 0 34%; background: var(--tint); color: var(--ink); border: 1px solid var(--line); }
.sc-start { flex: 1; background: linear-gradient(135deg, var(--blue-light), var(--blue-700)); color: #fff; }
.sc-start:hover, .sc-call:hover { color: inherit; }
.sc-start:hover { color: #fff; }

/* ---------- 21. Motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Above the fold, don't wait on JS — animate straight away on load so the
   hero paints (and LCP lands) without an observer round-trip. */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.hero-copy .reveal, .hero-visual { animation: riseIn .7s var(--ease) both; transition: none; }
.hero-copy .reveal:nth-child(1) { animation-delay: .04s; }
.hero-copy .reveal:nth-child(2) { animation-delay: .12s; }
.hero-copy .reveal:nth-child(3) { animation-delay: .2s; }
.hero-copy .reveal:nth-child(4) { animation-delay: .28s; }
.hero-copy .reveal:nth-child(5) { animation-delay: .36s; }
.hero-visual { animation-delay: .18s; }

/* Fallback: if JS is unavailable, show everything */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- 22. Responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
  .fc-lead { left: -2%; }
  .fc-book { right: -2%; }
  .fp-mail { right: -4%; }
}

@media (max-width: 960px) {
  :root { --header-h: 66px; }
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 620px; margin-inline: auto; }
  .hero-copy { text-align: center; }
  .lede { margin-inline: auto; }
  .hero-actions, .hero-ticks { justify-content: center; }
  .eyebrow { margin-inline: auto; }

  .price-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }
  .pc-desc { min-height: 0; }

  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-visual { order: 0; }
  .split-copy { text-align: center; }
  .section-sub.left { text-align: center; }
  .split-copy .kicker { margin-inline: auto; }
  .check-list li { text-align: left; }

  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow::before { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }

  .contact-shell { grid-template-columns: 1fr; }
  .contact-copy { text-align: center; }
  .contact-copy .kicker { margin-inline: auto; }
  .contact-points li { justify-content: center; }
  .contact-direct { justify-items: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: repeat(2, 1fr); border-radius: var(--r-lg); }
  .stat:first-child, .stat:last-child { border-radius: 0; }
  .stat { padding: 20px 12px; }

  .float-card { padding: 9px 12px; }
  .fc-seo { display: none; }
  .fp-crm { top: -14px; right: 8%; }

  .seo-grid { grid-template-columns: 1fr; }
  .feature-wide { flex-direction: column; align-items: flex-start; gap: 16px; }
  .feature-wide .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .flow { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .float-card { transform: scale(.9); }
  .fc-lead { left: -4%; top: 4%; }
  .fc-book { right: -4%; }
  .faq-q { padding: 16px 18px; font-size: .95rem; }
  .faq-a > p, .faq-item.is-open .faq-a > p { padding-inline: 18px; }
  .contact-shell { padding: 24px 18px; }
}

/* ---------- Accessibility & print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .tilt { transform: none !important; }
}

@media (prefers-contrast: more) {
  :root { --muted: #3B4658; --muted-light: #4B5768; --line: #C7CFDD; }
}

@media print {
  .site-header, .mobile-nav, .sticky-cta, .carousel-controls, .hero-bg, .socials { display: none !important; }
  body { font-size: 12pt; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .section { padding: 20px 0; page-break-inside: avoid; }
}

/* ==========================================================================
   23. Landing pages (services, industries, service areas, blog)
   ========================================================================== */

/* ---------- Breadcrumbs ---------- */
.crumbs { padding: 14px 0 0; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.crumbs li { display: flex; align-items: center; gap: 6px; color: var(--muted-light); font-size: .82rem; font-weight: 600; }
.crumbs li:not(:last-child)::after { content: "/"; color: var(--line); margin-left: 4px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue); }
.crumbs li[aria-current] { color: var(--ink); }

/* ---------- Landing hero ---------- */
.lp-hero { position: relative; padding: clamp(38px, 5vw, 62px) 0 clamp(30px, 4vw, 48px); overflow: hidden; }
.lp-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.lp-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.lp-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  letter-spacing: -.035em;
  margin-bottom: 18px;
}
.lp-hero .lede { max-width: 62ch; font-size: clamp(1rem, 1.5vw, 1.14rem); }
.lp-hero .hero-actions { margin: 28px 0 18px; }
.lp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 18px 0 0;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: var(--green-50);
  color: #065F46;
  font-size: .85rem; font-weight: 700;
}
.lp-badge .i { width: 15px; height: 15px; }
.lp-local {
  display: flex; align-items: flex-start; gap: 9px;
  margin: 0; max-width: 60ch;
  color: var(--muted); font-size: .9rem;
}
.lp-local .i { width: 17px; height: 17px; margin-top: 3px; flex: none; color: var(--blue); }

/* ---------- Keyword chips ---------- */
.chips-band { padding: 8px 0 26px; }
.chips-heading {
  margin-bottom: 12px;
  color: var(--muted-light);
  font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--muted);
  font-size: .84rem; font-weight: 600;
}
.chips .i { width: 14px; height: 14px; color: var(--muted-light); }

/* ---------- Lead paragraph ---------- */
.lead-para {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.62;
  color: var(--ink-soft);
  letter-spacing: -.011em;
}

/* ---------- Generic card grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card-grid.two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.lp-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.lp-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue-100); }
.lp-card-icon {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue);
}
.lp-card-icon .i { width: 19px; height: 19px; }
.lp-card h3 { margin-bottom: 7px; font-size: 1.05rem; }
.lp-card p { color: var(--muted); font-size: .93rem; }

/* ---------- Numbered steps ---------- */
.lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; counter-reset: step; }
.lp-step {
  position: relative;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.lp-step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.lp-step-n {
  display: block; margin-bottom: 12px;
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--orange), #FF9F42);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-step h3 { margin-bottom: 7px; font-size: 1.02rem; }
.lp-step p { color: var(--muted); font-size: .92rem; }

/* ---------- Tick grid ---------- */
.tick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 10px 22px; }
.tick-grid li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft); font-size: .96rem; font-weight: 600;
}
.tick-grid .i { width: 17px; height: 17px; margin-top: 3px; flex: none; color: var(--green); }

/* ---------- Numbered build list ---------- */
.build-list { display: grid; gap: 10px; max-width: 780px; margin-inline: auto; }
.build-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--ink-soft); font-size: .96rem; font-weight: 600;
}
.build-list span {
  flex: none;
  font-size: .82rem; font-weight: 800;
  color: var(--blue);
  letter-spacing: .04em;
}

/* ---------- Price strip ---------- */
.price-strip { padding: 8px 0 clamp(30px, 4vw, 44px); }
.ps-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--tint-blue), #fff 65%);
  box-shadow: var(--sh-sm);
}
.ps-item { display: flex; align-items: baseline; gap: 7px; }
.ps-item b { font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.ps-item span { color: var(--muted); font-size: .88rem; font-weight: 600; }
.ps-sep { width: 1px; height: 24px; background: var(--line); }
.ps-inner .btn { margin-left: auto; }

/* ---------- Local coverage band ---------- */
.local-band { background: var(--tint); }
.local-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 52px); align-items: center; }
.local-copy h2 { margin-bottom: 14px; }
.local-copy p { color: var(--muted); }
.local-list { display: grid; gap: 8px; }
.local-list a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.local-list a:hover { transform: translateX(3px); border-color: var(--blue-100); }
.local-list .i { width: 18px; height: 18px; color: var(--blue); flex: none; }
.local-list span { display: grid; }
.local-list strong { font-size: .93rem; color: var(--ink); }
.local-list em { font-style: normal; font-size: .8rem; color: var(--muted-light); }

/* ---------- Related cards ---------- */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.related-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  color: var(--ink);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--blue-100); color: var(--ink); }
.rc-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: none;
  border-radius: 12px;
  background: var(--blue-50); color: var(--blue);
}
.rc-icon .i { width: 20px; height: 20px; }
.rc-body { display: grid; min-width: 0; }
.rc-body strong { font-size: .96rem; }
.rc-body em { font-style: normal; font-size: .82rem; color: var(--muted-light); }
.rc-arrow { width: 17px; height: 17px; margin-left: auto; color: var(--muted-light); flex: none; }
.related-card:hover .rc-arrow { color: var(--orange); }

/* ---------- Hub grids ---------- */
.hub-group { margin-bottom: clamp(34px, 4vw, 52px); }
.hub-group:last-child { margin-bottom: 0; }
.hub-group-title { font-size: 1.3rem; margin-bottom: 18px; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.hub-card {
  display: grid; align-content: start; gap: 6px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  color: var(--ink);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue-100); color: var(--ink); }
.hub-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 8px;
  border-radius: 13px;
  background: var(--blue-50); color: var(--blue);
  transition: transform .3s var(--ease);
}
.hub-card:hover .hub-icon { transform: scale(1.07) rotate(-4deg); }
.hub-icon .i { width: 21px; height: 21px; }
.hub-card strong { font-size: 1.02rem; letter-spacing: -.015em; }
.hub-card em { font-style: normal; font-size: .89rem; color: var(--muted); line-height: 1.5; }
.hub-plan {
  margin-top: 6px;
  font-size: .74rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue);
}

/* ---------- Closing CTA band ---------- */
.cta-band { padding-bottom: clamp(56px, 7vw, 92px); }
.cta-inner {
  padding: clamp(34px, 5vw, 56px) clamp(24px, 4vw, 48px);
  border-radius: var(--r-xl);
  text-align: center;
  background:
    radial-gradient(900px circle at 100% 0%, rgba(27, 163, 254, .38), transparent 55%),
    linear-gradient(140deg, #0A6BD1 0%, #0D86FF 45%, #001738 100%);
  box-shadow: var(--sh-lg);
  color: rgba(255, 255, 255, .88);
}
.cta-inner h2 { color: #fff; margin-bottom: 12px; }
.cta-inner p { max-width: 56ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 26px 0 20px; }
.cta-ticks { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; }
.cta-ticks li { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-size: .88rem; font-weight: 600; }
.cta-ticks .i { width: 15px; height: 15px; color: #6EE7B7; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.post-card {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  overflow: hidden;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue-100); }
.post-card a { display: grid; gap: 10px; padding: 26px 24px; color: var(--ink); }
.pc-cat {
  justify-self: start;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}
.post-card h2 { font-size: 1.15rem; line-height: 1.35; }
.post-card p { color: var(--muted); font-size: .93rem; }
.pc-meta { color: var(--muted-light); font-size: .8rem; font-weight: 600; }
.empty-state { text-align: center; color: var(--muted); font-size: 1rem; }

/* ---------- Article ---------- */
.article { padding: clamp(30px, 4vw, 48px) 0 clamp(50px, 6vw, 80px); }
.article-head { max-width: 760px; margin: 0 auto clamp(28px, 4vw, 40px); }
.article-head h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; color: var(--muted-light); font-size: .88rem; font-weight: 600; }
.article-lede { margin-top: 18px; font-size: clamp(1.05rem, 1.7vw, 1.2rem); color: var(--muted); line-height: 1.6; }
.article-body { max-width: 720px; margin-inline: auto; font-size: 1.04rem; line-height: 1.75; }
.article-body h2 { margin: 44px 0 14px; font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.article-body h3 { margin: 30px 0 10px; font-size: 1.12rem; }
.article-body p { margin-bottom: 18px; color: var(--ink-soft); }
.article-body ul, .article-body ol { display: grid; gap: 9px; margin: 0 0 20px; padding-left: 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { color: var(--ink-soft); }
.article-body li::marker { color: var(--blue); }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote {
  margin: 26px 0; padding: 18px 22px;
  border-left: 3px solid var(--blue);
  background: var(--tint-blue);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--ink-soft);
}
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 0 0 22px; font-size: .95rem; }
.article-body th, .article-body td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.article-body th { color: var(--ink); font-weight: 700; }
.article-body td { color: var(--muted); }
.article-note {
  max-width: 720px; margin: 34px auto 0;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: var(--tint);
  border: 1px solid var(--line);
  color: var(--muted-light);
  font-size: .84rem;
}

/* ---------- Active nav ---------- */
.nav a[aria-current] { color: var(--ink); }
.nav a[aria-current]::after { transform: scaleX(1); }

/* ---------- Rendering performance ----------
   Skip layout/paint work for off-screen sections. contain-intrinsic-size keeps
   the scrollbar stable while they are skipped. */
@supports (content-visibility: auto) {
  .section:not(.lp-hero):not(.contact-section),
  .local-band,
  .price-strip {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
  }
}

/* ---------- Landing page responsive ---------- */
@media (max-width: 960px) {
  .local-inner { grid-template-columns: 1fr; }
  .ps-inner { justify-content: center; text-align: center; }
  .ps-inner .btn { margin-left: 0; width: 100%; justify-content: center; }
  .ps-sep { display: none; }
}

@media (max-width: 720px) {
  .card-grid, .card-grid.two, .hub-grid, .related-grid, .post-grid, .lp-steps { grid-template-columns: 1fr; }
  .tick-grid { grid-template-columns: 1fr; }
  .ps-inner { gap: 12px; padding: 18px; }
  .article-body { font-size: 1rem; }
}

/* Feature cards are links now — keep the card look, add an affordance. */
a.feature { display: block; color: inherit; }
a.feature:hover { color: inherit; }
a.feature h3 { display: flex; align-items: center; gap: 7px; }
a.feature h3::after {
  content: "";
  width: 14px; height: 14px;
  flex: none;
  background: currentColor;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  color: var(--blue);
}
a.feature:hover h3::after { opacity: 1; transform: translateX(0); }

/* ---------- Link cloud (suburb + trade cross-links) ---------- */
.link-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.link-cloud a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--ink-soft);
  font-size: .89rem; font-weight: 600;
  transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.link-cloud a:hover {
  transform: translateY(-2px);
  border-color: var(--blue-100);
  color: var(--blue-700);
  box-shadow: var(--sh-sm);
}
.link-cloud .i { width: 15px; height: 15px; color: var(--blue); }
.hub-group-title + .link-cloud { margin-bottom: 4px; }
.suburb-band { margin-top: clamp(28px, 3.5vw, 44px); padding-top: clamp(24px, 3vw, 34px); border-top: 1px solid var(--line); }
.hub-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--tint-blue);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  vertical-align: middle;
}
.suburb-group + .suburb-group { margin-top: 22px; }
.suburb-group .chips-heading { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }

/* ---------- Logo ----------
   The mark is your artwork at site.logoSrc (assets/logo.svg), not markup.
   Replace that one file and every page updates. width/height are set on the
   <img> so the header never shifts while it loads. */
.logo img { display: block; height: 40px; width: auto; max-width: 180px; }
.footer-brand .logo img { height: 36px; }
@media (max-width: 560px) { .logo img { height: 30px; } }

/* ==========================================================================
   24. Pricing — plans, inclusions, add-ons, small print
   ========================================================================== */

.pricing-section { padding-top: clamp(24px, 3vw, 40px); }

/* ---------- Plan cards ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  max-width: 1120px;
  margin-inline: auto;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--blue-100); }

/* Featured: gradient border + soft glow, raised out of the row */
.plan-featured {
  border: 0;
  padding: 38px 32px 34px;
  transform: translateY(-14px);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(150deg, var(--blue-light), var(--blue) 55%, var(--blue-700)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 30px 70px -28px rgba(13, 134, 255, .45), 0 8px 24px -12px rgba(0, 23, 56, .12);
}
.plan-featured:hover { transform: translateY(-19px); }

.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 7px 18px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #FF9436, var(--orange));
  color: #fff;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(13, 134, 255, .55);
}

.plan-head h3 { font-size: 1.4rem; letter-spacing: -.03em; margin-bottom: 6px; }
.plan-tagline { color: var(--muted); font-size: .92rem; min-height: 2.7em; }

.plan-price { margin: 22px 0 20px; }
.pp-main { display: flex; align-items: baseline; gap: 2px; color: var(--ink); }
.pp-currency { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; align-self: flex-start; margin-top: .5rem; }
.pp-amount {
  font-size: clamp(3rem, 5.5vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1;
}
.pp-period { margin-left: 4px; color: var(--muted); font-size: 1rem; font-weight: 700; }
.pp-setup {
  margin: 10px 0 0;
  padding: 9px 14px;
  display: inline-block;
  border-radius: var(--r-pill);
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: .88rem; font-weight: 600;
}
.pp-setup strong { font-weight: 800; }

.plan .btn-block { margin-bottom: 22px; }

.plan-headline {
  display: flex; align-items: flex-start; gap: 9px;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  font-size: .96rem; font-weight: 700;
  letter-spacing: -.01em;
}
.plan-headline .i { width: 17px; height: 17px; margin-top: 3px; flex: none; color: var(--blue); }

.plan-benefits { display: grid; gap: 11px; margin-bottom: 20px; }
.plan-benefits li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: .93rem; }
.plan-benefits .i { width: 16px; height: 16px; margin-top: 4px; flex: none; color: var(--green); }
.pb-inherit {
  display: block !important;
  padding-bottom: 2px;
  color: var(--muted-light);
  font-size: .78rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}

.plan-notes {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: grid; gap: 5px;
}
.plan-notes li { color: var(--muted-light); font-size: .78rem; line-height: 1.5; }

/* ---------- Inclusions / exclusions ---------- */
.inclusions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.incl {
  display: flex; gap: 16px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
}
.incl-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: none;
  border-radius: 13px;
  background: var(--blue-50); color: var(--blue);
}
.incl-in .incl-icon { background: var(--green-50); color: var(--green-600); }
.incl-icon .i { width: 20px; height: 20px; }
.incl h3 { font-size: 1rem; margin-bottom: 6px; }
.incl p { color: var(--muted); font-size: .9rem; }

.provider-band {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px;
  margin-top: 22px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--tint-blue), #fff 65%);
}
.provider-band .chips li { background: #fff; }

/* ---------- Add-ons ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.addon {
  display: grid; align-content: start; gap: 6px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.addon:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue-100); }
.addon-icon {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  margin-bottom: 6px;
  border-radius: 11px;
  background: var(--blue-50); color: var(--blue);
}
.addon-icon .i { width: 18px; height: 18px; }
.addon strong { font-size: .96rem; letter-spacing: -.01em; color: var(--ink); }
.addon em { font-style: normal; font-size: .86rem; color: var(--muted); line-height: 1.5; }

/* ---------- Comparison v2 ---------- */
.compare-v2 td { text-align: left; }
.compare-v2 td .i { vertical-align: middle; }
.cmp-label { margin-left: 8px; font-size: .9rem; }
.compare-v2 .col-us .cmp-label { color: var(--ink); font-weight: 700; }

/* ---------- Small print ---------- */
.small-print {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--tint);
}
.sp-title {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1rem; font-weight: 800;
  letter-spacing: -.015em;
}
.sp-title .i { width: 19px; height: 19px; color: var(--green-600); }
.small-print ul { display: grid; gap: 10px; }
.small-print li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.small-print .i { width: 15px; height: 15px; margin-top: 4px; flex: none; color: var(--green); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 480px; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-5px); }
  .plan-tagline { min-height: 0; }
}
@media (max-width: 1040px) { .inclusions { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .inclusions { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .addon-grid { grid-template-columns: 1fr; }
  .provider-band { grid-template-columns: 1fr; gap: 18px; }
  .plan { padding: 28px 22px 24px; }
  .plan-featured { padding: 30px 24px 26px; }
  .small-print { padding: 22px 20px; }
}

/* ---------- Trimsy CRM tiers + total cost ---------- */
.crm-tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; }
.crm-tier {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.crm-tier:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue-100); }
.crm-tier-pop { border-color: var(--blue-100); background: linear-gradient(160deg, var(--tint-blue), #fff 55%); }
.ct-head h3 { font-size: 1.08rem; margin-bottom: 5px; }
.ct-pairs { color: var(--muted); font-size: .85rem; margin-bottom: 14px; }
.ct-pairs strong { color: var(--blue-700); }
.ct-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.ct-price b { font-size: 2.1rem; font-weight: 800; letter-spacing: -.045em; color: var(--ink); }
.ct-price span { color: var(--muted); font-size: .88rem; font-weight: 600; }
.ct-intro { margin: 0 0 12px; color: var(--green-600); font-size: .82rem; font-weight: 700; }
.ct-limits { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px dashed var(--line); }
.ct-limits li {
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--tint); border: 1px solid var(--line);
  color: var(--muted); font-size: .74rem; font-weight: 600;
}
.ct-features { display: grid; gap: 9px; }
.ct-features li { display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: .89rem; }
.ct-features .i { width: 15px; height: 15px; margin-top: 4px; flex: none; color: var(--green); }

.totals {
  margin-top: 26px;
  padding: 28px 30px;
  border-radius: var(--r-xl);
  background: linear-gradient(140deg, var(--ink) 0%, #0B2A56 55%, var(--blue-700) 100%);
  color: rgba(255,255,255,.86);
  box-shadow: var(--sh-lg);
}
.totals-title {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px; color: #fff;
  font-size: 1.02rem; font-weight: 800; letter-spacing: -.015em;
}
.totals-title .i { width: 19px; height: 19px; color: #8ECBFF; }
.totals-grid { display: grid; gap: 10px; }
.total-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center; gap: 16px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}
.tr-plan { color: #fff; font-weight: 800; font-size: .95rem; }
.tr-calc { color: rgba(255,255,255,.75); font-size: .88rem; }
.tr-calc em { font-style: normal; font-weight: 800; color: #fff; }
.tr-calc i { font-style: normal; margin: 0 4px; color: #8ECBFF; font-weight: 800; }
.tr-total { color: #fff; font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; white-space: nowrap; }
.tr-total small { font-size: .78rem; font-weight: 600; opacity: .7; margin-left: 2px; }
.totals-note { margin: 18px 0 0; color: rgba(255,255,255,.7); font-size: .85rem; }

.crm-notes { display: grid; gap: 9px; margin-top: 22px; }
.crm-notes li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .87rem; }
.crm-notes .i { width: 15px; height: 15px; margin-top: 4px; flex: none; color: var(--green); }

@media (max-width: 960px) {
  .crm-tiers { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .total-row { grid-template-columns: 1fr; gap: 6px; }
  .tr-total { font-size: 1.5rem; }
}

/* ---------- Trimsy tier card: matches Trimsy's own presentation ---------- */
.crm-tier { position: relative; display: flex; flex-direction: column; }
.ct-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: var(--r-pill);
  background: linear-gradient(135deg, #FF9436, var(--orange));
  color: #fff; font-size: .7rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 8px 18px -6px rgba(249,124,10,.5);
}
.ct-name { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 8px; }
.ct-tagline { color: var(--muted); font-size: .9rem; margin-bottom: 18px; min-height: 2.9em; }
.ct-was { margin: 0 0 2px; color: var(--muted-light); font-size: 1rem; font-weight: 700; text-decoration: line-through; }
.ct-was span { text-decoration: line-through; }
.ct-price { display: flex; align-items: baseline; gap: 3px; margin: 0 0 6px; }
.ct-price b { font-size: 2.4rem; font-weight: 800; letter-spacing: -.05em; color: var(--ink); line-height: 1; }
.ct-price span { color: var(--muted); font-size: .92rem; font-weight: 700; }
.ct-note { margin: 0 0 12px; color: var(--muted-light); font-size: .84rem; }
.ct-intro { margin: 0 0 6px; color: var(--blue-700); font-size: .86rem; font-weight: 800; }
.ct-sms {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 0 0 16px; color: var(--muted-light); font-size: .78rem;
}
.ct-sms::before { content: "ⓘ"; font-size: .82rem; }
.ct-features { display: grid; gap: 9px; margin-bottom: 18px; }
.ct-limits {
  display: grid; gap: 5px; margin-top: auto;
  padding-top: 15px; border-top: 1px dashed var(--line);
}
.ct-limits li { color: var(--muted-light); font-size: .79rem; }
.ct-limits li::before { content: "· "; }
.ct-pairs {
  margin: 14px 0 0; padding: 10px 14px;
  border-radius: var(--r-md); background: var(--blue-50);
  color: var(--blue-700); font-size: .84rem; font-weight: 600; text-align: center;
}
.ct-pairs strong { font-weight: 800; }
.ct-was-ghost { text-decoration: none; }
.ct-features { margin-bottom: auto; padding-bottom: 18px; }

/* ---------- Totals: one-off setup alongside the monthly ---------- */
.total-row { grid-template-columns: 116px 168px 1fr auto; }
.total-head {
  padding-block: 6px; background: none; border: 0;
  color: rgba(255,255,255,.5); font-size: .72rem;
  font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
}
.total-head span { color: inherit; font: inherit; }
.tr-setup { display: block; line-height: 1.35; }
.tr-setup b { display: block; color: #fff; font-size: 1.02rem; font-weight: 800; letter-spacing: -.02em; }
.tr-setup em { display: block; color: rgba(255,255,255,.6); font-style: normal; font-size: .74rem; }
.tr-setup em i { font-style: normal; font-weight: 700; color: rgba(255,255,255,.8); }

/* Footer legal line */
.footer-abn { margin-top: 4px; font-size: .82rem; opacity: .75; }

@media (max-width: 900px) {
  .total-row { grid-template-columns: 1fr; gap: 6px; }
  .total-head { display: none; }
  .tr-setup, .tr-calc { display: block; }
  .tr-setup::before, .tr-calc::before {
    content: attr(data-label) " · ";
    color: rgba(255,255,255,.45); font-size: .72rem;
    font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  }
  .tr-setup b { display: inline; font-size: .95rem; }
  .tr-setup em { display: inline; }
  .tr-setup em::before { content: " ("; }
  .tr-setup em::after { content: ")"; }
}
.footer-legal p { margin: 0; }

/* ---------- Brand orange: forward motion, and one thing per screen ----------
   Mirrors the logo — the arrow and the "My" are the only orange in the mark,
   so orange here marks progress and the single most important element. */
.step:hover .step-index { color: var(--orange); transition: color .18s var(--ease); }
.btn-primary .i { transition: transform .18s var(--ease); }
.btn-primary:hover .i { transform: translateX(3px); }
.lp-badge .i { color: var(--orange); }
.price-strip .ps-item b { color: var(--orange); }
.chips-heading::before {
  content: ""; display: inline-block; vertical-align: middle;
  width: 18px; height: 3px; margin-right: 10px; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), #FF9F42);
}
.totals-title .i { color: #FFB067; }
.section-head .kicker { background: var(--orange-50); color: var(--orange-600); }
