/* ============================================================
   SilverBridge Design — design system v2
   Matte black · chrome silver · electric blue
   Mobile-first. Zero frameworks, zero webfonts, zero build step.

   Contents
     01  Tokens
     02  Reset & base
     03  Typography
     04  Layout primitives
     05  Buttons & pills
     06  Header / navigation
     07  Hero
     08  Proof bar & stats
     09  Cards (feature / bento)
     10  Industries
     11  Portfolio & case studies
     12  Process
     13  Pricing tiers
     14  Care plans
     15  Add-ons
     16  Comparison table
     17  Guarantees & testimonials
     18  FAQ
     19  CTA band
     20  Forms
     21  Footer
     22  Chat widget & mobile action bar
     23  Motion & utilities
   ============================================================ */

/* ---------- 01 Tokens ---------------------------------------------------- */

:root {
  /* Surfaces — matte black with a cool cast */
  --bg: #06070a;
  --bg-soft: #0a0c11;
  --surface: #0f1218;
  --surface-2: #141821;
  --surface-3: #191e29;

  /* Lines */
  --border: #1e232e;
  --border-strong: #2b3242;
  --border-glow: rgba(95, 176, 255, 0.28);

  /* Text — all values verified ≥ 4.5:1 on --bg */
  --text: #eef1f6;
  --text-muted: #a8b0bf;
  --text-faint: #838c9c;
  --silver: #ccd3dd;

  /* Brand blue */
  --blue: #2b8cff;
  --blue-bright: #5fb0ff;
  --blue-deep: #0d55ab;
  --blue-btn: linear-gradient(135deg, #1a72d6 0%, #0d55ab 100%);
  --blue-wash: rgba(43, 140, 255, 0.1);
  --blue-line: rgba(43, 140, 255, 0.32);
  --glow: rgba(43, 140, 255, 0.3);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px -12px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 32px 72px -28px rgba(0, 0, 0, 0.85);
  --shadow-blue: 0 18px 48px -18px rgba(26, 114, 214, 0.7);

  /* Rhythm */
  --gutter: 20px;
  --section-y: 68px;
  --maxw: 1180px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 860px) {
  :root { --gutter: 32px; --section-y: 104px; }
}

/* ---------- 02 Reset & base ---------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient light — one fixed layer, zero paint cost while scrolling */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% -12%, rgba(43, 140, 255, 0.13), transparent 62%),
    radial-gradient(ellipse 60% 45% at 100% 8%, rgba(43, 140, 255, 0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 92%, rgba(43, 140, 255, 0.05), transparent 62%);
}

/* Fine grid texture — the "engineered" cue behind the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000, transparent 75%);
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--blue-bright); text-decoration: none; }
a:hover { text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

ul, ol { list-style: none; }

hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

::selection { background: rgba(43, 140, 255, 0.35); color: #fff; }

/* Focus — one consistent, highly visible ring everywhere */
:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -180%);
  z-index: 200;
  background: var(--surface-2);
  border: 1px solid var(--blue);
  color: var(--text);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- 03 Typography ------------------------------------------------ */

h1, h2, h3, h4, h5 {
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 7.4vw, 4.1rem); }
h2 { font-size: clamp(1.75rem, 4.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.35rem); letter-spacing: -0.018em; }
h4 { font-size: 1.02rem; letter-spacing: -0.01em; }

p { text-wrap: pretty; }

/* Brushed-chrome headline treatment — the core brand signature */
.chrome {
  background: linear-gradient(176deg, #ffffff 0%, #dfe5ee 28%, #a8b2c0 58%, #eef2f8 78%, #b9c2cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.accent { color: var(--blue-bright); -webkit-text-fill-color: var(--blue-bright); }

.lead {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}
.section-head.center .eyebrow::before { display: none; }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 + p { margin-top: 16px; }
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- 04 Layout primitives ----------------------------------------- */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.narrow { max-width: 860px; }

.section { padding-block: var(--section-y); position: relative; }
.section.tight { padding-block: calc(var(--section-y) * 0.6); }
.section.alt {
  background: linear-gradient(180deg, transparent, rgba(15, 18, 24, 0.85) 12%, rgba(15, 18, 24, 0.85) 88%, transparent);
}

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid.cols-2, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- 05 Buttons & pills ------------------------------------------- */

.btn {
  --btn-py: 15px;
  --btn-px: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--btn-py) var(--btn-px);
  min-height: 48px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background 0.18s var(--ease), border-color 0.18s var(--ease),
              color 0.18s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(0) scale(0.985); }
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--blue-btn);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px -18px rgba(26, 114, 214, 0.85);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--silver);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-quiet {
  background: none;
  color: var(--text-muted);
  border-color: transparent;
  padding-inline: 6px;
}
.btn-quiet:hover { color: var(--blue-bright); }

