/* =========================================================
   Techniqus Infosec — Stylesheet v2
   Modern, light-themed, animated. Palette derived from the
   brand logo (teal to navy gradient). No dark backgrounds.
   ========================================================= */

:root {
  --teal: #14B8AA;
  --teal-bright: #22D3C5;
  --navy: #14336B;
  --navy-deep: #0B2044;
  --amber: #FFB648;
  --coral: #FF6B5B;

  --bg: #F6F9FC;
  --surface: #FFFFFF;
  --surface-alt: #EEF4FA;
  --surface-tint: #E8F7F5;

  --ink: #0F1A2E;
  --ink-muted: #5B6C84;
  --ink-faint: #8A97AC;
  --border: #E3E9F1;
  --border-strong: #CFD9E6;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --max-width: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 14px -6px rgba(11, 32, 68, 0.12);
  --shadow-md: 0 18px 40px -18px rgba(11, 32, 68, 0.28);
  --shadow-lg: 0 30px 70px -25px rgba(11, 32, 68, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
p  { color: var(--ink-muted); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--teal); display: inline-block; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--teal-bright), var(--navy));
  z-index: 999; transition: width 0.1s linear;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.08s; }
.reveal-delay-2.in-view { transition-delay: 0.16s; }
.reveal-delay-3.in-view { transition-delay: 0.24s; }
.reveal-delay-4.in-view { transition-delay: 0.32s; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: linear-gradient(120deg, var(--navy), var(--navy-deep)); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: var(--surface); color: var(--navy); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-gradient { background: linear-gradient(120deg, var(--teal-bright), var(--teal)); color: #06322F; box-shadow: 0 14px 30px -14px rgba(20, 184, 170, 0.55); }
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(20, 184, 170, 0.65); }

.btn-primary, .btn-gradient { position: relative; overflow: hidden; }
.btn-primary::before, .btn-gradient::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn-primary:hover::before, .btn-gradient:hover::before { left: 130%; }

.card-icon, .bento-lg .card-icon { transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.card:hover .card-icon { transform: rotate(-8deg) scale(1.08); background: var(--teal); color: #fff; }

.site-header { position: sticky; top: 0; z-index: 60; padding: 1rem 0 0; }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  max-width: var(--max-width); margin: 0 auto; padding: 0.6rem 1rem 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(227, 233, 241, 0.9);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px -18px rgba(11, 32, 68, 0.18);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled .nav { box-shadow: var(--shadow-md); }

.brand { display: flex; align-items: center; gap: 0.55rem; }
.brand img { height: 34px; width: auto; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy); line-height: 1.1; }
.brand-name span { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--ink-faint); text-transform: uppercase; font-weight: 500; }

.nav-links { display: flex; gap: 1.9rem; align-items: center; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink); position: relative; padding: 0.3rem 0.1rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--navy)); transition: width 0.25s var(--ease); border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-cta .btn { padding: 0.6rem 1.2rem; font-size: 0.86rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.25s; border-radius: 2px; }

.hero { position: relative; padding-top: 3rem; padding-bottom: 4rem; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; z-index: 0; animation: drift 16s ease-in-out infinite; }
.hero-blob.b1 { width: 420px; height: 420px; background: var(--teal-bright); top: -140px; right: -100px; }
.hero-blob.b2 { width: 340px; height: 340px; background: var(--amber); opacity: 0.28; bottom: -120px; left: -80px; animation-delay: -6s; }
@keyframes drift { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(24px, -18px) scale(1.06); } }

.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; z-index: 1; }
.hero p.lede { font-size: 1.1rem; margin: 1.15rem 0 1.9rem; max-width: 48ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-trust { display: flex; gap: 1.6rem; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-trust strong { color: var(--navy); font-family: var(--font-display); font-size: 1rem; letter-spacing: 0; display: block; }

.hero-visual { position: relative; }
.hero-image-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.1; animation: floaty 6s ease-in-out infinite;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(20,51,107,0.05), rgba(20,184,170,0.18)); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.floating-card {
  position: absolute; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.7rem;
  animation: floaty 6s ease-in-out infinite; animation-delay: -2s;
}
.floating-card.fc-1 { top: -22px; left: -26px; }
.floating-card.fc-2 { bottom: -20px; right: -22px; animation-delay: -4s; }
.floating-card .fc-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--surface-tint); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floating-card .fc-num { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1rem; line-height: 1.1; }
.floating-card .fc-label { font-family: var(--font-mono); font-size: 0.62rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 640px) { .floating-card { display: none; } }

