/* ==========================================================================
   HotHead Tech — Design System
   Brand: red #cc0001 / dark red #990001, charcoal, flame orange, accent green
   Type: Exo 2 (display) + Roboto (body)
   ========================================================================== */

:root {
  /* Brand */
  --red:        #cc0001;
  --red-dark:   #990001;
  --red-soft:   #ff3b3c;
  --flame-1:    #ffcf2e;
  --flame-2:    #ff8a00;
  --flame-3:    #ff4d1c;
  --green:      #00ad49;

  /* Neutrals */
  --ink:        #16181d;
  --charcoal:   #2a2c30;
  --slate:      #3a3d44;
  --gray-600:   #5a5d65;
  --gray-400:   #9aa0a8;
  --gray-200:   #e4e7ec;
  --gray-100:   #f3f5f8;
  --bg:         #ffffff;
  --bg-alt:     #f7f9fc;

  /* Semantic */
  --text:       var(--charcoal);
  --text-muted: var(--gray-600);
  --line:       #e7eaf0;

  /* Type */
  --font-display: "Exo 2", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Roboto", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius:    14px;
  --radius-lg: 22px;
  --gap:       clamp(1rem, 3vw, 2rem);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(22, 24, 29, .06);
  --shadow:    0 12px 30px rgba(22, 24, 29, .10);
  --shadow-lg: 0 30px 60px rgba(22, 24, 29, .16);
  --ring:      0 0 0 4px rgba(204, 0, 1, .15);
  --ease:      cubic-bezier(.2, .7, .2, 1);

  --header-h: 84px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* Skip to main content link (accessible: off-screen until focused) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  padding: .6rem 1rem; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; box-shadow: var(--ring); }

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { color: var(--text-muted); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--slate); }

/* ----- Layout helpers ----- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.bg-alt { background: var(--bg-alt); }
.bg-ink { background: var(--ink); color: #fff; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-center { max-width: 64ch; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--red); border-radius: 2px;
}
.center .eyebrow { justify-content: center; }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.center .section-head { margin-inline: auto; }
.section-head p { margin-top: .9rem; }

/* ----- Buttons ----- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: .98rem; letter-spacing: .01em;
  padding: .85rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  box-shadow: 0 8px 20px rgba(204, 0, 1, .25);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(204, 0, 1, .34); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--ink); box-shadow: none; }
.btn--light {
  --btn-bg: #fff; --btn-fg: var(--ink); box-shadow: var(--shadow-sm);
}
.btn--outline-light {
  --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.4); box-shadow: none;
}
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--green { --btn-bg: var(--green); box-shadow: 0 8px 20px rgba(0,173,73,.28); }
.btn--green:hover { box-shadow: 0 14px 28px rgba(0,173,73,.36); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 700; color: var(--red);
}
.link-arrow .arrow { transition: transform .25s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(22,24,29,.06);
}
.nav {
  display: flex; align-items: center; gap: 1.5rem;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: .35rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: .96rem;
  color: var(--slate); padding: .55rem .85rem; border-radius: 8px;
  position: relative; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--gray-100); }
.nav-links a.active { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: .9rem; margin-left: .6rem; }
.phone-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
  white-space: nowrap;
}
.phone-link svg { color: var(--red); }
.phone-link:hover { color: var(--red); }

.nav-toggle {
  display: none; width: 46px; height: 46px; margin-left: auto;
  background: var(--gray-100); border: 1px solid var(--line); border-radius: 12px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transform: translate(-50%, -50%); transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(1100px 540px at 88% -8%, rgba(204,0,1,.10), transparent 60%),
    radial-gradient(800px 460px at 8% 12%, rgba(255,138,0,.10), transparent 55%),
    var(--bg-alt);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(22,24,29,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,24,29,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(900px 500px at 70% 0%, #000, transparent 75%);
          mask-image: radial-gradient(900px 500px at 70% 0%, #000, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--red), var(--flame-3) 60%, var(--flame-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { margin-bottom: 2rem; max-width: 50ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.5rem;
  padding-top: 1.75rem; border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.9rem;
  color: var(--ink); line-height: 1;
  background: linear-gradient(120deg, var(--red), var(--flame-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stat .lbl { font-size: .85rem; color: var(--text-muted); margin-top: .3rem; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1.4rem; position: relative; z-index: 1;
}
.hero-card-top {
  display: flex; align-items: center; gap: .6rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--line); margin-bottom: 1.1rem;
}
.dot { width: 11px; height: 11px; border-radius: 50%; background: var(--gray-200); }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.hero-card-top .label { margin-left: auto; font-size: .8rem; color: var(--text-muted); font-family: var(--font-display); font-weight: 600; }
.status-row {
  display: flex; align-items: center; gap: .8rem; padding: .8rem .9rem;
  border-radius: 12px; background: var(--bg-alt); margin-bottom: .65rem;
}
.status-row:last-child { margin-bottom: 0; }
.status-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.status-row.g .status-ico { background: linear-gradient(135deg, var(--green), #06823a); }
.status-row.o .status-ico { background: linear-gradient(135deg, var(--flame-2), var(--flame-3)); }
.status-row .t { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink); }
.status-row .s { font-size: .8rem; color: var(--text-muted); }
.status-row .badge {
  margin-left: auto; font-size: .72rem; font-weight: 700; font-family: var(--font-display);
  color: var(--green); background: rgba(0,173,73,.12); padding: .25rem .6rem; border-radius: 999px;
}
.hero-float {
  position: absolute; z-index: 2; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow); padding: .8rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--ink);
}
.hero-float.tl { top: -18px; left: -22px; }
.hero-float.br { bottom: -20px; right: -16px; }
.hero-float .pulse {
  width: 10px; height: 10px; border-radius: 50%; background: var(--green); position: relative;
}
.hero-float .pulse::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--green); animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.7); opacity: .8; } 100% { transform: scale(1.8); opacity: 0; } }

/* ==========================================================================
   Logo strip / partners
   ========================================================================== */