.btn-sm { --btn-py: 11px; --btn-px: 20px; min-height: 42px; font-size: 0.92rem; }
.btn-lg { --btn-py: 18px; --btn-px: 34px; min-height: 56px; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn-arrow svg { transition: transform 0.18s var(--ease); }
.btn-arrow:hover svg { transform: translateX(3px); }

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 620px) {
  .btn-row { flex-direction: row; flex-wrap: wrap; }
  .btn-row.center { justify-content: center; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px 7px 12px;
  border-radius: var(--r-pill);
  background: var(--blue-wash);
  border: 1px solid var(--blue-line);
  color: var(--blue-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46e08a;
  box-shadow: 0 0 0 3px rgba(70, 224, 138, 0.18);
  flex-shrink: 0;
}

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 4px 11px;
}
.tag.blue {
  color: var(--blue-bright);
  border-color: var(--blue-line);
  background: var(--blue-wash);
}

/* ---------- 06 Header / navigation --------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(6, 7, 10, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--border);
  background: rgba(6, 7, 10, 0.9);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.brand em { font-style: normal; color: var(--blue-bright); }
.brand span { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Mobile drawer */
.site-nav {
  position: fixed;
  inset: 70px 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px var(--gutter) 24px;
  background: rgba(10, 12, 17, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.site-nav.open { opacity: 1; visibility: visible; transform: none; }

.site-nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 13px 12px;
  border-radius: var(--r-sm);
}
.site-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.site-nav a.active { color: var(--blue-bright); }
.site-nav .nav-cta-mobile { margin-top: 12px; color: #fff; }

.nav-actions { display: none; align-items: center; gap: 10px; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--silver);
  border-radius: 2px;
  transition: transform 0.22s var(--ease), opacity 0.16s linear;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1000px) {
  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-nav a { font-size: 0.93rem; padding: 9px 14px; }
  .site-nav .nav-cta-mobile { display: none; }
  .nav-actions { display: flex; }
  .nav-toggle { display: none; }
}

body.nav-open { overflow: hidden; }

/* ---------- 07 Hero ------------------------------------------------------ */

.hero {
  position: relative;
  padding-block: 56px 64px;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 860px) { .hero { padding-block: 88px 96px; } }

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  width: min(1100px, 130vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(43, 140, 255, 0.16), transparent 58%);
  pointer-events: none;
  z-index: -1;
}

.hero-logo {
  width: 116px;
  height: 116px;
  margin: 0 auto 26px;
  border-radius: 24px;
  filter: drop-shadow(0 18px 46px rgba(43, 140, 255, 0.35));
}
@media (min-width: 860px) { .hero-logo { width: 132px; height: 132px; } }

.hero .pill { margin-bottom: 22px; }

.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 640px; margin: 0 auto 28px; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto 22px;
}
@media (min-width: 620px) {
  .hero-ctas { flex-direction: row; justify-content: center; max-width: none; }
  .hero-ctas .btn { min-width: 218px; }
}

.hero-reassure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 0.88rem;
  color: var(--text-faint);
}
.hero-reassure li { display: inline-flex; align-items: center; gap: 7px; }
.hero-reassure svg { color: var(--blue-bright); flex-shrink: 0; }

/* Interior page hero — `overflow: hidden` keeps .hero-glow from widening the
   page on narrow screens (the glow is wider than the viewport by design) */
.page-hero {
  padding-block: 52px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 860px) { .page-hero { padding-block: 76px 48px; } }
.page-hero h1 { margin-bottom: 18px; }
.page-hero .lead { max-width: 680px; margin-inline: auto; }

/* ---------- 08 Proof bar & stats ----------------------------------------- */

