/* IT Guy Reno — main stylesheet (deferred via preload).
   Cleaned, single-source. Critical above-the-fold rules live in critical.css.
   Color anchors: ink #000, body #333, muted #777, accent #27b1b6, accent-2 #3688a7,
   sage-bg #e8f0ee (replaces inspiration's pale green), surface #f7f9f9, hairline #e0e0e0.
*/

/* ============================================================
   FONT FACE — self-hosted Lato (latin subset)
   ============================================================ */
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/lato/lato-300.woff2') format('woff2'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/lato/lato-400.woff2') format('woff2'); }
@font-face { font-family: 'Lato'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/lato/lato-700.woff2') format('woff2'); }

/* ============================================================
   GLOBAL UTILITIES
   ============================================================ */
.alignleft   { float: left;  padding: 0 20px 20px 0; }
.alignright  { float: right; padding: 0 0 20px 20px; }
.aligncenter, img.aligncenter { clear: both; display: block; margin: 0 auto; }
.entry .clearfix { margin: 20px 0; }
.clearfix:after { content: ' '; display: block; clear: both; height: 0; visibility: hidden; }
.small-text  { font-size: 14px; }
.red         { color: #9c1a1a; }
.circle img  { border-radius: 50%; }
.shadow      { box-shadow: 0 5px 5px 0 rgba(209,209,209,1); }

/* ============================================================
   SITE HEADER — black bg, white text, single flex row
   ============================================================ */
#header-wrapper, .site-header {
  width: 100%;
  background: #000;
  color: #fff;
  border-bottom: 1px solid #000;
  position: relative;
  z-index: 50;
}
.site-header__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header__brand { flex: 0 0 auto; display: flex; align-items: center; }
.site-header__brand .custom-logo,
.site-header__brand .custom-logo-link img,
.site-header__brand img.custom-logo {
  display: block;
  max-height: 44px;
  width: auto;
  height: auto;
}
.site-header__brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.site-title-fallback {
  display: inline-block;
  padding: 8px 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.primary-nav { flex: 1 1 auto; display: flex; align-items: center; justify-content: center; }
.primary-nav > ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 24px; align-items: center; flex-wrap: nowrap;
}
.primary-nav li { margin: 0; position: relative; }
.primary-nav a {
  display: inline-block;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: #27b1b6; border-bottom-color: #27b1b6; }
.primary-nav .current-menu-item > a { color: #27b1b6; font-weight: 700; border-bottom-color: #27b1b6; }

/* Parent items with children get a chevron indicator */
.primary-nav .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 6px; vertical-align: middle;
  border-left:  4px solid transparent;
  border-right: 4px solid transparent;
  border-top:   4px solid currentColor;
  opacity: 0.7;
}
.primary-nav .menu-item-has-children:hover > a::after,
.primary-nav .menu-item-has-children:focus-within > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* Submenu — hidden by default, popout on hover / keyboard focus */
.primary-nav ul ul.sub-menu {
  list-style: none; margin: 0; padding: 8px 0;
  display: none;
  position: absolute;
  top: 100%; left: -16px;
  background: #000;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  border-radius: 0 0 8px 8px;
  z-index: 100;
}
.primary-nav ul li:hover > .sub-menu,
.primary-nav ul li:focus-within > .sub-menu {
  display: block;
}
.primary-nav ul ul.sub-menu li { width: 100%; position: relative; border-bottom: 0; }
.primary-nav ul ul.sub-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 0;
  white-space: nowrap;
  color: #fff;
}
.primary-nav ul ul.sub-menu a:hover { background: #1a1a1a; color: #27b1b6; border-bottom: 0; }
.site-header__cta { flex: 0 0 auto; }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; color: #fff; }

@media (max-width: 860px) {
  .site-header__inner { flex-wrap: wrap; gap: 12px; }
  .nav-toggle { display: inline-flex; align-items: center; order: 3; margin-left: auto; }
  .primary-nav { order: 99; flex-basis: 100%; }
  .primary-nav > ul { display: none; flex-direction: column; width: 100%; gap: 0; padding: 8px 0; }
  .primary-nav > ul.is-open { display: flex; }
  .primary-nav > ul > li { width: 100%; border-bottom: 1px solid #1a1a1a; }
  .primary-nav > ul > li > a { display: block; padding: 14px 0; text-align: center; }
  /* On mobile: submenus render inline below parent, no hover, indented */
  .primary-nav ul ul.sub-menu {
    display: block; position: static; background: transparent;
    box-shadow: none; padding: 4px 0 8px; min-width: 0; left: 0; border-radius: 0;
  }
  .primary-nav ul ul.sub-menu li { border-bottom: 0; }
  .primary-nav ul ul.sub-menu a {
    padding: 8px 0; font-size: 13px;
    opacity: 0.85; text-align: center;
  }
  .primary-nav .menu-item-has-children > a::after { display: none; }
  .site-header__cta { display: none; }
}

/* ============================================================
   MAIN — generic wrapper, no width
   Inner-page templates use .content-container for the constrained read width.
   ============================================================ */
#main { display: block; }
/* Inner pages (not the home/front-page) get vertical breathing room around their content. */
body:not(.home):not(.front-page) #main { padding: clamp(32px, 5vw, 64px) 0; }
.content-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.fullpage-post, .post {
  width: 92%; max-width: 1200px;
  margin: 0 auto; padding: 0;
}
.entry { line-height: 1.6; }
.post h1, .fullpage-post h1 { font-weight: 700; font-size: clamp(32px, 4vw, 46px); line-height: 1.15; margin: 0 0 28px; }
.post h2, .post h3, .post h4, .fullpage-post h2, .fullpage-post h3, .fullpage-post h4 { margin: 35px 0 0; }

ul.nospace { margin-top: 0; padding-top: 0; }
h3.nospace, h2.nospace { margin-bottom: 0; }

blockquote {
  font-style: italic;
  width: 85%;
  padding: 20px 30px;
  background: #ececec;
  position: relative;
  margin: 0;
}
blockquote::before {
  content: '\201C';
  display: block;
  font-size: 80px;
  position: absolute; left: -5px; top: -10px;
  color: #7a7a7a;
}
blockquote cite { color: #999; font-size: 14px; display: block; margin-top: 5px; }
blockquote cite::before { content: '\2014\2009'; }

/* Sidebar (used by template-sidebar.php and archive.php) */
#sidebar { float: right; padding: 0; width: 30%; max-width: 300px; }
#sidebar ul { padding: 0; margin: 0; }
#sidebar li { list-style: none; }
#sidebar h4 { font-size: 22px; margin: 0 0 10px; }
#sidebar a  { color: #363636; text-decoration: none; }
#sidebar .widget { margin-bottom: 1.875em; }
#sidebar ul ul li { padding: 0.625em 0; border-bottom: 1px solid #ccc; }

/* Search form */
#searchform { margin-top: 0.938em; }
#searchform label { display: none; }

/* Blog / archive */
.cat-blog-post {
  width: 95%; margin: 0 0 3%;
  overflow: hidden; display: table;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}
.cat-blog-pic   { width: 21%; max-width: 200px; margin-right: 15px; float: left; }
.cat-blog-textbox { float: left; width: 70%; line-height: 1.3; font-size: 22px; }
.cat-blog-textbox h4 { margin: 0; padding: 0; font-weight: 700; font-size: 26px; }
.cat-blog-textbox p  { margin-top: 10px; }

/* ============================================================
   BUTTONS + LINKS — used across front-page and inner pages
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 48px; padding: 0 22px;
  font: 700 15px/1 'Lato', system-ui, sans-serif;
  letter-spacing: 0.3px;
  border: 0; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary   { background: #27b1b6; color: #fff; }
.btn--primary:hover, .btn--primary:focus-visible { background: #1d8a8e; color: #fff; }
.btn--secondary { background: transparent; color: #000; border: 2px solid #000; padding: 0 20px; }
.btn--secondary:hover, .btn--secondary:focus-visible { background: #000; color: #fff; }
.btn--ghost     { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.85); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: #fff; color: #1a1a1a; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 700; color: #000; text-decoration: none;
  border-bottom: 2px solid transparent; padding-bottom: 1px;
}
.link-arrow:hover { color: #27b1b6; border-bottom-color: #27b1b6; }
.link-arrow--header { font-size: 14px; color: #27b1b6; }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #777;
  margin: 0 0 16px;
}
.eyebrow--accent  { color: #27b1b6; }
.eyebrow--on-card { color: #1d8a8e; }

/* ============================================================
   FRONT PAGE — sections matching design-inspiration.png
   Sections are full-bleed bands; each has __inner constrained to 1440.
   ============================================================ */

/* 1. HERO */
.hero {
  background: #e8f0ee;
  padding: clamp(48px, 6vw, 96px) 0;
  position: relative; overflow: hidden;
}
.hero__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
  color: #000; margin: 0 0 20px;
}
.hero__emph { position: relative; display: inline-block; white-space: nowrap; z-index: 0; }
.hero__emph::before {
  content: ''; position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 12px; background: #27b1b6;
  opacity: 0.35; z-index: -1; border-radius: 4px;
}
.hero__sub { font-size: 18px; line-height: 1.6; color: #333; margin: 0 0 28px; max-width: 52ch; }
.hero__ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero__photo-wrap { position: relative; }
.hero-photo {
  position: relative; aspect-ratio: 4/3;
  background: #fff;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.float-card--top { top: 32px;    left: -28px; }
.float-card--bot { bottom: 64px; right: -28px; }
.float-card__row { display: flex; align-items: center; gap: 8px; }
.float-card__dot { width: 8px; height: 8px; border-radius: 50%; }
.float-card__dot--green  { background: #22c55e; }
.float-card__dot--accent { background: #27b1b6; }
.float-card__label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #777; }
.float-card__title { font-size: 14px; font-weight: 700; color: #000; margin-top: 4px; }
.float-card__sub   { font-size: 12px; font-weight: 300; color: #333; margin-top: 4px; }

/* 2. TRUST STRIP */
.trust-strip { padding: 28px 0; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; background: #fff; }
.trust-strip__inner {
  max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px);
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
}
.trust-strip__label {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #777;
  margin: 0;
}
.trust-strip__logos {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px;
  align-items: center;
}
.trust-strip__logos li {
  font-size: 16px; font-weight: 700; letter-spacing: 0.3px;
  color: #9aa3a4;
  text-align: center;
  white-space: nowrap;
}

/* 3. STATS */
.stats { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.stats__inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); text-align: center; }
.stats__inner > .eyebrow { display: block; margin-bottom: 48px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; max-width: 980px; margin: 0 auto;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.stat { padding: 48px 32px; border-right: 1px solid #e0e0e0; text-align: center; }
.stat:last-child { border-right: 0; }
.stat__value {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700; line-height: 0.95;
  letter-spacing: -0.04em;
  color: #000;
}
.stat__value--accent { color: #27b1b6; }
.stat__value sup { font-size: 0.4em; margin-left: 4px; letter-spacing: -0.02em; font-weight: 700; vertical-align: baseline; }
.stat__label { font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #777; margin-top: 16px; }
.stat__sub { font-size: 14px; line-height: 1.5; color: #333; margin: 8px auto 0; max-width: 28ch; }

/* SERVICES — white for clean break after sage hero */
.services { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.services__inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.services__header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.services__header h2 { font-size: clamp(32px, 4vw, 44px); font-weight: 700; line-height: 1.1; margin: 0 0 16px; color: #000; }
.services__sub { font-size: 17px; line-height: 1.55; color: #333; margin: 0; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.svc-card { background: #fff; border-radius: 16px; overflow: hidden; transition: transform .15s, box-shadow .15s; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.svc-card__plate {
  display: block; aspect-ratio: 5/4; position: relative; overflow: hidden;
  background: #eef3f4;
}
.svc-card__plate img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-card__cat {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #fff;
  background: rgba(39, 177, 182, 0.95);
  padding: 4px 10px; border-radius: 999px;
}
.svc-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-card__title { font-size: 20px; font-weight: 700; color: #000; margin: 0 0 8px; line-height: 1.3; }
.svc-card__desc  { font-size: 15px; line-height: 1.55; color: #333; margin: 0 0 14px; flex: 1; }

/* SPLIT — Built on Trust + collage. Soft band. */
.split { padding: clamp(48px, 6vw, 96px) 0; background: #f7f9f9; }
.split__inner {
  max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split__collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "main top" "main bottom";
  gap: 8px;
  aspect-ratio: 5/4;
}
.collage-cell { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.collage-cell--main   { grid-area: main; }
.collage-cell--top    { grid-area: top; }
.collage-cell--bottom { grid-area: bottom; }

.split__copy h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.05; margin: 0 0 20px; color: #000; }
.split__lead { font-size: 17px; line-height: 1.6; color: #333; margin: 0 0 16px; }
.split__bullets { list-style: none; padding: 0; margin: 24px 0 32px; }
.split__bullets li {
  position: relative; padding: 12px 0 12px 32px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px; line-height: 1.55; color: #333;
}
.split__bullets li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 16px; height: 2px; background: #27b1b6;
}
.split__bullets li strong { color: #000; font-weight: 700; }

/* CASE STUDIES — white. */
.cases { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.cases__inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.cases__header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 40px; gap: 24px; }
.cases__header h2 { font-size: clamp(32px, 4vw, 44px); font-weight: 700; line-height: 1.1; margin: 0; color: #000; }
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card { background: #fff; border-radius: 16px; overflow: hidden; transition: transform .15s, box-shadow .15s; }
.case-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.case-card__plate { display: block; aspect-ratio: 5/4; position: relative; overflow: hidden; background: #eef3f4; }
.case-card__plate img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-card__cat {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #fff;
  background: rgba(26, 26, 26, 0.85);
  padding: 4px 10px; border-radius: 999px;
}
.case-card__body { padding: 24px; }
.case-card__title { font-size: 18px; font-weight: 700; line-height: 1.3; margin: 0 0 8px; }
.case-card__title a { color: #000; text-decoration: none; }
.case-card__title a:hover { color: #27b1b6; }
.case-card__outcome { font-size: 14px; line-height: 1.55; color: #333; margin: 0; }
.case-card.is-placeholder { position: relative; }
.case-card.is-placeholder::after {
  content: 'PLACEHOLDER'; position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  color: #cc1818; background: #fff; padding: 3px 7px;
  border: 1px solid #cc1818; border-radius: 4px;
}

/* TESTIMONIALS — soft band. */
.testimonials { padding: clamp(48px, 6vw, 96px) 0; background: #f7f9f9; }
.testimonials__inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.testimonials__header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.testimonials__header h2 { font-size: clamp(32px, 4vw, 44px); font-weight: 700; line-height: 1.1; margin: 0; color: #000; }
.testimonials__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: #fff; padding: 28px 24px; border-radius: 16px; display: flex; flex-direction: column; gap: 20px; margin: 0; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.testimonial__quote { font-size: 16px; line-height: 1.55; color: #000; margin: 0; quotes: none; position: relative; }
.testimonial__quote::before {
  content: '\201C'; display: block;
  font-size: 48px; font-weight: 700; color: #27b1b6;
  line-height: 0.4; margin-bottom: 12px;
}
.testimonial__quote p { margin: 0; }
.testimonial__attr { display: flex; align-items: center; gap: 12px; margin-top: auto; border-top: 1px solid #e0e0e0; padding-top: 16px; }
.testimonial__avatar { flex: none; border-radius: 50%; }
.testimonial__avatar--photo { width: 48px; height: 48px; object-fit: cover; }
.testimonial__name { font-size: 14px; font-weight: 700; color: #000; }
.testimonial__role { font-size: 12px; color: #777; margin-top: 2px; }
.testimonial.is-placeholder { position: relative; }
.testimonial.is-placeholder::after {
  content: 'PLACEHOLDER'; position: absolute; top: 8px; right: 8px;
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  color: #cc1818; background: #fff; padding: 3px 7px;
  border: 1px solid #cc1818; border-radius: 4px;
}

/* INSIGHTS — white. */
.insights { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.insights__inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.insights__header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 40px; gap: 24px; }
.insights__header h2 { font-size: clamp(32px, 4vw, 44px); font-weight: 700; line-height: 1.1; margin: 0; color: #000; }
.insights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card { background: #fff; border-radius: 16px; overflow: hidden; transition: transform .15s, box-shadow .15s; }
.insight-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.insight-card__plate { display: block; aspect-ratio: 5/4; position: relative; overflow: hidden; background: #eef3f4; }
.insight-card__plate img { width: 100%; height: 100%; object-fit: cover; display: block; }
.insight-card__cat {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #fff;
  background: rgba(39, 177, 182, 0.95);
  padding: 4px 10px; border-radius: 999px;
}
.insight-card__body { padding: 24px; }
.insight-card__title { font-size: 18px; font-weight: 700; line-height: 1.3; margin: 0 0 8px; }
.insight-card__title a { color: #000; text-decoration: none; }
.insight-card__title a:hover { color: #27b1b6; }
.insight-card__byline { font-size: 12px; color: #777; margin: 0; }
.insight-card.is-placeholder .insight-card__title { color: #999; }

/* 9. PRE-FOOTER CTA */
.precta { position: relative; padding: 0; min-height: 480px; overflow: hidden; }
.precta__bg { position: absolute; inset: 0; }
.precta__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.precta__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,42,44,0.55), rgba(26,42,44,0.35));
}
.precta__card {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: clamp(48px, 6vw, 96px) auto;
  padding: clamp(28px, 4vw, 48px);
  background: #e8f0ee;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0,0,0,0.16);
}
.precta__card h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; line-height: 1.15; margin: 0 0 16px; color: #000; }
.precta__sub { font-size: 17px; line-height: 1.55; color: #333; margin: 0 0 24px; max-width: 56ch; margin-inline: auto; }
.precta__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.precta__ctas .btn--ghost { color: #000; border-color: #000; }
.precta__ctas .btn--ghost:hover { background: #000; color: #fff; }

/* ============================================================
   FOOTER — dark band, full-bleed
   ============================================================ */
#footer-wrapper {
  width: 100%;
  background: #1a1a1a;
  padding: clamp(40px, 5vw, 64px) 0 24px;
  text-align: center;
  color: #d4d4d4;
}
.site-footer__inner {
  max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px);
}
#footernav ul {
  list-style: none; margin: 0 auto 16px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 4px 24px; justify-content: center;
}
#footernav a { color: #fff; text-decoration: none; font-size: 14px; }
#footernav a:hover { color: #27b1b6; }
#copyright {
  margin-top: 16px;
  font-size: 14px; font-weight: 300;
  line-height: 1.5;
  color: #d4d4d4;
}
#copyright a { color: #fff; }
#copyright a:hover { color: #27b1b6; }

/* ============================================================
   GRAVITY FORMS  (lightweight)
   ============================================================ */
.gform_wrapper .top_label textarea.textarea { width: 80% !important; }
.gform_wrapper .top_label .gfield_label     { margin-top: 30px; }

/* ============================================================
   WOOCOMMERCE — kept for future product/service sales
   Lean ruleset; the plugin's stylesheet handles the rest.
   ============================================================ */
.woocommerce ul.products li.product .price { color: #363636 !important; }
.woocommerce ul.products li.product a img { margin: 0 !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 28px !important; font-weight: 400 !important; padding: .25em 0 0 !important; }
.woocommerce span.onsale { background: #27b1b6 !important; }
.woocommerce div.product p.price { font-weight: 700; font-size: 22px !important; color: #27b1b6 !important; padding: 0; margin: 0; }
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt { background: #27b1b6 !important; opacity: 1 !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__photo-wrap { max-width: 480px; margin: 0 auto; width: 100%; }
  .float-card--top { top: 16px; left: 8px; }
  .float-card--bot { bottom: 16px; right: 8px; }
  .trust-strip__inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .trust-strip__logos { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .trust-strip__logos li { font-size: 14px; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid #e0e0e0; padding: 32px 24px; }
  .stat:last-child { border-bottom: 0; }
  .services__grid, .cases__grid, .testimonials__row, .insights__grid { grid-template-columns: 1fr; }
  .split__inner { grid-template-columns: 1fr; gap: 32px; }
  .cases__header, .insights__header { flex-direction: column; align-items: flex-start; }
  .post { width: 100%; float: none; min-height: 0; margin-bottom: 30px; }
  .cat-blog-pic { float: none; width: 100%; max-width: 400px; margin: 0 auto 15px; text-align: center; }
  .cat-blog-textbox { float: none; width: 94%; margin: 0 auto 4%; text-align: center; }
  #sidebar { float: none; padding: 10px; width: 90%; max-width: none; margin: 0 auto; }
}
@media (max-width: 560px) {
  .trust-strip__logos { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 36px; }
}

/* ============================================================
   PAGE HERO — small hero band on inner pages
   ============================================================ */
.page-hero {
  background: #e8f0ee;
  padding: clamp(48px, 6vw, 80px) 0;
}
.page-hero__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  text-align: center;
  max-width: 880px;
}
.page-hero__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.015em;
  color: #000; margin: 0 0 16px;
}
.page-hero__lead { font-size: 18px; line-height: 1.6; color: #333; margin: 0; }

/* svc-card tagline (italic line under title) */
.svc-card__tag { font-size: 14px; color: #27b1b6; margin: 0 0 8px; }

/* ============================================================
   PROSE BAND — long-form text section (about page story)
   ============================================================ */
.prose-band { padding: clamp(48px, 6vw, 96px) 0; }
.prose-band--white { background: #fff; }
.prose-band--soft  { background: #f7f9f9; }
.prose-band__inner { max-width: 760px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.prose-band__h { font-size: clamp(28px, 3vw, 36px); font-weight: 700; line-height: 1.2; margin: 0 0 24px; color: #000; }
.prose-band__body p { font-size: 17px; line-height: 1.65; color: #333; margin: 0 0 16px; }
.prose-band__sig { font-style: italic; color: #555; margin-top: 24px; }

/* ============================================================
   PRINCIPLES (about page — 4 numbered cards)
   ============================================================ */
.principles { padding: clamp(48px, 6vw, 96px) 0; background: #f7f9f9; }
.principles__inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.principles__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.principle {
  background: #fff; padding: 32px;
  border-radius: 16px;
}
.principle__num {
  font-size: 14px; font-weight: 700; letter-spacing: 1.5px;
  color: #27b1b6; margin-bottom: 12px;
}
.principle__title { font-size: 22px; font-weight: 700; margin: 0 0 12px; color: #000; }
.principle p { font-size: 15px; line-height: 1.55; color: #333; margin: 0; }

/* ============================================================
   LOCAL ROOTS (about page — Reno-only band)
   ============================================================ */
.local-roots { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.local-roots__inner { max-width: 880px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); text-align: center; }
.local-roots__h { font-size: clamp(28px, 3vw, 40px); font-weight: 700; line-height: 1.15; margin: 0 0 20px; color: #000; }
.local-roots p { font-size: 17px; line-height: 1.6; color: #333; margin: 0 0 16px; }
.local-roots__area { font-size: 14px; color: #27b1b6; margin-top: 24px !important; letter-spacing: 0.3px; }

/* ============================================================
   SERVICES — 4 alternating split sections
   ============================================================ */
.svc-section { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.svc-section--soft { background: #f7f9f9; }
.svc-section__inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.svc-section__split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.svc-section__media {
  display: block; aspect-ratio: 5/4; position: relative; overflow: hidden;
  border-radius: 16px; background: #eef3f4;
}
.svc-section__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-section__cat {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #fff;
  background: rgba(39, 177, 182, 0.95);
  padding: 4px 10px; border-radius: 999px;
}
.svc-section__num-tile {
  aspect-ratio: 5/4;
  background: #fff;
  border: 2px solid #27b1b6;
  border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
}
.svc-section--soft .svc-section__num-tile { background: #fff; }
.svc-section__num { font-size: 96px; font-weight: 700; line-height: 1; color: #27b1b6; letter-spacing: -0.04em; }
.svc-section__num-label {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #777;
}
.svc-section__copy h2 { font-size: clamp(26px, 3vw, 36px); }
.svc-section__h { font-weight: 700; line-height: 1.2; margin: 0 0 16px; color: #000; }
.svc-section__body { font-size: 16px; line-height: 1.6; color: #333; margin: 0 0 16px; }

/* ============================================================
   HOW WE WORK (services page — 4-step grid)
   ============================================================ */
.how-we-work { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.how-we-work__inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.how-we-work__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.how-step {
  background: #f7f9f9; padding: 32px 24px;
  border-radius: 16px;
}
.how-step__num { font-size: 40px; font-weight: 700; color: #27b1b6; line-height: 1; letter-spacing: -0.02em; margin-bottom: 16px; }
.how-step__title { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: #000; }
.how-step p { font-size: 14px; line-height: 1.55; color: #333; margin: 0; }

/* ============================================================
   SVC DETAIL (the 3 service detail pages — Daily Ops, Security, Cloud)
   ============================================================ */
.svc-detail { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.svc-detail__inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.svc-detail__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-detail__item {
  background: #f7f9f9; padding: 28px;
  border-radius: 16px;
}
.svc-detail__item h3 { font-size: 19px; font-weight: 700; margin: 0 0 12px; color: #000; }
.svc-detail__item p  { font-size: 15px; line-height: 1.6; color: #333; margin: 0; }

/* SVC example (closer section on detail pages) */
.svc-example { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.svc-example--soft { background: #f7f9f9; }
.svc-example__inner { max-width: 880px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.svc-example__h { font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.2; margin: 0 0 20px; color: #000; }
.svc-example p { font-size: 17px; line-height: 1.65; color: #333; margin: 0 0 16px; }

/* ============================================================
   MEET THE TEAM
   ============================================================ */
.team { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.team__inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.team__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
.team-card {
  background: #fff;
  border: 1px solid #e8edee;
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.team-card--placeholder { opacity: 0.65; }
.team-card__photo { aspect-ratio: 16/10; background: #eef3f4; display: flex; align-items: center; justify-content: center; }
.team-card__photo-placeholder {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  color: #9aa3a4;
}
.team-card__body { padding: 24px; }
.team-card__name { font-size: 22px; font-weight: 700; margin: 0 0 4px; color: #000; }
.team-card__role { font-size: 14px; color: #27b1b6; font-weight: 700; letter-spacing: 0.3px; margin: 0 0 16px; }
.team-card p { font-size: 15px; line-height: 1.6; color: #333; margin: 0 0 12px; }

.how-hire { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.how-hire--soft { background: #f7f9f9; }
.how-hire__inner { max-width: 760px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); text-align: center; }
.how-hire__h { font-size: clamp(28px, 3vw, 40px); font-weight: 700; line-height: 1.15; margin: 0 0 20px; color: #000; }
.how-hire p { font-size: 17px; line-height: 1.65; color: #333; margin: 0 0 16px; }

.careers { padding: clamp(48px, 6vw, 80px) 0; background: #fff; text-align: center; }
.careers__inner { max-width: 720px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.careers__h { font-size: clamp(24px, 2.5vw, 32px); font-weight: 700; margin: 0 0 16px; color: #000; }
.careers p { font-size: 17px; line-height: 1.6; color: #333; margin: 0; }
.careers a { color: #27b1b6; text-decoration: underline; }

/* ============================================================
   QUOTE FORM (Get a Quote page — split layout)
   ============================================================ */
.quote-form { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.quote-form__inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.quote-form__split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 380px); gap: 48px;
  align-items: start;
}
.quote-form__left .gform_wrapper { margin: 0; }
.quote-form__fineprint { font-size: 12px; color: #777; margin-top: 16px; }
.quote-form__sidebar {
  background: #f7f9f9;
  border-radius: 16px;
  padding: 28px;
  position: sticky; top: 96px;
}
.quote-form__sidebar > .eyebrow { display: block; margin-bottom: 20px; }
.quote-form__step { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #e0e0e0; }
.quote-form__step:last-of-type { border-bottom: 0; }
.quote-form__step h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: #000; }
.quote-form__step p  { font-size: 14px; line-height: 1.55; color: #333; margin: 0; }
.quote-form__sig { font-size: 13px; color: #555; margin: 16px 0 0; }

/* ============================================================
   OBJECTIONS (Get a Quote — 3-card)
   ============================================================ */
.objections { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.objections--soft { background: #f7f9f9; }
.objections__inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.objections__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.objection { background: #fff; padding: 28px; border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.objections--soft .objection { background: #fff; }
.objection h3 { font-size: 17px; font-weight: 700; margin: 0 0 12px; color: #000; }
.objection p  { font-size: 15px; line-height: 1.55; color: #333; margin: 0; }

/* ============================================================
   REASSURANCE strip (narrow phone-CTA at bottom of /get-a-quote and /contact)
   ============================================================ */
.reassurance { padding: 48px 0; background: #fff; text-align: center; }
.reassurance__inner { max-width: 720px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.reassurance h2 { font-size: 24px; font-weight: 700; margin: 0 0 8px; color: #000; }
.reassurance p  { font-size: 16px; color: #333; margin: 0; }
.reassurance a { color: #27b1b6; font-weight: 700; text-decoration: none; }
.reassurance a:hover { text-decoration: underline; }

/* ============================================================
   CONTACT BLOCK
   ============================================================ */
.contact-block { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.contact-block__inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.contact-block__split { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.contact-block__info { background: #f7f9f9; border-radius: 16px; padding: 28px; }
.contact-block__group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #e0e0e0; }
.contact-block__group:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.contact-block__label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: #27b1b6; margin: 0 0 8px; }
.contact-block__value { font-size: 22px; font-weight: 700; margin: 0 0 4px; }
.contact-block__value a { color: #000; text-decoration: none; }
.contact-block__value a:hover { color: #27b1b6; }
.contact-block__sub { font-size: 14px; line-height: 1.55; color: #333; margin: 0; }

/* ============================================================
   NEXT STEPS (Contact — 3 step row)
   ============================================================ */
.next-steps { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.next-steps--soft { background: #f7f9f9; }
.next-steps__inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.next-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.next-step { background: #fff; padding: 28px; border-radius: 16px; }
.next-step__num { font-size: 32px; font-weight: 700; color: #27b1b6; line-height: 1; margin-bottom: 12px; letter-spacing: -0.02em; }
.next-step h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: #000; }
.next-step p  { font-size: 14px; line-height: 1.55; color: #333; margin: 0; }

/* ============================================================
   TESTIMONIALS PAGE — full grid wrap
   ============================================================ */
.testimonials--full .testimonials__row--wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ============================================================
   RESPONSIVE for everything new
   ============================================================ */
@media (max-width: 960px) {
  .principles__grid       { grid-template-columns: 1fr; }
  .svc-section__split     { grid-template-columns: 1fr; gap: 32px; }
  .svc-section__num-tile  { aspect-ratio: 16/10; }
  .svc-section__num       { font-size: 64px; }
  .how-we-work__grid      { grid-template-columns: repeat(2, 1fr); }
  .svc-detail__grid       { grid-template-columns: 1fr; }
  .team__grid             { grid-template-columns: 1fr; }
  .quote-form__split      { grid-template-columns: 1fr; }
  .quote-form__sidebar    { position: static; }
  .objections__grid       { grid-template-columns: 1fr; }
  .contact-block__split   { grid-template-columns: 1fr; }
  .next-steps__grid       { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .how-we-work__grid      { grid-template-columns: 1fr; }
}

/* ============================================================
   SECURITY BAND — dark navy, narrow 2-col band.
   Position 2 (right after hero). Left: copy + big CTA.
   Right: dwell-time timeline graphic + stacked stats with hairlines.
   ============================================================ */
.security-band {
  background: #0d1f2d;
  padding: clamp(40px, 5vw, 72px) clamp(16px, 3vw, 32px);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.security-band::before {
  /* subtle radial accent in the top-right — adds depth to the navy */
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(39,177,182,0.08), transparent 60%);
  pointer-events: none;
}
.security-band__card {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.security-band__copy { min-width: 0; }
.security-band__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #27b1b6;
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.security-band__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #27b1b6;
  display: inline-block;
}
.security-band__h {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 18px;
}
.security-band__body { margin: 0 0 22px; }
.security-band__body p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 12px;
}
.security-band__body p:last-child { margin-bottom: 0; }
.security-band__body strong {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(39,177,182,0.25) 60%);
  padding: 0 2px;
}

/* Bigger, more visible CTA — solid teal with shadow */
.security-band__cta {
  height: 56px;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px -10px rgba(39,177,182,0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.security-band__cta:hover,
.security-band__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -10px rgba(39,177,182,0.7);
}

/* Sidebar — timeline + stats stacked vertically, centered against left col */
.security-band__sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.security-band__timeline {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 16px 12px;
  background: rgba(255,255,255,0.02);
}
.security-band__timeline-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
}
.security-band__timeline-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(13,31,45,1), 0 0 0 5px currentColor;
}
.security-band__timeline-dot--start { color: #ef6f6c; background: #ef6f6c; }
.security-band__timeline-dot--end   { color: #27b1b6; background: #27b1b6; }
.security-band__timeline-track {
  flex: 1;
  height: 2px;
  margin: 0 -2px;
  background: linear-gradient(90deg, rgba(239,111,108,0.6), rgba(39,177,182,0.6));
}
.security-band__timeline-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.security-band__timeline-mid {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: #27b1b6;
}

.security-band__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.security-band__stats li {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.security-band__stats li:first-child { border-top: 0; padding-top: 4px; }
.security-band__stats li:last-child  { padding-bottom: 0; }
.security-band__stat-num {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: #27b1b6;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.security-band__stat-label {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 880px) {
  .security-band__card {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 640px;
  }
  .security-band__h { font-size: 26px; }
  .security-band__body p { font-size: 16px; }
}