.logos { padding: 2.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos p { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; color: var(--gray-600); margin-bottom: 1.4rem; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.5rem, 5vw, 3.5rem); }
.logo-row span {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: .02em;
  color: var(--gray-600); transition: color .25s;
}
.logo-row span:hover { color: var(--slate); }

/* ==========================================================================
   Cards / grids
   ========================================================================== */
/* Prevent grid/flex children from forcing horizontal overflow on small screens */
.hero-grid > *, .split > *, .contact-grid > *, .grid > * { min-width: 0; }
.status-row { min-width: 0; }
.status-row > div { min-width: 0; }
.status-row .t, .status-row .s { overflow-wrap: anywhere; }

.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--red), var(--flame-2));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.svc-ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  color: var(--red); background: linear-gradient(135deg, rgba(204,0,1,.10), rgba(255,138,0,.12));
  margin-bottom: 1.15rem; transition: transform .3s var(--ease);
}
.card:hover .svc-ico { transform: scale(1.06) rotate(-3deg); }
.svc-ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .95rem; margin-bottom: 1.1rem; }
.card .link-arrow { font-size: .9rem; }

/* Feature / why-us */
.feature { display: flex; gap: 1.1rem; }
.feature .fico {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.feature.alt .fico { background: linear-gradient(135deg, var(--flame-2), var(--flame-3)); }
.feature.green .fico { background: linear-gradient(135deg, var(--green), #06823a); }
.feature .fico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.feature p { font-size: .95rem; }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.media-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); position: relative;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: grid; gap: .85rem; margin-top: 1.6rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--slate); }
.check-list .ck {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; margin-top: .15rem;
  display: grid; place-items: center; color: #fff; background: var(--green);
}
.check-list .ck svg { width: 14px; height: 14px; }

/* Stat band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-band .stat { text-align: center; }
.stat-band .num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1; background: linear-gradient(120deg, var(--flame-1), var(--red));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-band .lbl { color: rgba(255,255,255,.7); margin-top: .5rem; font-size: .95rem; }
/* Centered variant (service pages) — centers cleanly for any number of stats */
.stat-band--center { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(2rem, 6vw, 5rem); }
.stat-band--center .stat { flex: 0 0 auto; }