.proof-bar {
  border-block: 1px solid var(--border);
  background: rgba(15, 18, 24, 0.6);
  padding-block: 26px;
}
.proof-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 760px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: left;
  padding: 6px 4px;
}
.proof-item svg { color: var(--silver); flex-shrink: 0; opacity: 0.85; }
.proof-item strong { display: block; font-size: 0.92rem; color: var(--text); line-height: 1.25; }
.proof-item span { display: block; font-size: 0.78rem; color: var(--text-faint); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 900px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }

.stat {
  background: var(--surface);
  padding: 30px 22px;
  text-align: center;
}
.stat-value {
  font-size: clamp(1.9rem, 4.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); line-height: 1.45; }

/* ---------- 09 Cards ------------------------------------------------------ */

.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 42%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card h3 { margin-bottom: 9px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.card > :last-child { margin-bottom: 0; }

.card-link { color: inherit; display: block; }
.card-link:hover { border-color: var(--blue-line); }

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--blue-wash);
  border: 1px solid var(--blue-line);
  color: var(--blue-bright);
  margin-bottom: 18px;
}

/* Bento: first card spans wide on large screens */
.bento { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bento .span-2 { grid-column: span 2; }
}

.check-list { display: grid; gap: 11px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.check-list svg { color: var(--blue-bright); flex-shrink: 0; margin-top: 3px; }

/* Split layout: visual + copy */
.split { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1.15fr; gap: 56px; }
  .split.reverse > :first-child { order: 2; }
}

.split-visual {
  position: relative;
  background:
    radial-gradient(circle at 50% 30%, rgba(43, 140, 255, 0.14), transparent 65%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  place-items: center;
}
.split-visual img {
  width: 100%;
  max-width: 260px;
  border-radius: 20px;
  filter: drop-shadow(0 20px 46px rgba(43, 140, 255, 0.28));
}

.split-copy h2 { margin-bottom: 18px; }
.split-copy p { color: var(--text-muted); }
.split-copy p + p { margin-top: 14px; }

blockquote.pull {
  border-left: 2px solid var(--blue);
  padding: 6px 0 6px 20px;
  margin-block: 22px;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--silver);
}

/* ---------- 10 Industries -------------------------------------------------- */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 620px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .industry-grid { grid-template-columns: repeat(4, 1fr); } }

.industry {
  display: flex;
  align-items: center;
  gap: 11px;
  /* grid items default to min-width:auto, which stops long labels like
     "Professional Offices" shrinking into a narrow track and pushes the page
     sideways at 320px — this lets the label wrap instead */
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 15px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease),
              background 0.2s var(--ease);
}
.industry:hover {
  border-color: var(--blue-line);
  color: var(--text);
  background: var(--surface-2);
}
.industry svg { color: var(--blue-bright); flex-shrink: 0; }

/* ---------- 11 Portfolio & case studies ------------------------------------ */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-bottom: 32px;
}
.filter-chip {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s var(--ease);
}
.filter-chip:hover { color: var(--text); border-color: var(--silver); }
.filter-chip[aria-pressed="true"] {
  background: var(--blue-wash);
  border-color: var(--blue);
  color: var(--blue-bright);
}

.work-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }

.work-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.work-card[hidden] { display: none; }

.work-meta { padding: 20px 22px 24px; }
.work-meta h3 { margin: 10px 0 7px; }
.work-meta p { font-size: 0.92rem; color: var(--text-muted); }
.work-meta .outcome {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-faint);
}
.work-meta .outcome strong { color: var(--blue-bright); }

.work-card.featured { border-color: var(--blue-line); }
@media (min-width: 820px) {
  .work-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }
  .work-card.featured .work-meta { align-self: center; padding: 34px; }
}