section { padding: 5rem 0; position: relative; }
.section-alt { background: var(--surface); }
.section-tint { background: linear-gradient(180deg, var(--surface-tint), var(--bg)); }
.section-head { max-width: 62ch; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2.6rem 2rem;
  background: linear-gradient(120deg, var(--navy), var(--navy-deep)); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.stat-num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: #fff; }
.stat-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #9FD9D3; margin-top: 0.2rem; }

.grid { display: grid; gap: 1.6rem; }
.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: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.9rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--surface-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; color: var(--teal); }

.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); position: relative; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,184,170,0.10) 0%, rgba(20,184,170,0) 45%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.product-card:hover .product-media::after { opacity: 1; }
.product-tag {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy);
  padding: 0.35rem 0.7rem; border-radius: var(--radius-pill); z-index: 2;
}
.product-body { padding: 1.5rem 1.6rem 1.8rem; }

.partner-row { display: flex; align-items: center; justify-content: center; gap: 1.6rem; flex-wrap: wrap; }
.partner-row .partner-chip { transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.partner-row .partner-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.illustration-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3;
  background: var(--surface-tint); padding: 1.2rem;
}

.bento-cluster { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.1rem; }
.bento-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.4rem; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.bento-lg { grid-column: 1 / -1; display: flex; align-items: center; gap: 1rem; background: linear-gradient(120deg, var(--navy), var(--navy-deep)); border: none; }
.bento-lg .card-icon { background: rgba(255,255,255,0.14); color: #fff; margin-bottom: 0; }
.bento-lg .bento-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: #fff; }
.bento-lg .bento-label { font-family: var(--font-mono); font-size: 0.72rem; color: #9FD9D3; text-transform: uppercase; letter-spacing: 0.05em; }
.bento-sm .bento-label { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-top: 0.3rem; }
.hs-bob-css { animation: hsBobCss 4.6s ease-in-out infinite; }
@keyframes hsBobCss { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) { .hs-bob-css { animation: none; } }

.product-media img[src$=".svg"] { object-fit: contain; padding: 0.6rem; background: var(--surface-tint); }

/* ---------- Hero scene mouse-parallax container ---------- */
.hero-scene { cursor: default; background: var(--surface-tint); }

.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 2.5rem; width: max-content; animation: marquee 22s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-chip { font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.06em; padding: 0.9rem 1.8rem; border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--navy); background: var(--surface); white-space: nowrap; }

.cta-band {
  position: relative; overflow: hidden; background: linear-gradient(125deg, var(--navy), var(--navy-deep) 60%, #0A1B37); color: #fff;
  border-radius: var(--radius-lg); padding: 3.2rem 2.6rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band::before { content: ""; position: absolute; width: 260px; height: 260px; background: var(--teal-bright); filter: blur(90px); opacity: 0.35; top: -80px; right: -40px; }
.cta-band h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-band p { color: #B9C9E4; margin: 0; position: relative; z-index: 1; }
.cta-band > div:first-child, .cta-band .btn { position: relative; z-index: 1; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
input, textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--surface); color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(20,184,170,0.12); }
.form-note { font-size: 0.82rem; margin-top: 0.7rem; }
.form-status { font-size: 0.9rem; margin-top: 0.9rem; font-weight: 600; }
.form-status.success { color: var(--teal); }
.form-status.error { color: var(--coral); }

.info-list li { display: flex; gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.info-list li:last-child { border-bottom: none; }
.info-list strong { display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.2rem; }
.info-icon { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; background: var(--surface-tint); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.map-embed { width: 100%; border-radius: var(--radius-md); border: 1px solid var(--border); min-height: 260px; overflow: hidden; }

.quote-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem; position: relative; }
.quote-mark { font-family: var(--font-display); font-size: 3rem; color: var(--teal); line-height: 1; margin-bottom: 0.6rem; }
.quote-text { color: var(--ink); font-size: 1.05rem; margin-bottom: 1.2rem; }
.quote-author { display: flex; align-items: center; gap: 0.7rem; }
.quote-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-bright), var(--navy)); flex-shrink: 0; }
.quote-name { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.quote-role { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.05em; }

.step-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: "0" counter(step); font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.4px var(--teal); display: block; margin-bottom: 0.6rem;
}
.step:not(:last-child)::after { content: ""; position: absolute; top: 2.1rem; left: calc(100% - 0.7rem); width: calc(1.5rem + 1.4rem); height: 1px; background: var(--border-strong); }
@media (max-width: 860px) { .step:not(:last-child)::after { display: none; } }

.back-to-top {
  position: fixed; bottom: 1.6rem; right: 1.6rem; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-bright), var(--navy)); color: #fff; display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; z-index: 70;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.site-footer { background: linear-gradient(180deg, var(--navy), var(--navy-deep)); color: #C7D2E0; margin-top: 5rem; position: relative; overflow: hidden; }