/* Testimonials */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.2rem; box-shadow: var(--shadow-sm); position: relative; height: 100%;
  display: flex; flex-direction: column;
}
.quote-card .mark {
  font-family: var(--font-display); font-weight: 800; font-size: 4rem; line-height: .6;
  color: var(--red); opacity: .18; margin-bottom: .5rem;
}
.quote-card blockquote { font-size: 1.08rem; color: var(--slate); margin-bottom: 1.5rem; flex: 1; }
.quote-card .who { display: flex; align-items: center; gap: .9rem; }
.quote-card .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--red), var(--flame-2));
}
.quote-card .who .n { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: .98rem; }
.quote-card .who .r { font-size: .85rem; color: var(--text-muted); }
.stars { display: flex; gap: 3px; color: #ffb703; margin-bottom: 1rem; }
.stars svg { width: 18px; height: 18px; }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden; border-radius: clamp(18px, 3vw, 28px);
  padding: clamp(2.5rem, 6vw, 4.5rem); color: #fff; text-align: center;
  background: linear-gradient(120deg, var(--red-dark), var(--red) 55%, var(--flame-3));
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 15% 0%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(400px 280px at 100% 120%, rgba(0,0,0,.18), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin: 1rem auto 2rem; max-width: 54ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(204,0,1,.10), transparent 60%),
    var(--ink);
  color: #fff;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(700px 400px at 80% 0%, #000, transparent 70%);
          mask-image: radial-gradient(700px 400px at 80% 0%, #000, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .lead { color: rgba(255,255,255,.78); margin-top: 1rem; max-width: 56ch; }
.page-hero .eyebrow { color: var(--flame-1); }
.page-hero .eyebrow::before { background: var(--flame-1); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1.2rem; font-family: var(--font-display); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink); background: #fff;
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 11px;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--red); box-shadow: var(--ring);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-cards { display: grid; gap: 1.1rem; }
.contact-card {
  display: flex; gap: 1rem; padding: 1.4rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: #fff;
}
.contact-card .cico {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  color: var(--red); background: linear-gradient(135deg, rgba(204,0,1,.10), rgba(255,138,0,.12));
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.contact-card p, .contact-card a { font-size: .95rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--red); }
.form-note { font-size: .85rem; color: var(--text-muted); }

/* HubSpot embedded form — minimal styling to match site tokens */
.hs-form-wrap { margin-bottom: 1rem; }
.hs-form-wrap form { display: grid; gap: 1.1rem; }
.hs-form-wrap .hs-form-field > label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: .9rem; color: var(--ink); margin-bottom: .4rem;
}
.hs-form-wrap input[type="text"],
.hs-form-wrap input[type="email"],
.hs-form-wrap input[type="tel"],
.hs-form-wrap input[type="number"],
.hs-form-wrap textarea,
.hs-form-wrap select {
  font: inherit; color: var(--ink); background: #fff; width: 100%;
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 11px;
  transition: border-color .2s, box-shadow .2s;
}
.hs-form-wrap input:focus,
.hs-form-wrap textarea:focus,
.hs-form-wrap select:focus {
  outline: none; border-color: var(--red); box-shadow: var(--ring);
}
.hs-form-wrap textarea { resize: vertical; min-height: 130px; }
.hs-form-wrap .hs-button,
.hs-form-wrap input[type="submit"] {
  font: inherit; font-weight: 700; cursor: pointer; border: 0;
  color: #fff; background: var(--red); padding: .9rem 1.6rem; border-radius: 11px;
  transition: background .2s, transform .15s;
}
.hs-form-wrap .hs-button:hover,
.hs-form-wrap input[type="submit"]:hover { background: var(--red-dark); transform: translateY(-1px); }
.hs-form-wrap .hs-error-msgs { list-style: none; padding: 0; margin: .35rem 0 0; }
.hs-form-wrap .hs-error-msg { color: var(--red); font-size: .85rem; }
.hs-form-wrap .hs_error_rollup { margin-top: .5rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { position: relative; background: var(--ink); color: rgba(255,255,255,.72); padding-top: clamp(3.5rem, 7vw, 5rem); }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--flame-2)); }
.footer-cta {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-cta h3 { color: #fff; font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: .35rem; }
.footer-cta-text p { color: rgba(255,255,255,.6); margin: 0; }
.footer-cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(1.8rem, 4vw, 3rem); padding-bottom: 3rem; }
.footer-logo { background: #fff; border-radius: 12px; padding: .7rem .9rem; display: inline-block; margin-bottom: 1.2rem; }
.footer-logo img { height: 38px; }
.site-footer p { color: rgba(255,255,255,.6); font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { color: rgba(255,255,255,.66); font-size: .95rem; display: inline-block; transition: color .2s, transform .2s; }
.footer-col ul a:hover { color: #fff; transform: translateX(3px); }
.footer-contact { font-style: normal; }
.footer-contact .fc-item { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: 1rem; font-size: .92rem; color: rgba(255,255,255,.66); }
.fc-city { display: block; color: #fff; font-weight: 600; margin-bottom: 1px; }
.footer-contact svg { color: var(--red-soft); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,.66); }
.footer-contact a:hover { color: #fff; }
.social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.social a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #fff; transition: background .2s, transform .2s;
}
.social a:hover { background: var(--red); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.6rem 0; margin-top: 1rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: inline-flex; gap: .5rem; align-items: center; }
.footer-legal .sep { opacity: .5; }

/* ==========================================================================
   Blog
   ========================================================================== */
/* Post meta row (category chip + date + read time) */
.post-meta {
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem; color: var(--text-muted);
}
.chip {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--red); background: rgba(204,0,1,.09);
  padding: .32rem .7rem; border-radius: 999px;
}
.post-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-400); }
.page-hero .post-meta { color: rgba(255,255,255,.7); }
.page-hero .chip { color: var(--flame-1); background: rgba(255,207,46,.14); }

/* Gradient thumbnails (no imagery on old posts, so we brand them) */
.post-thumb {
  position: relative; overflow: hidden; display: grid; place-items: center;
  aspect-ratio: 16 / 10; color: #fff;
}
.post-thumb::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(240px 180px at 78% 6%, #000, transparent 72%);
          mask-image: radial-gradient(240px 180px at 78% 6%, #000, transparent 72%);
  pointer-events: none;
}
.post-thumb svg { position: relative; z-index: 1; width: 34%; height: auto; opacity: .92; }
.thumb-g1 { background: linear-gradient(135deg, var(--red-dark), var(--red) 55%, var(--flame-3)); }
.thumb-g2 { background: linear-gradient(135deg, var(--charcoal), var(--ink)); }
.thumb-g3 { background: linear-gradient(135deg, var(--green), #06823a); }
.thumb-g4 { background: linear-gradient(135deg, var(--flame-2), var(--flame-3)); }
.thumb-g5 { background: linear-gradient(135deg, var(--slate), var(--charcoal)); }

/* Featured (most recent) post */
.blog-featured {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.blog-featured .post-thumb { aspect-ratio: auto; min-height: 300px; }
.blog-featured .fp-body { padding: clamp(1.6rem, 3.2vw, 2.8rem); display: flex; flex-direction: column; justify-content: center; }
.blog-featured h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); margin: .8rem 0 .7rem; }
.blog-featured h2 a:hover { color: var(--red); }
.blog-featured p { font-size: 1rem; margin-bottom: 1.4rem; }

/* Post grid + cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.post-card {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.post-card .post-thumb { aspect-ratio: 16 / 9; }
.post-card .pc-body { padding: 1.35rem 1.45rem 1.55rem; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.18rem; line-height: 1.25; margin: .7rem 0 .5rem; }
.post-card h3 a:hover { color: var(--red); }
.post-card p { font-size: .92rem; margin-bottom: 1.1rem; flex: 1; }
.post-card .link-arrow { font-size: .88rem; margin-top: auto; }

/* Article body typography */
.post-body { padding-top: clamp(2.5rem, 5vw, 3.5rem); }
.prose { max-width: 72ch; margin-inline: auto; }
.prose > * + * { margin-top: 1.15rem; }
.prose p, .prose li { color: var(--slate); }
.prose p { line-height: 1.78; }
.prose .lead { color: var(--slate); font-size: clamp(1.1rem, 1.7vw, 1.28rem); line-height: 1.6; }
.prose h2 { font-size: clamp(1.5rem, 2.7vw, 2rem); margin-top: 2.8rem; }
.prose h3 { font-size: 1.3rem; margin-top: 2rem; }
.prose h2 + *, .prose h3 + * { margin-top: 1rem; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose em { font-style: italic; }
.prose a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--red-dark); }
.prose ul, .prose ol { display: grid; gap: .65rem; padding-left: 1.4rem; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before {
  content: ""; position: absolute; left: .25rem; top: .62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--flame-2));
}
.prose ol { list-style: decimal; }
.prose ol li { padding-left: .35rem; }
.prose ol li::marker { color: var(--red); font-family: var(--font-display); font-weight: 800; }
.prose blockquote {
  border-left: 3px solid var(--red); margin: 1.6rem 0; padding: .2rem 0 .2rem 1.4rem;
  font-size: 1.12rem; color: var(--slate); font-style: italic;
}
.prose code { background: var(--gray-100); padding: .1rem .42rem; border-radius: 6px; font-size: .9em; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.prose .table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
.prose table { border-collapse: collapse; width: 100%; min-width: 34rem; font-size: .95rem; }
.prose thead th { background: var(--gray-100); font-family: var(--font-display); font-weight: 800; color: var(--ink); text-align: left; }
.prose th, .prose td { padding: .8rem 1rem; border-top: 1px solid var(--line); vertical-align: top; }
.prose thead th { border-top: 0; }
.prose td { color: var(--slate); }
.prose tbody tr:first-child td { border-top: 1px solid var(--line); }
.prose tbody td:first-child { font-family: var(--font-display); font-weight: 700; color: var(--ink); }

/* Article footer: share / back link */
.post-foot {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  max-width: 72ch; margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; padding-top: 1.6rem; border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .post-thumb { aspect-ratio: 16 / 9; min-height: 0; order: -1; }
}
@media (max-width: 760px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Reveal is only hidden-by-default when JS is present (html.js), so content
   stays visible if JS is disabled/fails or a crawler doesn't run the observer. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Service detail: stats card, process steps, FAQ
   ========================================================================== */
/* Overview flip — alternate which column leads on wide screens */
@media (min-width: 961px) {
  .split--flip > *:first-child { order: 2; }
}

/* Stats card (replaces the old generic "why choose" card) */
.stat-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg); box-shadow: var(--shadow-sm); padding: 1.5rem 1.6rem;
}
.stat-card h3 {
  font-family: var(--font-display); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted);
  margin-bottom: 1.15rem;
}
.stat-list { display: grid; gap: 1.05rem; }
.stat-list li { display: flex; align-items: baseline; gap: .9rem; }
.stat-list .sv {
  flex: none; min-width: 5.6rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1;
  background: linear-gradient(120deg, var(--red), var(--flame-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-list .sl { font-size: .92rem; color: var(--text-muted); }

/* Process / "how it works" steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.6rem, 3vw, 2.6rem); }
.step { position: relative; padding-left: 4.3rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -.2rem; width: 3rem; height: 3rem;
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: #fff;
  background: linear-gradient(135deg, var(--flame-2), var(--flame-3)); box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.step p { font-size: .95rem; }

/* FAQ accordion (native <details>, works without JS) */
.faq { display: grid; gap: .9rem; max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px;
  border-right: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  transform: rotate(45deg); transition: transform .25s var(--ease); margin-top: -5px;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq details > p { padding: 0 1.3rem 1.2rem; margin: 0; color: var(--text-muted); font-size: .97rem; }

/* ==========================================================================
   Composable service modules (hero variants, feature grid, call-flow,
   comparison, project timeline, before/after, spec list)
   ========================================================================== */
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; }

/* Split hero (product-style) */
.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-split .hero-actions { margin-top: 1.8rem; }

/* Banner hero spec chips */
.hero-specs { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.spec-chip {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: #fff;
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: .4rem .95rem;
}

/* VoIP call-card hero mock */
.callcard { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.5rem 1.5rem 1.3rem; max-width: 360px; margin-inline: auto; }
.cc-head { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-muted); font-weight: 600; }
.cc-live { width: 9px; height: 9px; border-radius: 50%; background: var(--green); animation: ccpulse 2s infinite; }
@keyframes ccpulse { 0% { box-shadow: 0 0 0 0 rgba(0,173,73,.45); } 70% { box-shadow: 0 0 0 9px rgba(0,173,73,0); } 100% { box-shadow: 0 0 0 0 rgba(0,173,73,0); } }
.cc-who { display: flex; align-items: center; gap: .8rem; margin: 1rem 0 1.2rem; }
.cc-avatar { flex: none; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--flame-2)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.cc-who strong { font-family: var(--font-display); color: var(--ink); display: block; }
.cc-who span { font-size: .82rem; color: var(--text-muted); }
.cc-keys { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-bottom: 1rem; }
.cc-keys span { text-align: center; font-size: .8rem; font-weight: 600; color: var(--slate); background: var(--gray-100); border-radius: 10px; padding: .55rem 0; }
.cc-bar { display: flex; justify-content: center; }
.cc-end { display: inline-flex; align-items: center; gap: .45rem; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700; padding: .6rem 1.5rem; border-radius: 999px; font-size: .9rem; }
.cc-end svg { transform: rotate(135deg); }

/* Feature grid */
.fgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.fcard { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem; background: var(--bg); transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.fcard:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.fcard-ico { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; color: #fff; background: linear-gradient(135deg, var(--red), var(--flame-2)); margin-bottom: 1rem; }
.fcard h3 { margin-bottom: .4rem; }
.fcard p { font-size: .95rem; }

/* Call-flow diagram */
.callflow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.cf-node { display: inline-flex; align-items: center; gap: .55rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .8rem 1.3rem; font-family: var(--font-display); font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm); }
.cf-node svg { color: var(--red); }
.cf-hub { background: var(--ink); color: #fff; border-color: transparent; }
.cf-hub svg { color: var(--flame-2); }
.cf-arrow { width: 46px; height: 2px; background: repeating-linear-gradient(90deg, var(--gray-400) 0 6px, transparent 6px 12px); position: relative; }
.cf-arrow::after { content: ""; position: absolute; right: -1px; top: 50%; transform: translateY(-50%); border-left: 7px solid var(--gray-400); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.cf-branch { display: grid; gap: .7rem; }
.cf-dest { background: var(--bg-alt); box-shadow: none; }

/* Comparison table */
.compare { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); max-width: 900px; margin-inline: auto; }
.cmp-head, .cmp-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; }
.cmp-head { background: var(--gray-100); font-family: var(--font-display); font-weight: 800; color: var(--ink); }
.cmp-head > div { padding: 1rem 1.2rem; }
.cmp-new-h { color: var(--red); }
.cmp-row { border-top: 1px solid var(--line); }
.cmp-row > div { padding: 1rem 1.2rem; font-size: .95rem; }
.cmp-feat { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.cmp-old { color: var(--text-muted); }
.cmp-old .x { color: #b6483f; font-weight: 800; margin-right: .3rem; }
.cmp-new { color: var(--slate); background: rgba(204,0,1,.03); }
.cmp-new .v { color: var(--green); font-weight: 800; margin-right: .3rem; }

/* Project timeline (horizontal phases) */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.tl-step { position: relative; padding-top: 3.9rem; }
.tl-step:not(:last-child)::after { content: ""; position: absolute; top: 1.4rem; left: 2.8rem; width: calc(100% - 2.8rem + 1.5rem); height: 2px; background: var(--gray-200); z-index: 0; }
.tl-dot { position: absolute; top: 0; left: 0; width: 2.8rem; height: 2.8rem; border-radius: 50%; background: linear-gradient(135deg, var(--flame-2), var(--flame-3)); color: #fff; font-family: var(--font-display); font-weight: 800; display: grid; place-items: center; box-shadow: var(--shadow-sm); z-index: 1; }
.tl-step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.tl-step p { font-size: .92rem; }

/* Before / after */
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 1.8rem); }
.ba-card { border-radius: var(--radius-lg); padding: 1.8rem; border: 1px solid var(--line); }
.ba-card h3 { margin-bottom: 1.1rem; display: flex; align-items: center; gap: .55rem; }
.ba-card ul { display: grid; gap: .75rem; }
.ba-card li { position: relative; padding-left: 1.7rem; color: var(--slate); font-size: .95rem; }
.ba-card li::before { position: absolute; left: 0; top: 0; font-weight: 800; }
.ba-bad { background: var(--bg-alt); }
.ba-bad h3::before, .ba-bad li::before { content: "\00d7"; color: #b6483f; }
.ba-good { background: #fff; border-color: transparent; box-shadow: var(--shadow); }
.ba-good h3::before, .ba-good li::before { content: "\2713"; color: var(--green); }

/* Spec list */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.spec { display: flex; gap: .9rem; align-items: flex-start; }
.spec-ico { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; color: var(--red); background: rgba(204,0,1,.08); }
.spec h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.spec p { font-size: .92rem; }

/* Managed-IT status dashboard hero mock */
.statuscard { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.4rem 1.5rem; max-width: 380px; margin-inline: auto; }
.sc-head { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-muted); font-weight: 600; margin-bottom: 1rem; }
.sc-live { width: 9px; height: 9px; border-radius: 50%; background: var(--green); animation: ccpulse 2s infinite; }
.sc-rows { display: grid; gap: .55rem; }
.sc-row { display: flex; justify-content: space-between; align-items: center; background: var(--gray-100); border-radius: 10px; padding: .7rem .9rem; font-size: .92rem; }
.sc-row > span:first-child { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.sc-row .ok { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .85rem; color: #0a7c39; }
.sc-row .ok::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* Defense-in-depth layers */
.layers { max-width: 780px; margin-inline: auto; display: grid; gap: .8rem; }
.layer { display: flex; gap: 1rem; align-items: center; background: var(--bg); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm); }
.layer:nth-child(2) { margin-left: 1.6rem; }
.layer:nth-child(3) { margin-left: 3.2rem; }
.layer:nth-child(4) { margin-left: 4.8rem; }
.layer-ico { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; color: #fff; background: linear-gradient(135deg, var(--red), var(--flame-2)); }
.layer h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.layer p { font-size: .9rem; }

/* Wide testimonial (single, centered on a service page) */
.quote-card--wide { max-width: 760px; margin-inline: auto; text-align: center; }
.quote-card--wide .stars { justify-content: center; }
.quote-card--wide .who { justify-content: center; }

@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-mock { margin-top: 1.5rem; }
  .layer:nth-child(2), .layer:nth-child(3), .layer:nth-child(4) { margin-left: 0; }
  .fgrid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 2.2rem; }
  .tl-step:not(:last-child)::after { display: none; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .beforeafter, .timeline, .spec-grid { grid-template-columns: 1fr; }
  .callflow { flex-direction: column; }
  .cf-arrow { width: 2px; height: 28px; background: repeating-linear-gradient(180deg, var(--gray-400) 0 6px, transparent 6px 12px); }
  .cf-arrow::after { right: 50%; top: auto; bottom: -1px; transform: translateX(50%); border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 7px solid var(--gray-400); border-bottom: none; }
  .cf-branch { width: 100%; }
  .cf-node { justify-content: center; }
  .cmp-head { display: none; }
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-row > div { padding: .7rem 1.1rem; }
  .cmp-feat { background: var(--gray-100); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 1rem auto 0; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split .media-frame { order: -1; }
}
@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .nav-links, .nav-cta > .phone-link { display: none; }
  .nav-toggle { display: block; }
  .brand img { height: 36px; }
  .nav-cta { margin-left: auto; }
  .nav-cta .btn { display: none; }

  .mobile-menu {
    position: fixed; inset: var(--header-h) 0 0; z-index: 99;
    background: #fff; padding: 1.5rem 1.5rem 2.5rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .4s var(--ease);
    display: flex; flex-direction: column; gap: .25rem;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .mobile-menu { transform: none; }
  .mobile-menu a.m-link {
    font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--ink);
    padding: .9rem 0; border-bottom: 1px solid var(--line);
  }
  .mobile-menu a.m-link.active { color: var(--red); }
  .mobile-menu .m-actions { margin-top: 1.5rem; display: grid; gap: .8rem; }
  .mobile-menu .m-actions .btn { width: 100%; }
  .mobile-menu .m-phone { display: inline-flex; align-items: center; gap: .5rem; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--ink); padding: .7rem; }
}
@media (min-width: 861px) { .mobile-menu { display: none; } }
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-float.tl { left: 0; } .hero-float.br { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col.footer-about { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-float { display: none; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  h2 { font-size: clamp(1.65rem, 7vw, 2rem); }
  .hero-meta { gap: 1.1rem 1.4rem; }
  .hero-stat .num { font-size: 1.55rem; }
  .hero-visual { max-width: 100%; }
  .hero-card { padding: 1.1rem; }
  .status-row { gap: .6rem; padding: .7rem; }
  .status-row .s { font-size: .74rem; }
  .status-row .badge { font-size: .66rem; padding: .2rem .45rem; }
}