.work-shot { background: #0b0d12; border-bottom: 1px solid var(--border); }
.work-shot img { width: 100%; height: 100%; object-fit: cover; }

/* Pure-CSS browser mockup */
.mock { background: #0b0d12; border-bottom: 1px solid var(--border); padding: 22px 22px 0; }
.mock-window {
  background: #141821;
  border: 1px solid var(--border-strong);
  border-bottom: none;
  border-radius: 11px 11px 0 0;
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  background: #191e29;
  border-bottom: 1px solid var(--border);
}
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: #333a4a; }
.mock-bar i:first-child { background: var(--blue); }
.mock-body { padding: 15px; display: flex; flex-direction: column; gap: 9px; min-height: 158px; }

.m-nav { display: flex; gap: 6px; align-items: center; margin-bottom: 4px; }
.m-nav b { width: 34px; height: 8px; border-radius: 3px; background: var(--blue); }
.m-nav i { width: 20px; height: 5px; border-radius: 3px; background: #2b3242; margin-left: 6px; }

.m-hero { border-radius: 7px; height: 58px; background: linear-gradient(120deg, rgba(43, 140, 255, 0.5), rgba(95, 176, 255, 0.12)); }
.m-hero.warm { background: linear-gradient(120deg, rgba(204, 211, 221, 0.34), rgba(43, 140, 255, 0.2)); }
.m-hero.tall { height: 76px; }

.m-line { height: 6px; border-radius: 3px; background: #2b3242; }
.m-line.w40 { width: 40%; }
.m-line.w60 { width: 60%; }
.m-line.w80 { width: 80%; }

.m-btn { width: 66px; height: 17px; border-radius: 9px; background: var(--blue); }

.m-cols { display: flex; gap: 8px; }
.m-cols div { flex: 1; height: 36px; border-radius: 6px; background: #212736; }
.m-cols div:nth-child(2) { background: rgba(43, 140, 255, 0.28); }

/* Before / after comparison */
.ba-grid { display: grid; gap: 18px; }
@media (min-width: 760px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }

.ba-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 24px;
}
.ba-panel.after { border-color: var(--blue-line); background: linear-gradient(180deg, rgba(43, 140, 255, 0.07), var(--surface) 55%); }
.ba-panel h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.ba-panel ul { display: grid; gap: 12px; }
.ba-panel li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--text-muted);
}
.ba-panel li svg { flex-shrink: 0; margin-top: 3px; }
.ba-panel.before li svg { color: #ff8f8f; }
.ba-panel.after li svg { color: #46e08a; }

/* ---------- 12 Process ----------------------------------------------------- */

.process { display: grid; gap: 16px; counter-reset: step; }
@media (min-width: 900px) { .process { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.process-step {
  position: relative;
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 22px;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-bright);
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; color: var(--text-muted); }
.process-step .when {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
@media (min-width: 900px) {
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 38px;
    right: -11px;
    width: 10px;
    height: 1px;
    background: var(--border-strong);
  }
}

/* ---------- 13 Pricing tiers ----------------------------------------------- */

.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .tier-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 38%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
}
.tier:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.tier--featured {
  border-color: var(--blue);
  background:
    linear-gradient(180deg, rgba(43, 140, 255, 0.14), rgba(43, 140, 255, 0) 46%),
    var(--surface-2);
  box-shadow: 0 0 0 1px rgba(43, 140, 255, 0.25), 0 28px 70px -30px rgba(43, 140, 255, 0.65);
}
.tier--featured:hover { border-color: var(--blue-bright); }
@media (min-width: 900px) {
  .tier--featured { transform: scale(1.035); z-index: 2; }
  .tier--featured:hover { transform: scale(1.035) translateY(-3px); }
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-btn);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
}

.tier-name {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}
.tier--featured .tier-name { color: var(--blue-bright); }

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: clamp(2.9rem, 7vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #fff;
}
.tier-price .cur { font-size: 0.42em; font-weight: 700; align-self: flex-start; margin-top: 0.42em; }
.tier-price .per { font-size: 0.28em; font-weight: 600; color: var(--text-faint); letter-spacing: 0; }

.tier-note { font-size: 0.82rem; color: var(--text-faint); margin-top: 10px; }
.tier-tagline {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin: 14px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  min-height: 3.2em;
}

.tier-features { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.tier-features svg { color: var(--blue-bright); flex-shrink: 0; margin-top: 3px; }
.tier-features .inherits {
  font-weight: 700;
  color: var(--silver);
  padding-bottom: 12px;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--border);
}

.tier .btn { margin-top: auto; }
.tier-after { font-size: 0.8rem; color: var(--text-faint); text-align: center; margin-top: 14px; }

.price-footnote {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.92rem;
  margin-top: 36px;
}
.price-footnote a { color: var(--blue-bright); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 14 Care plans -------------------------------------------------- */

.care-intro {
  display: grid;
  gap: 26px;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 120% at 8% 0%, rgba(43, 140, 255, 0.12), transparent 62%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .care-intro { grid-template-columns: auto 1fr auto; gap: 30px; padding: 34px 36px; }
}
.care-intro .care-mark {
  width: 62px;
  height: 62px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: var(--blue-wash);
  border: 1px solid var(--blue-line);
  color: var(--blue-bright);
  flex-shrink: 0;
}
.care-intro h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); margin-bottom: 10px; }
.care-intro p { color: var(--text-muted); font-size: 0.98rem; max-width: 620px; }

.plan-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }

.plan {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.plan:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.plan--featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(43, 140, 255, 0.1), var(--surface) 44%);
}