.site-footer .container { padding-top: 3.5rem; padding-bottom: 2.2rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand img { height: 30px; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.05rem; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.site-footer p { color: #9FB0C4; font-size: 0.9rem; }
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer a { color: #C7D2E0; font-size: 0.9rem; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--teal-bright); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: rgba(255,255,255,0.08); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.3rem 1.5rem; text-align: center; font-size: 0.8rem; color: #8194AC; }

.placeholder-img {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-md);
  background: repeating-linear-gradient(135deg, var(--surface-tint), var(--surface-tint) 12px, var(--bg) 12px, var(--bg) 24px);
  border: 1px dashed var(--border-strong); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-faint); text-align: center; padding: 1rem;
}

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .step-row { grid-template-columns: 1fr 1fr; }
  .site-footer .container { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 74px; left: 1rem; right: 1rem;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 0.6rem 1.2rem; box-shadow: var(--shadow-md);
  }
  .nav-links.open li { width: 100%; padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; padding: 2rem 1.3rem; }
  .step-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  section { padding: 3.2rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .lede { font-size: 1rem !important; }
  .hero { padding-top: 1.6rem; padding-bottom: 2.2rem; }
  .hero-blob.b1 { width: 260px; height: 260px; top: -100px; right: -90px; }
  .hero-blob.b2 { width: 220px; height: 220px; }
  .card, .product-body, .cta-band, .quote-card, .bento-card { padding: 1.3rem; }
  .site-header { padding-top: 0.7rem; }
  .nav { padding: 0.5rem 0.6rem 0.5rem 0.8rem; border-radius: var(--radius-md); }
  .brand img { height: 26px; }
  .brand-name { font-size: 0.85rem; }
  .brand-name span { font-size: 0.52rem; }
  .nav-cta .btn { padding: 0.5rem 0.85rem; font-size: 0.78rem; }
  .bento-cluster { grid-template-columns: 1fr; }
  .back-to-top { width: 40px; height: 40px; bottom: 1.1rem; right: 1.1rem; }
}

@media (max-width: 400px) {
  .container { padding: 0 1.1rem; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .eyebrow { font-size: 0.64rem; }
  .btn { padding: 0.68rem 1.2rem; font-size: 0.85rem; }
  .hero-trust { gap: 1rem; font-size: 0.66rem; }
  .stat-num { font-size: 1.7rem; }
  .nav-cta { display: none; }
}

/* ---------- Large-screen scaling (wide monitors) ----------
   Everything in this stylesheet is sized in rem, so scaling the root
   font-size scales type, spacing, radii, and gaps together proportionally
   — this is what makes the layout feel "full-size" on big displays
   instead of a small fixed column floating in empty space. */
@media (min-width: 1440px) {
  html { font-size: 17.5px; }
  :root { --max-width: 1320px; }
}
@media (min-width: 1800px) {
  html { font-size: 19px; }
  :root { --max-width: 1480px; }
}
@media (min-width: 2200px) {
  html { font-size: 21px; }
  :root { --max-width: 1600px; }
}