.plan-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.plan-name {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}
.plan--featured .plan-name { color: var(--blue-bright); }
.plan-price {
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.plan-price .per { font-size: 0.42em; font-weight: 600; color: var(--text-faint); letter-spacing: 0; }
.plan-tagline {
  font-size: 0.88rem;
  color: var(--text-faint);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.plan-features { display: grid; gap: 10px; margin-bottom: 24px; flex: 1; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.91rem;
  color: var(--text-muted);
}
.plan-features svg { color: var(--blue-bright); flex-shrink: 0; margin-top: 3px; }
.plan-features .inherits {
  font-weight: 700;
  color: var(--silver);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.plan .btn { margin-top: auto; }

/* ---------- 15 Add-ons ------------------------------------------------------ */

/* auto-fit so adding or removing a growth add-on never needs a CSS change */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 700px) { .addon-grid { grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); } }

.addon {
  background: var(--surface);
  padding: 26px 16px;
  text-align: center;
  transition: background 0.2s var(--ease);
}
.addon:hover { background: var(--surface-2); }
.addon-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-wash);
  border: 1px solid var(--blue-line);
  color: var(--blue-bright);
}
.addon h3 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 10px;
  min-height: 2.7em;
}
.addon .price {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

/* ---------- 15b Photography & drone services --------------------------------

   Showcase cards for the media service line. Each card has a visual area that
   renders either a real photo (assets/media/<slug>.webp) or the branded
   .media-ph placeholder, so the layout reads as finished before any
   photography exists. Both states occupy the same 16/10 box — swapping one
   for the other cannot shift the page.                                       */

.mcard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 660px) { .mcard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .mcard-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.mcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 34%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
}
.mcard:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mcard--featured {
  border-color: var(--blue);
  background:
    linear-gradient(180deg, rgba(43, 140, 255, 0.13), rgba(43, 140, 255, 0) 42%),
    var(--surface-2);
  box-shadow: 0 0 0 1px rgba(43, 140, 255, 0.24), 0 26px 64px -30px rgba(43, 140, 255, 0.6);
}
.mcard--featured:hover { border-color: var(--blue-bright); }

.mcard-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0b0d12;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.mcard-media img { width: 100%; height: 100%; object-fit: cover; }

/* Branded placeholder — deliberately abstract, never a stock photo */
.media-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(43, 140, 255, 0.1), transparent 55%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.022) 0 2px, transparent 2px 9px),
    var(--surface-2);
}
.media-ph-glow {
  position: absolute;
  inset: -30% 10% auto;
  height: 150%;
  background: radial-gradient(ellipse at 50% 0%, rgba(43, 140, 255, 0.24), transparent 62%);
  pointer-events: none;
}
.media-ph-icon {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  opacity: 0.42;
}
.mcard--featured .media-ph-icon { opacity: 0.55; }
.mcard--featured .media-ph { background:
  linear-gradient(135deg, rgba(43, 140, 255, 0.2), transparent 58%),
  repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 9px),
  var(--surface-3); }

.mcard-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--blue-btn);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-blue);
}

.mcard-body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 34px 22px 24px;
}

/* Icon chip straddles the seam between the visual and the copy */
.mcard-icon {
  position: absolute;
  top: 0;
  left: 22px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--surface-3);
  border: 1px solid var(--blue-line);
  color: var(--blue-bright);
  box-shadow: 0 8px 22px -10px rgba(0, 0, 0, 0.9);
}
.mcard--featured .mcard-icon { background: var(--blue-btn); color: #fff; border-color: transparent; }

.mcard h3 { font-size: 1.1rem; margin-bottom: 8px; }

.mcard-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.mcard-price .qual { font-size: 0.78rem; color: var(--text-faint); }
.mcard-price strong {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1;
}

.mcard-desc { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 18px; }

.mcard-forlabel {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.chip-list li {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 5px 11px;
  line-height: 1.3;
}
.mcard--featured .chip-list li { border-color: var(--blue-line); background: var(--blue-wash); }

.mcard .btn { margin-top: auto; }

/* Four-across variant of the shared plan card, for media pricing */
@media (min-width: 1100px) {
  .plan-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Media prices stack name over price so all four cards align, regardless of
   how long the service name is ("Drone Video" vs "Website Media Package"). */
.plan-head--stack { flex-direction: column; align-items: flex-start; gap: 6px; }
.plan-price .from {
  font-size: 0.4em;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text-faint);
  margin-right: 7px;
}

/* ---------- Upsell band (shown under package tiers) ---------- */

.upsell {
  background:
    radial-gradient(ellipse 60% 130% at 6% 0%, rgba(43, 140, 255, 0.12), transparent 60%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  margin-top: 30px;
}
@media (min-width: 900px) { .upsell { padding: 30px 32px; } }

.upsell-head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 22px; }
.upsell-mark {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--blue-wash);
  border: 1px solid var(--blue-line);
  color: var(--blue-bright);
}
.upsell-head h3 { font-size: 1.15rem; margin-bottom: 7px; }
.upsell-head p { font-size: 0.94rem; color: var(--text-muted); max-width: 66ch; }
.upsell-head em { font-style: italic; color: var(--silver); }

.upsell-list { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 620px) { .upsell-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .upsell-list { grid-template-columns: repeat(4, 1fr); } }

.upsell-list a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease),
              transform 0.2s var(--ease);
}
.upsell-list a:hover {
  border-color: var(--blue-line);
  background: var(--blue-wash);
  transform: translateY(-2px);
}
.upsell-icon { color: var(--blue-bright); display: inline-flex; flex-shrink: 0; }
.upsell-name { font-size: 0.9rem; font-weight: 600; line-height: 1.25; }
.upsell-price {
  margin-left: auto;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--silver);
  white-space: nowrap;
}

/* ---------- Portfolio note (honest empty state for the media gallery) ------- */

.gallery-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-md);
  padding: 22px 24px;
}
.gallery-note svg { color: var(--blue-bright); flex-shrink: 0; margin-top: 2px; }
.gallery-note p { font-size: 0.94rem; color: var(--text-muted); }
.gallery-note strong { color: var(--text); }

/* ---------- 16 Comparison table --------------------------------------------- */

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  -webkit-overflow-scrolling: touch;
}
/* The container is focusable so keyboard users can scroll a table that is
   wider than the viewport; give that focus a visible ring. */
.table-scroll:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}
.compare {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.compare caption {
  caption-side: top;
  text-align: left;
  padding: 18px 20px;
  color: var(--text-faint);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.compare th, .compare td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare thead th {
  background: var(--surface-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
}
.compare thead th.is-featured { color: var(--blue-bright); }
.compare tbody th {
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.014);
}
.compare td { color: var(--text-muted); }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--blue-bright); }
.compare .no { color: var(--text-faint); }

/* ---------- 17 Guarantees & testimonials ------------------------------------ */

.guarantee-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .guarantee-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .guarantee-grid { grid-template-columns: repeat(4, 1fr); } }

.guarantee {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
}
.guarantee .card-icon { margin-inline: auto; }
.guarantee h3 { font-size: 1rem; margin-bottom: 8px; }
.guarantee p { font-size: 0.89rem; color: var(--text-muted); }

.quote-grid { display: grid; gap: 18px; }
@media (min-width: 900px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }

.quote {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 24px;
}
.quote .stars { display: flex; gap: 3px; color: var(--blue-bright); margin-bottom: 16px; }
.quote blockquote { font-size: 0.98rem; color: var(--text); line-height: 1.6; flex: 1; }
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.quote .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  color: var(--silver);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.quote cite { font-style: normal; font-weight: 700; font-size: 0.92rem; display: block; }
.quote .role { font-size: 0.82rem; color: var(--text-faint); }

/* Honest empty-state for social proof while the studio is young */
.proof-invite {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(43, 140, 255, 0.1), transparent 65%),
    var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
  padding: 40px 26px;
}
.proof-invite h3 { margin-bottom: 12px; }
.proof-invite p { color: var(--text-muted); max-width: 560px; margin: 0 auto 24px; }

/* ---------- 18 FAQ ----------------------------------------------------------- */

.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 22px;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: currentColor;
  color: var(--blue-bright);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M6 0v12M0 6h12" stroke="black" stroke-width="1.8"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M6 0v12M0 6h12" stroke="black" stroke-width="1.8"/></svg>') center / contain no-repeat;
  transition: transform 0.22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details > div { padding: 0 22px 20px; }
.faq details p { color: var(--text-muted); font-size: 0.95rem; }
.faq details p + p { margin-top: 10px; }

/* ---------- 19 CTA band ------------------------------------------------------ */

.cta-band {
  position: relative;
  text-align: center;
  border-block: 1px solid var(--border);
  background:
    radial-gradient(ellipse 75% 130% at 50% 0%, rgba(43, 140, 255, 0.17), transparent 68%),
    var(--bg-soft);
  padding-block: var(--section-y);
  overflow: hidden;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band > .container > p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 620px) {
  .contact-row { flex-direction: row; justify-content: center; flex-wrap: wrap; max-width: none; }
  .contact-row .btn { min-width: 200px; }
}
.cta-fineprint { margin-top: 24px; font-size: 0.86rem; color: var(--text-faint); }

/* ---------- 20 Forms --------------------------------------------------------- */

.contact-cards { display: grid; gap: 14px; margin-bottom: 40px; }
@media (min-width: 700px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 20px;
  color: var(--text);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.contact-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.contact-card .card-icon { margin-bottom: 8px; }
.contact-card strong { font-size: 1rem; }
.contact-card span { font-size: 0.87rem; color: var(--text-muted); overflow-wrap: anywhere; }

.form-shell {
  max-width: 720px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
}
@media (min-width: 700px) { .form-shell { padding: 42px 44px; } }

.picked-note {
  display: none;
  background: var(--blue-wash);
  border: 1px solid var(--blue-line);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.picked-note.show { display: block; }
.picked-note strong { color: var(--blue-bright); }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--silver);
}
.field label .opt { font-weight: 400; color: var(--text-faint); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 1rem;
  padding: 14px 15px;
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: #6f7889; }
.field select {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8" fill="none"><path d="M1 1.5l5 5 5-5" stroke="%23a8b0bf" stroke-width="2" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 42px;
}
.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43, 140, 255, 0.22);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { outline: none; }

.field-row { display: grid; gap: 0 16px; }
@media (min-width: 700px) { .field-row { grid-template-columns: 1fr 1fr; } }

fieldset { border: 0; margin-bottom: 20px; }
legend {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--silver);
  margin-bottom: 10px;
  padding: 0;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  padding: 15px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.16s var(--ease);
}
.check:hover { border-color: var(--silver); }
.check:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43, 140, 255, 0.18); }
.check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--blue);
  flex-shrink: 0;
}
.check span { font-size: 0.92rem; color: var(--text-muted); }
.check strong { color: var(--text); }

.addon-picker { display: grid; gap: 10px; }
@media (min-width: 620px) { .addon-picker { grid-template-columns: repeat(2, 1fr); } }
.addon-picker .check { margin-bottom: 0; font-size: 0.9rem; }

.form-note { font-size: 0.85rem; color: var(--text-faint); text-align: center; margin-top: 18px; }

.form-status {
  display: none;
  border-radius: var(--r-sm);
  padding: 15px 18px;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.form-status.error {
  display: block;
  background: rgba(224, 62, 62, 0.1);
  border: 1px solid rgba(224, 62, 62, 0.42);
  color: #ffb0b0;
}
.form-status.sending {
  display: block;
  background: var(--blue-wash);
  border: 1px solid var(--blue-line);
  color: var(--blue-bright);
}
.form-status a { color: inherit; text-decoration: underline; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- 21 Footer -------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 56px 0 calc(96px + env(safe-area-inset-bottom, 0px));
  font-size: 0.92rem;
}
@media (min-width: 700px) { .site-footer { padding-bottom: 104px; } }

.footer-grid { display: grid; gap: 34px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
}
.footer-brand img { width: 36px; height: 36px; border-radius: 9px; }
.footer-brand em { font-style: normal; color: var(--blue-bright); }

.site-footer p { color: var(--text-faint); max-width: 34ch; }
.site-footer h2 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}
.site-footer li { margin-bottom: 10px; }
.site-footer li a { color: var(--text-muted); }
.site-footer li a:hover { color: var(--blue-bright); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
@media (min-width: 700px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- 22 Chat widget & mobile action bar -------------------------------- */

.chat-fab {
  position: fixed;
  right: 16px;
  bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 54px;
  height: 54px;
  background: var(--blue-btn);
  color: #fff;
  font-weight: 700;
  font-size: 0.96rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.chat-fab .label { display: none; }
.chat-fab:hover { transform: translateY(-2px); }
.chat-fab:active { transform: scale(0.95); }
.chat-fab svg { flex-shrink: 0; }

@media (min-width: 700px) {
  .chat-fab {
    width: auto;
    height: auto;
    padding: 15px 24px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 20px;
  }
  .chat-fab .label { display: inline; }
}

.chat-panel {
  position: fixed;
  right: 12px;
  bottom: calc(148px + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  width: min(370px, calc(100vw - 24px));
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.open { display: flex; }
@media (min-width: 700px) {
  .chat-panel { right: 20px; bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 16px;
  background: var(--blue-btn);
  color: #fff;
}
.chat-head img { width: 38px; height: 38px; border-radius: 9px; }
.chat-head strong { display: block; font-size: 0.97rem; line-height: 1.2; }
.chat-head span { display: block; font-size: 0.76rem; opacity: 0.9; }
.chat-close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.chat-close:hover { background: rgba(255, 255, 255, 0.32); }

.chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 44vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.chat-bubble {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px 14px 14px 4px;
  padding: 11px 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  align-self: flex-start;
  max-width: 92%;
}
.chat-bubble.me {
  align-self: flex-end;
  background: var(--blue-wash);
  border-color: var(--blue-line);
  border-radius: 14px 14px 4px 14px;
  color: var(--text);
  white-space: pre-wrap;
}
.chat-bubble a { text-decoration: underline; }

.chat-form { padding: 0 16px 12px; display: flex; flex-direction: column; gap: 9px; }
.chat-form input,
.chat-form textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 0.95rem;
  padding: 11px 13px;
  -webkit-appearance: none;
  appearance: none;
}
.chat-form textarea { min-height: 70px; resize: vertical; }
.chat-form textarea.chat-input { min-height: 48px; }
.chat-form input:focus,
.chat-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43, 140, 255, 0.22);
}
.chat-send {
  border: none;
  border-radius: var(--r-pill);
  background: var(--blue-btn);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px;
  cursor: pointer;
  min-height: 46px;
}
.chat-send:disabled { opacity: 0.6; cursor: default; }

.chat-typing { display: inline-flex; gap: 5px; align-items: center; padding: 14px 16px; }
.chat-typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-faint);
  animation: chat-blink 1.2s infinite both;
}
.chat-typing i:nth-child(2) { animation-delay: 0.2s; }
.chat-typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes chat-blink {
  0%, 80%, 100% { opacity: 0.25; }
  40% { opacity: 1; }
}

.chat-alt { font-size: 0.78rem; color: var(--text-faint); text-align: center; padding: 0 16px 15px; }
.chat-alt a { color: var(--text-muted); }

/* Mobile sticky action bar — the single biggest phone conversion lever */
.action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  display: flex;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(6, 7, 10, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform 0.28s var(--ease);
}
.action-bar.show { transform: none; }
.action-bar .btn { flex: 1; --btn-px: 12px; font-size: 0.94rem; }
.action-bar .btn-ghost { flex: 0 0 auto; --btn-px: 18px; }
@media (min-width: 700px) { .action-bar { display: none; } }

/* ---------- 23 Motion & utilities --------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: 0.07s; }
.js .reveal.d2 { transition-delay: 0.14s; }
.js .reveal.d3 { transition-delay: 0.21s; }

.center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-26 { margin-bottom: 26px; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }
.nowrap { white-space: nowrap; }

/* Section that follows a .page-hero — the hero already supplies top space */
.section.after-hero { padding-top: 24px; }

.icon-bad { color: #ff8f8f; }
.icon-good { color: #46e08a; }

.error-hero { padding-block: 110px; text-align: center; position: relative; overflow: hidden; }
.error-hero .big {
  font-size: clamp(4.5rem, 20vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 10px;
}
.error-hero h1 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 14px; }
.error-hero .lead { max-width: 480px; margin: 0 auto 30px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .action-bar { transition: none; }
}

@media print {
  .site-header, .chat-fab, .chat-panel, .action-bar, .cta-band, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  body::before, body::after { display: none; }
  .chrome { -webkit-text-fill-color: #000; color: #000; }
}
