/* ============================================================
   SS SecurSys — Premium Security Systems Website
   Design system, components & responsive layout
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --navy-950: #05070f;
  --navy-900: #070b18;
  --navy-850: #0a1022;
  --navy-800: #0e1630;
  --navy-700: #16203f;
  --navy-600: #1f2c52;

  --cyan-500: #22d3ee;
  --cyan-400: #38e0f5;
  --cyan-300: #7defff;
  --gold-500: #f5c451;
  --gold-400: #ffd777;

  --ink-100: #f4f7ff;
  --ink-300: #c3cbe0;
  --ink-400: #9aa4c2;
  --ink-500: #6f7a9c;

  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --glass: rgba(255, 255, 255, 0.045);
  --glass-2: rgba(255, 255, 255, 0.07);

  --grad-accent: linear-gradient(120deg, var(--cyan-400), #4f8bff 55%, var(--gold-400));
  --grad-cyan: linear-gradient(120deg, #22d3ee, #4f8bff);
  --grad-gold: linear-gradient(120deg, #ffd777, #f5a623);

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 50px rgba(3, 8, 22, 0.55);
  --shadow-glow: 0 0 40px rgba(34, 211, 238, 0.25);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --font-head: "Sora", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 9vw, 140px);

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--ink-300);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient background glow layers */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(60% 50% at 12% 8%, rgba(34, 211, 238, 0.12), transparent 60%),
    radial-gradient(50% 45% at 88% 15%, rgba(79, 139, 255, 0.13), transparent 62%),
    radial-gradient(55% 55% at 78% 92%, rgba(245, 196, 81, 0.08), transparent 60%);
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 .5H40M.5 0V40' stroke='%23ffffff' stroke-opacity='0.02' /%3E%3C/svg%3E");
  z-index: -2;
  pointer-events: none;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-100); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5.4vw, 4.3rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--ink-300); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }

/* ---------- Utility ---------- */
.grad-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-300);
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: var(--glass);
  backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 12px var(--cyan-400);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.08rem; color: var(--ink-400); }

.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--ink-300); }

/* ---------- Buttons ---------- */
.btn {
  --pad: 15px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--pad);
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s;
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: var(--grad-cyan);
  color: #04121f;
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(34, 211, 238, 0.5); }
.btn-ghost {
  background: var(--glass-2);
  color: var(--ink-100);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--cyan-400); box-shadow: var(--shadow-glow); }
.btn-gold { background: var(--grad-gold); color: #241a02; box-shadow: 0 10px 30px rgba(245, 196, 81, 0.3); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(245, 196, 81, 0.45); }
.btn-lg { --pad: 18px 34px; font-size: 1.05rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 11, 24, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1320px; margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
  transition: padding 0.4s var(--ease);
}
.nav.scrolled .nav-inner { padding-block: 9px; }

/* Nav entrance */
.nav { transform: translateY(-100%); opacity: 0; animation: navDrop .9s var(--ease) .1s forwards; }
@keyframes navDrop { to { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .nav { transform: none; opacity: 1; animation: none; }
}

.logo {
  display: flex; align-items: center; gap: 12px;
  flex: 0 0 auto; font-family: var(--font-head);
  transition: transform .35s var(--ease);
}
.logo:hover { transform: translateY(-1px); }
.logo-mark {
  flex: 0 0 auto;
  width: 68px; height: 78px; border-radius: 20px;
  display: grid; place-items: center;
  border: 2px solid transparent;
  background:
    linear-gradient(155deg, #ffffff 0%, #f2f6ff 55%, #e2e9fa 100%) padding-box,
    linear-gradient(140deg, var(--gold-400), var(--cyan-400) 55%, #4f8bff) border-box;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 10px 30px rgba(3, 8, 22, 0.55),
    0 0 34px rgba(34, 211, 238, 0.22);
  position: relative; overflow: hidden;
  transition: width .45s var(--ease), height .45s var(--ease), border-radius .45s var(--ease), box-shadow .35s;
}
.nav.scrolled .logo-mark { width: 56px; height: 64px; border-radius: 17px; }
.logo:hover .logo-mark {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 12px 34px rgba(3, 8, 22, 0.6),
    0 0 52px rgba(34, 211, 238, 0.45);
}
.logo-mark img {
  width: 84%; height: 86%; object-fit: contain; display: block;
  filter: drop-shadow(0 1px 1px rgba(10, 20, 45, 0.18));
}
.logo-full { height: 108px; width: auto; display: block; }
.logo-plate {
  display: inline-grid; place-items: center;
  padding: 14px 20px; border-radius: var(--radius);
  background: linear-gradient(150deg, #ffffff, #eaf0fc);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.logo-mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.5) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: sheen 4s infinite;
}
@keyframes sheen { 0%,60%{transform:translateX(-120%)} 100%{transform:translateX(120%)} }
.logo-text { display: flex; flex-direction: column; justify-content: center; gap: 4px; line-height: 1; white-space: nowrap; }
.logo-text b { color: var(--ink-100); font-size: 1.34rem; font-weight: 800; letter-spacing: -0.02em; }
.logo-text span { font-size: 0.64rem; letter-spacing: 0.2em; color: var(--cyan-300); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1 1 auto; min-width: 0; justify-content: center; }
/* Compact labels in the bar, full labels in the mobile drawer */
.nav-label-full { display: none; }
.nav-links a {
  font-family: var(--font-head);
  font-size: clamp(0.78rem, 0.92vw, 0.9rem); font-weight: 500;
  color: var(--ink-300); white-space: nowrap;
  padding: 10px clamp(8px, 1.1vw, 15px); border-radius: 100px;
  position: relative; transition: color 0.25s, background 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; translate: -50% 0; width: calc(100% - 22px);
  bottom: 2px; height: 2px; border-radius: 2px; background: var(--grad-cyan);
  transform: scaleX(0); transition: transform 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink-100); }
.nav-links a:hover { background: var(--glass); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
/* Desktop: the in-drawer CTA belongs to the mobile menu only */
.nav-links > .btn { display: none; }

.nav-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav-actions .btn { white-space: nowrap; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--glass-2); border: 1px solid var(--line-strong);
  place-items: center; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink-100); transition: transform 0.35s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(6px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(3, 6, 15, 0.6); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 172px; padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero-mesh {
  position: absolute; inset: -20% -10% auto -10%; height: 120%;
  background:
    radial-gradient(40% 60% at 20% 30%, rgba(34,211,238,.28), transparent 60%),
    radial-gradient(45% 55% at 80% 20%, rgba(79,139,255,.28), transparent 60%),
    radial-gradient(40% 50% at 60% 80%, rgba(245,196,81,.14), transparent 60%);
  filter: blur(30px); z-index: -1;
  animation: floatMesh 16s ease-in-out infinite alternate;
}
@keyframes floatMesh { from{transform:translate3d(0,0,0) scale(1)} to{transform:translate3d(-3%,2%,0) scale(1.08)} }

.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.hero h1 { margin: 22px 0 20px; }
.hero .lead { max-width: 560px; }
.hero .btn-group { margin-top: 34px; }
.hero-micro { margin-top: 18px; font-size: 0.9rem; color: var(--ink-500); display: flex; gap: 18px; flex-wrap: wrap; }
.hero-micro span { display: inline-flex; align-items: center; gap: 7px; }
.hero-micro span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-400); }

.hero-proof {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px;
  padding-top: 30px; border-top: 1px solid var(--line);
}
.hero-proof .pill {
  padding: 12px 18px; border-radius: 14px; background: var(--glass);
  border: 1px solid var(--line); backdrop-filter: blur(8px);
}
.hero-proof .pill b { display: block; font-family: var(--font-head); color: var(--ink-100); font-size: 1.28rem; }
.hero-proof .pill span { font-size: 0.8rem; color: var(--ink-400); }

.hero-brands { margin-top: 30px; font-size: 0.82rem; color: var(--ink-500); letter-spacing: 0.03em; }
.hero-brands b { color: var(--cyan-300); font-weight: 600; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-media {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,7,15,0) 40%, rgba(5,7,15,.75));
}
.hero-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan-400), transparent);
  box-shadow: 0 0 18px var(--cyan-400);
  animation: scan 4.5s ease-in-out infinite;
}
@keyframes scan { 0%,100%{top:2%} 50%{top:98%} }

.hero-card {
  position: absolute; backdrop-filter: blur(16px);
  background: rgba(10,16,34,.72); border: 1px solid var(--line-strong);
  border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 12px;
}
.hero-card .dot { width: 10px; height: 10px; border-radius: 50%; background: #34e07f; box-shadow: 0 0 12px #34e07f; }
.hero-card b { font-family: var(--font-head); color: var(--ink-100); font-size: 0.92rem; display: block; }
.hero-card span { font-size: 0.76rem; color: var(--ink-400); }
.hero-card.c1 { top: 22px; left: -22px; animation: floaty 5s ease-in-out infinite; }
.hero-card.c2 { bottom: 26px; right: -18px; animation: floaty 6s ease-in-out infinite 0.6s; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ============================================================
   MARQUEE / BRAND STRIP
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head); font-weight: 700; font-size: 1.35rem;
  color: var(--ink-500); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 60px;
}
.marquee-track span::after { content: "◆"; color: var(--cyan-500); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: clamp(18px, 2vw, 26px); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius-lg); background: var(--glass);
  border: 1px solid var(--line); backdrop-filter: blur(10px);
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(34,211,238,.12), transparent 70%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.card:hover { transform: translateY(-8px); border-color: var(--line-strong); background: var(--glass-2); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(34,211,238,.2), rgba(79,139,255,.12));
  border: 1px solid var(--line-strong); margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; color: var(--cyan-300); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--ink-400); font-size: 0.98rem; }
.card .card-list { margin-top: 14px; display: grid; gap: 9px; }
.card .card-list li { font-size: 0.92rem; color: var(--ink-300); padding-left: 24px; position: relative; }
.card .card-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 7px;
  border-left: 2px solid var(--cyan-400); border-bottom: 2px solid var(--cyan-400);
  transform: rotate(-45deg);
}
.card-link {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--cyan-300);
  transition: gap 0.3s;
}
.card-link:hover { gap: 14px; }
.card-tag { position:absolute; top: 20px; right: 20px; font-size:0.7rem; letter-spacing:.14em; text-transform:uppercase; color: var(--gold-400); font-family: var(--font-head); }

/* Stat cards */
.stat { text-align: center; padding: clamp(22px, 3vw, 34px); }
.stat .stat-icon { margin-inline: auto; }
.stat .num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--ink-100); font-weight: 800; line-height: 1; }
.stat .num .grad-text { font-weight: 800; }
.stat .lbl { margin-top: 8px; font-size: 0.9rem; color: var(--ink-400); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst { display: flex; flex-direction: column; gap: 18px; }
.tst .stars { display: flex; gap: 3px; color: var(--gold-400); }
.tst .stars svg { width: 18px; height: 18px; }
.tst blockquote { font-size: 1.02rem; color: var(--ink-100); line-height: 1.6; font-style: italic; }
.tst .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.tst .avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: #04121f; background: var(--grad-cyan);
}
.tst .who b { color: var(--ink-100); font-family: var(--font-head); display: block; font-size: 0.96rem; }
.tst .who span { font-size: 0.82rem; color: var(--ink-400); }

/* ============================================================
   STEPS / TIMELINE
   ============================================================ */
.steps { display: grid; gap: 22px; grid-template-columns: repeat(5, 1fr); counter-reset: step; }
.step { position: relative; padding: 28px 22px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--line); }
.step .step-no {
  counter-increment: step;
  font-family: var(--font-head); font-weight: 800; font-size: 2.2rem;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.9;
}
.step .step-no::before { content: "0" counter(step); }
.step h3 { font-size: 1.1rem; margin: 10px 0 8px; }
.step p { font-size: 0.9rem; color: var(--ink-400); }
.step .step-icon { position: absolute; top: 24px; right: 22px; color: var(--cyan-300); opacity: 0.7; }
.step .step-icon svg { width: 22px; height: 22px; }

/* ============================================================
   FEATURE / SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split.reverse .split-media { order: -1; }
.split-media {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong);
  aspect-ratio: 5/4; box-shadow: var(--shadow-md); position: relative;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
}
.split-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.split-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(5,7,15,.6)); }

.check-list { display: grid; gap: 14px; margin-top: 22px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .ci {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(34,211,238,.22), rgba(79,139,255,.14)); border: 1px solid var(--line-strong);
}
.check-list .ci svg { width: 15px; height: 15px; color: var(--cyan-300); }
.check-list b { color: var(--ink-100); font-family: var(--font-head); font-weight: 600; }
.check-list span { color: var(--ink-400); font-size: 0.94rem; }

/* ============================================================
   SERVICE BLOCKS
   ============================================================ */
.svc { position: relative; overflow: hidden; }
.svc-head { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 22px; }
.svc-num {
  flex: none; font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  color: var(--cyan-300); background: linear-gradient(150deg, rgba(34,211,238,.16), rgba(79,139,255,.08));
  border: 1px solid var(--line-strong);
}
.svc-head .svc-title { flex: 1; }
.svc-head h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 8px; }
.svc-head .svc-icon { flex: none; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(150deg, rgba(34,211,238,.2), rgba(79,139,255,.12)); border: 1px solid var(--line-strong); }
.svc-head .svc-icon svg { width: 26px; height: 26px; color: var(--cyan-300); }
.svc-one { color: var(--ink-300); font-size: 1.02rem; }

.svc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 24px 0; }
.svc-sub h4 { font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 14px; }
.svc-sub .card-list li { font-size: 0.92rem; }

.svc-adv {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(34,211,238,.09), rgba(79,139,255,.05));
  border: 1px solid rgba(34,211,238,.28); margin-bottom: 22px;
}
.svc-adv .adv-mark { flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--grad-cyan); color: #04121f; }
.svc-adv .adv-mark svg { width: 19px; height: 19px; }
.svc-adv p { font-size: 0.95rem; color: var(--ink-300); }
.svc-adv b { color: var(--cyan-300); font-family: var(--font-head); }

.svc-toc { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.svc-toc a {
  font-family: var(--font-head); font-size: 0.86rem; font-weight: 500; color: var(--ink-300);
  padding: 9px 16px; border-radius: 100px; border: 1px solid var(--line); background: var(--glass);
  transition: color .25s, border-color .25s, background .25s;
}
.svc-toc a:hover { color: var(--ink-100); border-color: var(--cyan-400); background: var(--glass-2); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; max-width: 940px; margin-inline: auto; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--cyan-500) 8%, rgba(79,139,255,.5) 60%, transparent);
}
.tl-item { position: relative; width: 50%; padding: 0 44px 44px; }
.tl-item:nth-of-type(odd) { left: 0; text-align: right; }
.tl-item:nth-of-type(even) { left: 50%; }
.tl-dot {
  position: absolute; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--navy-950); border: 3px solid var(--cyan-400); box-shadow: 0 0 16px var(--cyan-400); z-index: 2;
}
.tl-item:nth-of-type(odd) .tl-dot { right: -9px; }
.tl-item:nth-of-type(even) .tl-dot { left: -9px; }
.tl-year { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 8px; }
.tl-card { padding: 20px 24px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--line); transition: border-color .4s, transform .4s var(--ease); }
.tl-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.tl-card p { font-size: 0.94rem; color: var(--ink-400); }

/* ============================================================
   BADGES / ACCREDITATION
   ============================================================ */
.badge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.accred { display: flex; gap: 18px; align-items: flex-start; }
.accred .seal {
  flex: none; width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(245,196,81,.22), rgba(255,215,119,.08)); border: 1px solid rgba(245,196,81,.35);
}
.accred .seal svg { width: 28px; height: 28px; color: var(--gold-400); }
.accred h3 { font-size: 1.08rem; margin-bottom: 6px; }
.accred p { font-size: 0.92rem; color: var(--ink-400); }

.award { text-align: center; padding: 30px 24px; }
.award .trophy { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 16px; display: grid; place-items: center; background: var(--grad-gold); }
.award .trophy svg { width: 28px; height: 28px; color: #241a02; }
.award .yr { font-family: var(--font-head); color: var(--gold-400); font-weight: 700; font-size: .9rem; letter-spacing: .1em; }
.award h3 { font-size: 1.1rem; margin: 8px 0 6px; }
.award p { font-size: .88rem; color: var(--ink-400); }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--glass); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
thead th { font-family: var(--font-head); color: var(--ink-100); font-size: 0.9rem; background: rgba(255,255,255,.03); position: sticky; top: 0; }
thead th:first-child { color: var(--cyan-300); }
tbody th { color: var(--ink-100); font-weight: 600; }
td { color: var(--ink-300); }
tbody tr:hover { background: rgba(255,255,255,.025); }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: none; }
.price-cell { color: var(--gold-400); font-family: var(--font-head); font-weight: 600; white-space: nowrap; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column; padding: 34px 30px; border-radius: var(--radius-lg);
  background: var(--glass); border: 1px solid var(--line); position: relative; transition: transform .5s var(--ease), border-color .4s;
}
.plan:hover { transform: translateY(-8px); border-color: var(--line-strong); }
.plan.featured { border-color: rgba(34,211,238,.5); background: linear-gradient(180deg, rgba(34,211,238,.08), var(--glass)); box-shadow: var(--shadow-glow); }
.plan .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-cyan); color: #04121f; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; }
.plan h3 { font-size: 1.3rem; }
.plan .plan-sub { color: var(--ink-400); font-size: 0.9rem; margin-top: 6px; }
.plan .price { font-family: var(--font-head); margin: 22px 0 4px; }
.plan .price b { font-size: 2.6rem; color: var(--ink-100); font-weight: 800; }
.plan .price small { color: var(--ink-400); font-size: 0.9rem; }
.plan .plan-list { display: grid; gap: 12px; margin: 22px 0 28px; }
.plan .plan-list li { font-size: 0.93rem; padding-left: 26px; position: relative; color: var(--ink-300); }
.plan .plan-list li::before { content:""; position:absolute; left:0; top:7px; width:12px; height:7px; border-left:2px solid var(--cyan-400); border-bottom:2px solid var(--cyan-400); transform: rotate(-45deg); }
.plan .btn { margin-top: auto; justify-content: center; }

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */
.accordion { display: grid; gap: 14px; }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--glass); overflow: hidden; transition: border-color .3s; }
.acc-item.open { border-color: var(--line-strong); }
.acc-head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; text-align: left; }
.acc-head h3 { font-size: 1.05rem; color: var(--ink-100); }
.acc-head .ico { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; position: relative; transition: background .3s; }
.acc-head .ico::before, .acc-head .ico::after { content:""; position:absolute; background: var(--cyan-300); border-radius: 2px; transition: transform .3s; }
.acc-head .ico::before { width: 12px; height: 2px; }
.acc-head .ico::after { width: 2px; height: 12px; }
.acc-item.open .ico { background: rgba(34,211,238,.15); }
.acc-item.open .ico::after { transform: scaleY(0); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-body-inner { padding: 0 24px 24px; color: var(--ink-400); font-size: 0.96rem; }

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 80px); text-align: center; border: 1px solid var(--line-strong); background: linear-gradient(150deg, rgba(34,211,238,.1), rgba(79,139,255,.06)); }
.cta-block::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 50% 0%, rgba(34,211,238,.25), transparent 70%); }
.cta-block > * { position: relative; }
.cta-block h2 { margin-bottom: 16px; }
.cta-block p { max-width: 620px; margin: 0 auto 32px; font-size: 1.08rem; color: var(--ink-300); }
.cta-block .btn-group { justify-content: center; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero { padding-top: 160px; padding-bottom: clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.page-hero .hero-mesh { height: 100%; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: var(--ink-500); margin-bottom: 20px; align-items: center; }
.breadcrumb a:hover { color: var(--cyan-300); }
.breadcrumb span { color: var(--ink-500); }
.page-hero h1 { max-width: 900px; }
.page-hero p { max-width: 640px; margin-top: 20px; font-size: 1.1rem; }

/* prose */
.prose h2 { margin: 8px 0 18px; }
.prose h3 { margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; }
.prose ul { display: grid; gap: 10px; margin: 6px 0 20px; }
.prose ul li { padding-left: 26px; position: relative; color: var(--ink-300); }
.prose ul li::before { content:""; position:absolute; left:0; top:9px; width:12px; height:7px; border-left:2px solid var(--cyan-400); border-bottom:2px solid var(--cyan-400); transform: rotate(-45deg); }
.prose strong { color: var(--ink-100); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--font-head); font-size: 0.85rem; color: var(--ink-300); font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px; background: rgba(5,7,15,.5);
  border: 1px solid var(--line-strong); color: var(--ink-100); font-family: var(--font-body); font-size: 0.98rem;
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan-400); box-shadow: 0 0 0 3px rgba(34,211,238,.15); }
.field textarea { resize: vertical; min-height: 120px; }

.contact-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-item .ci { flex: none; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(150deg, rgba(34,211,238,.2), rgba(79,139,255,.12)); border: 1px solid var(--line-strong); }
.contact-item .ci svg { width: 22px; height: 22px; color: var(--cyan-300); }
.contact-item b { color: var(--ink-100); font-family: var(--font-head); display: block; margin-bottom: 3px; }
.contact-item span, .contact-item a { color: var(--ink-400); font-size: 0.95rem; }
.contact-item a:hover { color: var(--cyan-300); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-top: clamp(50px, 7vw, 90px); margin-top: 40px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer .logo { margin-bottom: 18px; }
.footer-about p { color: var(--ink-400); font-size: 0.94rem; max-width: 320px; }
.footer-col h4 { font-size: 0.95rem; color: var(--ink-100); margin-bottom: 16px; font-family: var(--font-head); }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--ink-400); font-size: 0.92rem; transition: color .25s; }
.footer-col a:hover { color: var(--cyan-300); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--glass-2); border: 1px solid var(--line-strong); transition: transform .3s, border-color .3s; }
.social a:hover { transform: translateY(-3px); border-color: var(--cyan-400); }
.social svg { width: 18px; height: 18px; color: var(--ink-300); }
.footer-bottom { padding-block: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.86rem; color: var(--ink-500); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .3s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float::after { content:""; position:absolute; inset:0; border-radius:50%; border:2px solid #25d366; animation: ripple 2.4s infinite; }
@keyframes ripple { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.7);opacity:0} }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .4s; }

/* Driven by transform (compositor-only) rather than width, so scrolling
   never triggers layout. */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: left; z-index: 101; background: var(--grad-cyan); box-shadow: 0 0 12px var(--cyan-400); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1240px) {
  .nav-inner { gap: 14px; }
  .logo-text span { display: none; }
  .nav-links { gap: 0; }
}
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
}
/* Nav switches to the drawer earlier than the content grids */
@media (max-width: 1080px) {
  .nav-label-full { display: inline; }
  .nav-label-short { display: none; }
  .logo-text span { display: block; }
  .logo-mark, .nav.scrolled .logo-mark { width: 52px; height: 60px; border-radius: 16px; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: grid; }
  .nav-links {
    position: fixed; top: 0; right: 0; z-index: 99; height: 100dvh; width: min(340px, 86vw);
    flex-direction: column; align-items: stretch; gap: 6px; padding: 100px 26px 40px;
    background: rgba(8,12,26,.96); backdrop-filter: blur(20px); border-left: 1px solid var(--line-strong);
    transform: translateX(105%); transition: transform .45s var(--ease); display: flex;
  }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-links > * { opacity: 0; transform: translateX(18px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
  body.menu-open .nav-links > * { opacity: 1; transform: none; }
  .nav-links > *:nth-child(1) { transition-delay: .10s; }
  .nav-links > *:nth-child(2) { transition-delay: .15s; }
  .nav-links > *:nth-child(3) { transition-delay: .20s; }
  .nav-links > *:nth-child(4) { transition-delay: .25s; }
  .nav-links > *:nth-child(5) { transition-delay: .30s; }
  .nav-links > *:nth-child(6) { transition-delay: .35s; }
  .nav-links > *:nth-child(7) { transition-delay: .40s; }
  .nav-links > *:nth-child(8) { transition-delay: .45s; }
  .nav-links > *:nth-child(9) { transition-delay: .50s; }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .nav-links a::after { display: none; }
  .nav-links .btn { display: inline-flex; margin-top: 14px; justify-content: center; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-media { aspect-ratio: 16/11; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .svc-cols { grid-template-columns: 1fr; gap: 18px; }
  .svc-head { flex-wrap: wrap; }
  .timeline::before { left: 18px; }
  .tl-item { width: 100%; left: 0 !important; padding: 0 0 34px 50px; text-align: left !important; }
  .tl-item .tl-dot { left: 10px !important; right: auto !important; }
  .badge-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
  body { font-size: 15.5px; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .btn-group { width: 100%; }
  .hero-proof .pill { flex: 1 1 40%; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

/* ============================================================
   PREMIUM LAYER — depth, motion & fluid responsiveness
   Applies site-wide (loaded by every page)
   ============================================================ */

/* ---------- Ambient depth ---------- */
/* Slow-drifting aurora so the background never feels static */
body::before { animation: auroraDrift 26s ease-in-out infinite alternate; }
@keyframes auroraDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-2.5%, 1.5%, 0) scale(1.09); }
}

/* Fine film grain over the whole page for a printed-matte finish */
.grain {
  position: fixed; inset: -50%; z-index: -1; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 2%); }
  40%  { transform: translate(2%, -3%); }
  60%  { transform: translate(-2%, -2%); }
  80%  { transform: translate(3%, 1%); }
  100% { transform: translate(0, 0); }
}

/* Soft light seam between stacked sections */
.section + .section::before {
  content: ""; position: absolute; top: 0; left: 50%; translate: -50% 0;
  width: min(760px, 80%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

/* ---------- Typography rhythm ---------- */
h1 { font-size: clamp(2.15rem, 1.2rem + 3.6vw, 4.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 1.1rem + 2.3vw, 3.05rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.18rem, 1rem + 0.7vw, 1.62rem); }
.section-head p, .lead { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; }

/* Animated gradient on highlighted words */
.grad-text {
  background-size: 220% 100%;
  animation: gradShift 9s ease-in-out infinite alternate;
}
@keyframes gradShift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }

/* ---------- Buttons: shine sweep + real focus rings ---------- */
.btn { overflow: hidden; isolation: isolate; }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }
.btn-ghost::after { background: linear-gradient(115deg, transparent 35%, rgba(125, 239, 255, 0.22) 50%, transparent 65%); }
.btn:active { transform: translateY(-1px) scale(0.985); }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Cards: gradient edge, lift, reactive icon ---------- */
.card {
  transition: transform 0.55s var(--ease), border-color 0.4s, background 0.4s, box-shadow 0.5s var(--ease);
  transform-style: preserve-3d;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(125, 239, 255, 0.55), rgba(79, 139, 255, 0.25) 45%, rgba(245, 196, 81, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.45s; pointer-events: none;
}
.card:hover { box-shadow: 0 26px 60px rgba(3, 8, 22, 0.55); }
.card:hover::after { opacity: 1; }
.card-icon { transition: transform 0.5s var(--ease), box-shadow 0.5s, background 0.5s; }
.card:hover .card-icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.06);
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.35);
}
.card-icon svg { transition: color 0.4s; }
.card:hover .card-icon svg { color: var(--cyan-400); }

/* Steps get the same lift so numbered flows feel alive */
.step { transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s, box-shadow 0.5s; }
.step:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong); background: var(--glass-2);
  box-shadow: 0 20px 44px rgba(3, 8, 22, 0.45);
}

/* Media panels breathe on hover */
.split-media img, .hero-media img { transition: transform 1.1s var(--ease), opacity 0.6s; }
.split-media:hover img, .hero-media:hover img { transform: scale(1.05); opacity: 1; }

/* ---------- Scroll reveal: directions + auto stagger ---------- */
[data-reveal] { transition-duration: 0.85s; }
[data-reveal="left"]  { transform: translateX(-38px); }
[data-reveal="right"] { transform: translateX(38px); }
[data-reveal="zoom"]  { transform: scale(0.94); }
[data-reveal="left"].in, [data-reveal="right"].in, [data-reveal="zoom"].in { transform: none; }
/* Index-driven stagger set by JS for any grid child */
[style*="--i"][data-reveal] { transition-delay: calc(var(--i) * 80ms); }

/* Section headings sweep their underline in */
.section-head.center h2 { position: relative; }

/* ---------- Scroll-driven flourishes (progressive enhancement) ---------- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-copy, .hero-visual {
      animation: heroFloatOut linear both;
      animation-timeline: view();
      animation-range: exit -10% exit 90%;
    }
    @keyframes heroFloatOut { to { opacity: 0.25; transform: translateY(-40px) scale(0.98); } }
  }
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 96px; z-index: 90;
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--glass-2); border: 1px solid var(--line-strong); backdrop-filter: blur(12px);
  color: var(--ink-100);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s var(--ease), visibility 0.35s, border-color 0.3s, box-shadow 0.3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--cyan-400); box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Responsiveness: fluid grids everywhere ---------- */
@media (min-width: 1600px) {
  :root { --wrap: 1320px; }
}
@media (max-width: 1180px) and (min-width: 861px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-card.c1 { left: 10px; }
  .hero-card.c2 { right: 10px; }
}
@media (max-width: 720px) {
  :root { --section-y: clamp(52px, 11vw, 96px); }
  .grid.cols-3 { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 30px; }
  .to-top { bottom: 88px; right: 18px; width: 42px; height: 42px; }
}
@media (max-width: 520px) {
  .marquee-track span { font-size: 1.1rem; gap: 34px; }
  .marquee-track { gap: 34px; }
  .hero-proof { gap: 10px; margin-top: 30px; padding-top: 22px; }
  .hero-proof .pill { flex: 1 1 100%; }
  .eyebrow { font-size: 0.7rem; padding: 7px 13px; letter-spacing: 0.16em; }
  .tst blockquote { font-size: 0.97rem; }
}
@media (max-width: 380px) {
  .logo-text b { font-size: 1.1rem; }
  .logo-mark, .nav.scrolled .logo-mark { width: 46px; height: 53px; border-radius: 14px; }
}

/* Touch devices: drop hover-only motion and heavy blur for smooth scrolling */
@media (hover: none) {
  .card:hover, .step:hover { transform: none; }
  .split-media:hover img, .hero-media:hover img { transform: none; }
  .grain { display: none; }
}

/* Honour reduced motion for everything added above */
@media (prefers-reduced-motion: reduce) {
  .grain, body::before, .grad-text { animation: none !important; }
  .to-top { transition: opacity .2s; }
}

/* ---------- Vertical rhythm: tighter, more deliberate ---------- */
:root { --section-y: clamp(58px, 7vw, 112px); }

/* ---------- Hero polish ---------- */
.hero-proof .pill {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border-color: var(--line-strong);
  transition: transform .45s var(--ease), border-color .35s, box-shadow .45s;
}
.hero-proof .pill:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 239, 255, .45);
  box-shadow: 0 14px 34px rgba(3, 8, 22, .5), 0 0 26px rgba(34, 211, 238, .18);
}
.hero-proof .pill b {
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 800; font-size: 1.45rem;
}

/* Glow ring + corner ticks around the hero image */
.hero-media {
  box-shadow: var(--shadow-md), 0 0 70px rgba(34, 211, 238, 0.12);
}
.hero-visual::before {
  content: ""; position: absolute; inset: -14% -10%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(34, 211, 238, 0.18), transparent 70%);
  filter: blur(26px);
  animation: auroraDrift 14s ease-in-out infinite alternate;
}
.hero-media::before {
  content: ""; position: absolute; inset: 14px; z-index: 2; pointer-events: none;
  border-radius: 22px;
  background:
    linear-gradient(var(--cyan-400), var(--cyan-400)) 0 0 / 22px 2px no-repeat,
    linear-gradient(var(--cyan-400), var(--cyan-400)) 0 0 / 2px 22px no-repeat,
    linear-gradient(var(--cyan-400), var(--cyan-400)) 100% 100% / 22px 2px no-repeat,
    linear-gradient(var(--cyan-400), var(--cyan-400)) 100% 100% / 2px 22px no-repeat;
  opacity: .55;
}

/* Live status cards read as instrument readouts */
.hero-card { box-shadow: var(--shadow-sm), 0 0 30px rgba(3, 8, 22, .5); }
.hero-card .dot { animation: pulse 1.8s infinite; }

/* ---------- CTA block ---------- */
.cta-block { position: relative; overflow: hidden; }
.cta-block::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 100% at 50% 0%, rgba(34, 211, 238, 0.16), transparent 70%);
}

/* ---------- Marquee refinement ---------- */
.marquee-track span { transition: color .4s; }
.marquee-track span:hover { color: var(--ink-300); }

/* Keep the hero headline from swallowing the fold on large screens */
.hero h1 { font-size: clamp(2.05rem, 1.1rem + 3.1vw, 3.75rem); }

/* The closed mobile drawer sits off-canvas — clip it at the root so it can
   never create a horizontal scrollbar on any page. */
html { overflow-x: clip; }
@media (max-width: 1080px) {
  .nav-links:not(.is-open) { visibility: hidden; }
  body.menu-open .nav-links { visibility: visible; }
}

/* ============================================================
   ABOUT PAGE — editorial layout & credential design
   ============================================================ */

/* ---------- Hero: copy + glass credential panel ---------- */
.about-hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 4.5vw, 64px); align-items: start;
}
.about-hero h1 { margin: 20px 0 18px; font-size: clamp(2rem, 1.1rem + 2.9vw, 3.5rem); }
.about-hero .lead { max-width: 560px; }

/* Credential chips */
.cred-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.cred-chips li {
  font-family: var(--font-head); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-300);
  padding: 8px 14px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--glass);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .3s, border-color .3s, transform .35s var(--ease);
}
.cred-chips li::before {
  content: ""; width: 12px; height: 7px; flex: none;
  border-left: 2px solid var(--cyan-400); border-bottom: 2px solid var(--cyan-400);
  transform: rotate(-45deg) translateY(-2px);
}
.cred-chips li:hover { color: var(--ink-100); border-color: rgba(125, 239, 255, .45); transform: translateY(-2px); }

/* At-a-glance panel */
.about-panel {
  position: relative; overflow: hidden;
  padding: clamp(22px, 2.6vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(14, 22, 48, .78), rgba(7, 11, 24, .6));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md), 0 0 60px rgba(34, 211, 238, .1);
}
.about-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 100% 0%, rgba(34, 211, 238, .16), transparent 70%);
}
.about-panel > * { position: relative; }
.panel-head {
  display: flex; align-items: center; gap: 10px; padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-400);
}
.panel-head b { color: var(--ink-100); font-weight: 600; }
.panel-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #34e07f;
  box-shadow: 0 0 12px #34e07f; animation: pulse 2s infinite;
}
.panel-rows { display: grid; gap: 2px; margin-top: 6px; }
.panel-rows > div {
  display: flex; justify-content: space-between; gap: 18px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px dashed rgba(255, 255, 255, .07);
}
.panel-rows dt {
  font-size: 0.82rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-500); white-space: nowrap;
}
.panel-rows dd {
  font-family: var(--font-head); font-size: 0.94rem; color: var(--ink-100);
  text-align: right; font-weight: 500;
}
.panel-foot { display: flex; align-items: center; gap: 18px; margin-top: 22px; }
.panel-ring {
  flex: none; width: 78px; height: 78px; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  border: 2px solid transparent;
  background:
    linear-gradient(160deg, rgba(14, 22, 48, .9), rgba(7, 11, 24, .9)) padding-box,
    var(--grad-accent) border-box;
  box-shadow: 0 0 34px rgba(34, 211, 238, .22);
  animation: ringGlow 4.5s ease-in-out infinite;
}
@keyframes ringGlow {
  0%, 100% { box-shadow: 0 0 26px rgba(34, 211, 238, .16); }
  50%      { box-shadow: 0 0 48px rgba(34, 211, 238, .38); }
}
.panel-ring b {
  display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.panel-ring span { font-size: 0.7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-500); }
.panel-foot p { font-size: 0.88rem; color: var(--ink-400); }

/* ---------- Origin story: badge + pull quote ---------- */
.story-media { display: grid; gap: 22px; }
.story-media .split-media { position: relative; aspect-ratio: 5/4; }
.media-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 3;
  padding: 12px 18px; border-radius: 16px;
  background: rgba(7, 11, 24, .72); backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm);
}
.media-badge b {
  display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.media-badge span { font-size: 0.74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-400); }

.pull-quote {
  position: relative; padding: 26px 28px 26px 62px;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(34, 211, 238, .08), rgba(255, 255, 255, .02));
  font-family: var(--font-head); font-size: 1.06rem; line-height: 1.5; color: var(--ink-100);
}
.pull-quote::before {
  content: "\201C"; position: absolute; left: 20px; top: 6px;
  font-family: var(--font-head); font-size: 3.6rem; line-height: 1;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pull-quote cite {
  display: block; margin-top: 12px; font-style: normal;
  font-size: 0.8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan-300);
}

/* ---------- Timeline: glowing rail that fills as you scroll ---------- */
.timeline { padding-block: 6px; }
.tl-rail {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; translate: -50% 0;
  background: var(--grad-cyan); transform-origin: top;
  box-shadow: 0 0 16px rgba(34, 211, 238, .7);
  scale: 1 0;
}
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .tl-rail {
      animation: railFill linear both;
      animation-timeline: view();
      animation-range: entry 30% exit 40%;
    }
    @keyframes railFill { to { scale: 1 1; } }
  }
}
@supports not (animation-timeline: view()) { .tl-rail { scale: 1 1; opacity: .55; } }

.tl-dot { transition: transform .4s var(--ease), box-shadow .4s; }
.tl-item:hover .tl-dot { transform: scale(1.45); box-shadow: 0 0 22px var(--cyan-400); }
.tl-year { font-size: 1.85rem; letter-spacing: -0.02em; }
.tl-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015));
  box-shadow: var(--shadow-sm);
}
.tl-card:hover { box-shadow: 0 18px 40px rgba(3, 8, 22, .5); border-color: rgba(125, 239, 255, .4); }

/* ---------- Credentials: gold seals & awards ---------- */
.accred .seal { transition: transform .5s var(--ease), box-shadow .5s; }
.accred:hover .seal { transform: rotate(-6deg) scale(1.07); box-shadow: 0 0 28px rgba(245, 196, 81, .35); }
.award .trophy { transition: transform .5s var(--ease), box-shadow .5s; }
.award:hover .trophy { transform: translateY(-4px) scale(1.06); box-shadow: 0 14px 34px rgba(245, 196, 81, .4); }
.award .yr {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  border: 1px solid rgba(245, 196, 81, .35); background: rgba(245, 196, 81, .08);
}

/* ---------- Values: oversized ghost numerals ---------- */
.values-grid .card { padding-top: clamp(28px, 3.4vw, 40px); }
.values-grid .card-tag {
  top: 6px; right: 18px;
  font-family: var(--font-head); font-weight: 800; font-size: 4.6rem;
  letter-spacing: -0.04em; color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .12);
  transition: -webkit-text-stroke-color .5s, transform .6s var(--ease);
  pointer-events: none;
}
.values-grid .card:hover .card-tag {
  -webkit-text-stroke-color: rgba(125, 239, 255, .4);
  transform: translateY(-4px);
}

/* ---------- About responsive ---------- */
@media (max-width: 1080px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-panel { max-width: 620px; }
}
@media (max-width: 720px) {
  .panel-rows > div { flex-direction: column; gap: 4px; }
  .panel-rows dd { text-align: left; }
  .panel-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
  .values-grid .card-tag { font-size: 3.4rem; }
  .pull-quote { padding: 22px 20px 22px 52px; font-size: 1rem; }
}

/* Keep value headings clear of the ghost numeral */
.values-grid .card h3 { padding-right: 90px; }
.values-grid .card-tag { z-index: 0; }
.values-grid .card > *:not(.card-tag) { position: relative; z-index: 1; }
@media (max-width: 720px) { .values-grid .card h3 { padding-right: 64px; } }

/* About stat cards get a gradient cap so the row reads as instrumentation */
.page-about .stat::before {
  content: ""; position: absolute; top: 0; left: 50%; translate: -50% 0;
  width: 56%; height: 2px; border-radius: 2px;
  background: var(--grad-accent); opacity: .55;
  transition: width .5s var(--ease), opacity .4s;
}
.page-about .stat:hover::before { width: 78%; opacity: 1; }

/* Long CTA labels must be allowed to wrap on narrow screens, otherwise their
   min-content width forces the whole grid wider than the viewport. */
.about-hero-grid > * { min-width: 0; }
@media (max-width: 560px) {
  .btn { white-space: normal; text-align: center; }
  .btn-lg { --pad: 16px 24px; font-size: 1rem; }
}

/* ============================================================
   SECURITY SOLUTIONS — service rail, panel design & speed work
   ============================================================ */

/* ---------- Sticky service rail with scroll-spy ---------- */
.svc-rail {
  position: sticky; top: 0; z-index: 80;
  padding: 10px 0;
  border-block: 1px solid transparent;
  transition: background .35s, border-color .35s, backdrop-filter .35s, padding .35s var(--ease);
}
.svc-rail.stuck {
  top: 74px;
  background: rgba(7, 11, 24, .86);
  backdrop-filter: blur(16px) saturate(150%);
  border-block-color: var(--line);
  box-shadow: 0 12px 30px rgba(3, 8, 22, .45);
}
.svc-rail-track {
  display: flex; gap: 8px;
  max-width: var(--wrap); margin-inline: auto;
  padding: 4px var(--gutter);
  overflow-x: auto; scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  overscroll-behavior-x: contain;
}
.svc-rail-track::-webkit-scrollbar { display: none; }
.svc-rail-track a {
  flex: none; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.83rem; font-weight: 500;
  color: var(--ink-400); white-space: nowrap;
  padding: 9px 16px; border-radius: 100px;
  border: 1px solid transparent;
  transition: color .25s, background .25s, border-color .25s, transform .3s var(--ease);
}
.svc-rail-track a i {
  font-style: normal; font-size: 0.7rem; letter-spacing: .06em;
  color: var(--ink-500); transition: color .25s;
}
.svc-rail-track a:hover { color: var(--ink-100); background: var(--glass); transform: translateY(-1px); }
.svc-rail-track a.active {
  color: #04121f; background: var(--grad-cyan);
  border-color: transparent; box-shadow: 0 6px 20px rgba(34, 211, 238, .35);
}
.svc-rail-track a.active i { color: rgba(4, 18, 31, .6); }

/* Hero index chips mirror the active state */
.svc-toc a.active { color: var(--ink-100); border-color: var(--cyan-400); background: var(--glass-2); }

/* Anchored services must clear the pinned nav + rail */
.svc[id] { scroll-margin-top: 150px; }

/* ---------- Service panels ---------- */
.svc {
  /* NOTE: `content-visibility: auto` was tried here and rejected — Chromium
     ghosted CTAs from skipped panels over the navbar and the intrinsic-size
     guess made anchor jumps unstable. Paint cost is handled below instead. */
  contain: paint style;
  /* Large translucent panels are cheaper without a live blur. */
  backdrop-filter: none;
  background: linear-gradient(158deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012));
}
/* Ghost numeral watermark */
.svc::after { z-index: 0; }
.svc > * { position: relative; z-index: 1; }
.svc .svc-num {
  position: relative;
  overflow: hidden;
}
.svc .svc-num::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, .35) 50%, transparent 60%);
  transform: translateX(-140%);
  transition: transform .8s var(--ease);
}
.svc:hover .svc-num::after { transform: translateX(140%); }

/* Head gets a hairline rule so each panel reads as a spec sheet */
.svc-head { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.svc-head .svc-icon { transition: transform .5s var(--ease), box-shadow .5s, border-color .4s; }
.svc:hover .svc-head .svc-icon {
  transform: rotate(-6deg) scale(1.08);
  border-color: rgba(125, 239, 255, .5);
  box-shadow: 0 0 26px rgba(34, 211, 238, .3);
}

/* Two spec columns split by a vertical hairline */
.svc-cols { position: relative; gap: clamp(24px, 3vw, 44px); }
.svc-cols::before {
  content: ""; position: absolute; top: 4px; bottom: 4px; left: 50%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
}
.svc-sub h4 { display: flex; align-items: center; gap: 10px; }
.svc-sub h4::after { content: ""; flex: 1; height: 1px; background: var(--line); }
/* Rows light up individually on hover */
.svc-sub .card-list li { transition: color .25s, transform .3s var(--ease); }
.svc-sub .card-list li:hover { color: var(--ink-100); transform: translateX(3px); }

/* Advantage strip: animated accent edge */
.svc-adv { position: relative; overflow: hidden; }
.svc-adv::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad-cyan); transform: scaleY(0); transform-origin: top;
  transition: transform .6s var(--ease);
}
.svc:hover .svc-adv::before { transform: scaleY(1); }
.svc-adv .adv-mark { box-shadow: 0 0 20px rgba(34, 211, 238, .35); }

/* ---------- FAQ accordion polish ---------- */
.acc-item { transition: border-color .35s, background .35s; }
.acc-item.open { border-color: rgba(125, 239, 255, .4); background: var(--glass-2); }
.acc-head .ico { transition: transform .4s var(--ease), color .3s; }
.acc-item.open .acc-head .ico { color: var(--cyan-300); }
.acc-head:hover h3 { color: var(--cyan-300); }
.acc-head h3 { transition: color .3s; }

/* ---------- Speed: hint the compositor only where it pays ---------- */
.svc, .card { will-change: auto; }
.hero-mesh, .marquee-track, .grain { will-change: transform; }

/* ---------- Solutions responsive ---------- */
@media (max-width: 1080px) {
  .svc-rail.stuck { top: 66px; }
}
@media (max-width: 860px) {
  .svc-cols::before { display: none; }
  .svc[id] { scroll-margin-top: 130px; }
}
@media (max-width: 520px) {
  .svc-rail-track a { font-size: 0.78rem; padding: 8px 13px; }
  .svc-toc a { font-size: 0.8rem; padding: 8px 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-adv::before { transform: scaleY(1); }
}

/* `overflow-x: hidden` on the body turns it into a scroll container, which
   silently disables `position: sticky` for its descendants. `clip` gives the
   same protection against sideways scroll while keeping sticky working. */
body { overflow-x: clip; }
.svc-rail-sentinel { height: 0; }

/* Buttons were permanently promoted to their own compositor layer via
   will-change. Inside a `content-visibility: auto` subtree that produced stale
   layers painting at the wrong offset (a CTA ghosting over the navbar), so
   promote only while the pointer is actually on the button. */
.btn { will-change: auto; }
.btn:hover, .btn:focus-visible { will-change: transform; }

/* ---------- Solutions hero: copy + inclusions panel ---------- */
.svc-hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
}
.svc-hero-grid > * { min-width: 0; }
.page-hero h1 { margin: 20px 0 18px; }
.svc-panel {
  position: relative; overflow: hidden;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(14, 22, 48, .78), rgba(7, 11, 24, .6));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md), 0 0 60px rgba(34, 211, 238, .1);
}
.svc-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 100% 0%, rgba(34, 211, 238, .16), transparent 70%);
}
.svc-panel > * { position: relative; }
.svc-panel-list { display: grid; gap: 2px; margin-top: 6px; }
.svc-panel-list li {
  padding: 13px 0 13px 26px; position: relative;
  border-bottom: 1px dashed rgba(255, 255, 255, .07);
}
.svc-panel-list li::before {
  content: ""; position: absolute; left: 0; top: 20px; width: 12px; height: 7px;
  border-left: 2px solid var(--cyan-400); border-bottom: 2px solid var(--cyan-400);
  transform: rotate(-45deg);
}
.svc-panel-list b {
  display: block; font-family: var(--font-head); font-size: 1rem; color: var(--ink-100);
}
.svc-panel-list span { font-size: 0.86rem; color: var(--ink-400); }
.panel-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--cyan-300);
  transition: gap .3s var(--ease), color .3s;
}
.panel-link svg { width: 17px; height: 17px; }
.panel-link:hover { gap: 14px; color: var(--ink-100); }

@media (max-width: 1080px) {
  .svc-hero-grid { grid-template-columns: 1fr; }
  .svc-panel { max-width: 620px; }
}

/* ============================================================
   SPEED PASS — cheaper compositing while scrolling
   ============================================================ */

/* The grain layer was the most expensive thing on screen: a fullscreen
   `mix-blend-mode: overlay` surface repainting on a stepped animation. Static
   and un-blended it costs essentially nothing and looks the same in motion. */
.grain { animation: none; mix-blend-mode: normal; opacity: 0.022; inset: 0; }

/* Fixed gradient layers move on the compositor only. */
body::before { will-change: transform; }

/* Two stacked live blurs (navbar + service rail) is the heaviest paint during
   scroll — keep the effect, halve the radius and drop the saturation pass. */
.nav.scrolled { backdrop-filter: blur(12px); }
.svc-rail.stuck { backdrop-filter: blur(10px); }

/* Snappier reveals: the page should feel quick, not leisurely. */
[data-reveal] { transition-duration: 0.55s; }
[style*="--i"][data-reveal] { transition-delay: calc(var(--i) * 55ms); }

/* Pricing kept three columns down to 720px, which overflowed tablets. */
@media (max-width: 1000px) and (min-width: 721px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Headlines scrolling under the bar were showing through at 82% — the bar has
   to stay readable over bright hero type. */
.nav.scrolled { background: rgba(6, 10, 22, 0.94); }
.svc-rail.stuck { background: rgba(6, 10, 22, 0.94); }

/* ---------- Service rail: pinned under the navbar at all times ---------- */
.svc-rail {
  position: fixed; top: var(--nav-h, 92px); left: 0; right: 0; z-index: 79;
  padding: 8px 0;
  background: rgba(6, 10, 22, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(3, 8, 22, .45);
  transition: top .4s var(--ease), padding .35s var(--ease), background .35s;
}
.svc-rail.condensed { padding: 5px 0; }
/* Content clears the navbar + rail; the in-hero chip row is now redundant. */
body.has-svc-rail .page-hero { padding-top: calc(var(--nav-h, 92px) + var(--rail-h, 60px) + 34px); }
body.has-svc-rail .svc-toc { display: none; }
body.has-svc-rail .svc[id] { scroll-margin-top: calc(var(--nav-h, 92px) + var(--rail-h, 60px) + 18px); }

/* With the rail permanently pinned, the navbar above it can never be
   transparent — content would bleed through the seam between the two bars. */
body.has-svc-rail .nav {
  background: rgba(6, 10, 22, 0.94);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
body.has-svc-rail .svc-rail { top: calc(var(--nav-h, 92px) - 1px); }

/* 94% still let bright headings ghost through at ~6%. Bars that sit over
   scrolling content are now effectively solid. */
.nav.scrolled, body.has-svc-rail .nav { background: linear-gradient(180deg, #070c18 0%, #060a14 100%); }
.svc-rail { background: linear-gradient(180deg, #070c18 0%, #060a14 100%); }

/* ---------- Rail arrows: make the sideways scroll discoverable ---------- */
.svc-rail-arrow {
  position: absolute; top: 50%; translate: 0 -50%;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-100);
  background: rgba(14, 22, 48, .92);
  border: 1px solid var(--line-strong);
  box-shadow: 0 6px 18px rgba(3, 8, 22, .55);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s, visibility .3s, transform .3s var(--ease), border-color .3s, box-shadow .3s;
  z-index: 2;
}
.svc-rail-arrow.show { opacity: 1; visibility: visible; pointer-events: auto; }
.svc-rail-arrow:hover {
  border-color: var(--cyan-400); color: var(--cyan-300);
  box-shadow: 0 0 20px rgba(34, 211, 238, .35);
}
.svc-rail-arrow svg { width: 17px; height: 17px; }
.svc-rail-arrow.prev { left: max(10px, calc(var(--gutter) - 30px)); }
.svc-rail-arrow.prev svg { transform: rotate(180deg); }
.svc-rail-arrow.next { right: max(10px, calc(var(--gutter) - 30px)); }
/* Gentle nudge so the arrow reads as "there's more this way" */
.svc-rail-arrow.next.show { animation: railNudge 2.6s ease-in-out infinite; }
@keyframes railNudge {
  0%, 70%, 100% { transform: translateX(0); }
  80%           { transform: translateX(4px); }
  90%           { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) { .svc-rail-arrow.next.show { animation: none; } }
/* Keep chips clear of the arrows */
.svc-rail-track { padding-inline: max(52px, var(--gutter)); }

/* ============================================================
   INSTALLATIONS & PROJECTS — portfolio design
   ============================================================ */

/* ---------- Hero: copy + handover ledger ---------- */
.proj-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
}
.proj-hero-grid > * { min-width: 0; }
.proj-hero h1 { margin: 20px 0 18px; }
.proj-panel {
  position: relative; overflow: hidden;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(14, 22, 48, .78), rgba(7, 11, 24, .62));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md), 0 0 60px rgba(34, 211, 238, .1);
}
.proj-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 100% 0%, rgba(34, 211, 238, .16), transparent 70%);
}
.proj-panel > * { position: relative; }
.proj-ledger { counter-reset: pl; margin-top: 6px; }
.proj-ledger li {
  counter-increment: pl;
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: 4px 14px; padding: 13px 0 13px 30px; position: relative;
  border-bottom: 1px dashed rgba(255, 255, 255, .07);
}
.proj-ledger li::before {
  content: counter(pl, decimal-leading-zero);
  position: absolute; left: 0; top: 14px;
  font-family: var(--font-head); font-size: 0.7rem; letter-spacing: .06em;
  color: var(--ink-500);
}
.pl-loc { font-family: var(--font-head); font-weight: 600; color: var(--ink-100); font-size: 0.98rem; }
.pl-meta { grid-column: 1; font-size: 0.82rem; color: var(--ink-400); }
.pl-time {
  grid-row: 1 / span 2; align-self: center;
  font-family: var(--font-head); font-size: 0.76rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--cyan-300); padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(125, 239, 255, .28); background: rgba(34, 211, 238, .08);
  white-space: nowrap;
}
.proj-panel-foot { margin-top: 18px; font-size: 0.86rem; color: var(--ink-400); }

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: clamp(26px, 3vw, 40px);
}
.filter-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.86rem; font-weight: 500;
  color: var(--ink-300);
  padding: 10px 18px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--glass);
  transition: color .25s, background .3s, border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.filter-chip i {
  font-style: normal; font-size: 0.72rem; padding: 2px 7px; border-radius: 100px;
  background: rgba(255, 255, 255, .08); color: var(--ink-400);
}
.filter-chip:hover { color: var(--ink-100); border-color: rgba(125, 239, 255, .4); transform: translateY(-2px); }
.filter-chip.active {
  color: #04121f; background: var(--grad-cyan); border-color: transparent;
  box-shadow: 0 8px 24px rgba(34, 211, 238, .35);
}
.filter-chip.active i { background: rgba(4, 18, 31, .18); color: rgba(4, 18, 31, .75); }
.filter-empty { text-align: center; color: var(--ink-400); margin-bottom: 24px; }
.filter-empty a { color: var(--cyan-300); }

/* Filtered items collapse out of the grid without a layout jump */
.filtered-out {
  display: none !important;
}

/* ---------- Case-study cards ---------- */
.proj-grid { align-items: stretch; }
.proj-card {
  display: flex; flex-direction: column;
  padding-top: clamp(22px, 2.6vw, 30px);
  animation: projIn .45s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 45ms);
}
@keyframes projIn { from { opacity: 0; transform: translateY(10px) scale(.985); } }
@media (prefers-reduced-motion: reduce) { .proj-card { animation: none; } }

/* Blueprint texture behind each case study */
.proj-card::before {
  background:
    radial-gradient(420px 220px at var(--mx, 50%) var(--my, 0%), rgba(34, 211, 238, .13), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Cpath d='M0 .5H26M.5 0V26' stroke='%23ffffff' stroke-opacity='0.035'/%3E%3C/svg%3E");
  opacity: .55;
}
.proj-card:hover::before { opacity: 1; }

.proj-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.proj-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; flex: none;
  background: linear-gradient(150deg, rgba(34, 211, 238, .2), rgba(79, 139, 255, .12));
  border: 1px solid var(--line-strong);
  transition: transform .5s var(--ease), box-shadow .5s, border-color .4s;
}
.proj-icon svg { width: 26px; height: 26px; color: var(--cyan-300); }
.proj-card:hover .proj-icon {
  transform: rotate(-6deg) scale(1.07);
  border-color: rgba(125, 239, 255, .5);
  box-shadow: 0 0 26px rgba(34, 211, 238, .3);
}
.proj-no {
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.4px rgba(255, 255, 255, .14);
  transition: -webkit-text-stroke-color .5s;
}
.proj-card:hover .proj-no { -webkit-text-stroke-color: rgba(125, 239, 255, .45); }

.proj-sector {
  display: inline-block; margin: 18px 0 10px;
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-400);
}
.proj-card h3 { font-size: 1.22rem; margin-bottom: 14px; }
.proj-meta {
  display: flex; flex-wrap: wrap; gap: 7px;
  padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line);
}
.proj-meta li {
  font-size: 0.76rem; font-family: var(--font-head); color: var(--ink-300);
  padding: 5px 11px; border-radius: 8px;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line);
}
.proj-card p { flex: 1; }
.proj-card .card-link { margin-top: 18px; }
.proj-card .card-link svg { width: 16px; height: 16px; }

/* ---------- Process steps: connected rail ---------- */
.page-projects .steps { position: relative; }
.page-projects .steps::before {
  content: ""; position: absolute; left: 4%; right: 4%; top: 52px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, .5), rgba(79, 139, 255, .5), transparent);
}
.page-projects .step { background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); }
.page-projects .step .step-no { position: relative; z-index: 1; }

/* ---------- Projects responsive ---------- */
@media (max-width: 1080px) {
  .proj-hero-grid { grid-template-columns: 1fr; }
  .proj-panel { max-width: 620px; }
}
@media (max-width: 1180px) {
  .page-projects .steps::before { display: none; }
}
@media (max-width: 720px) {
  .proj-ledger li { grid-template-columns: 1fr; }
  .pl-time { grid-row: auto; justify-self: start; margin-top: 6px; }
  .filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-chip { flex: none; }
}

/* Ledger rows: pin each part to its cell — spanning `grid-row` without an
   explicit column let auto-placement drop the badge into column 1. */
.pl-loc { grid-column: 1; grid-row: 1; }
.pl-meta { grid-column: 1; grid-row: 2; }
.pl-time { grid-column: 2; grid-row: 1 / span 2; justify-self: end; }
@media (max-width: 720px) {
  .pl-time { grid-column: 1; grid-row: auto; justify-self: start; }
}

/* Anchored sections must clear the fixed navbar */
:target, [id]:is(section, article) { scroll-margin-top: 110px; }

/* ============================================================
   PRICING & PACKAGES — quote-sheet design
   ============================================================ */

/* ---------- Hero: copy + inclusions panel ---------- */
.price-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
}
.price-hero-grid > * { min-width: 0; }
.price-hero h1 { margin: 20px 0 18px; }
.price-panel {
  position: relative; overflow: hidden;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(14, 22, 48, .78), rgba(7, 11, 24, .62));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md), 0 0 60px rgba(34, 211, 238, .1);
}
.price-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 100% 0%, rgba(34, 211, 238, .16), transparent 70%);
}
.price-panel > * { position: relative; }
.price-includes { display: grid; gap: 2px; margin-top: 6px; }
.price-includes li {
  position: relative; padding: 12px 0 12px 28px;
  font-size: 0.94rem; color: var(--ink-300);
  border-bottom: 1px dashed rgba(255, 255, 255, .07);
}
.price-includes li::before {
  content: ""; position: absolute; left: 0; top: 19px; width: 12px; height: 7px;
  border-left: 2px solid var(--cyan-400); border-bottom: 2px solid var(--cyan-400);
  transform: rotate(-45deg);
}
.price-from {
  margin-top: 20px; padding: 18px 20px; border-radius: var(--radius);
  border: 1px solid rgba(125, 239, 255, .28);
  background: linear-gradient(140deg, rgba(34, 211, 238, .12), rgba(79, 139, 255, .05));
}
.pf-label {
  display: block; font-family: var(--font-head); font-size: 0.72rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-400);
}
.pf-value {
  display: block; margin: 4px 0 2px;
  font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; line-height: 1;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pf-note { font-size: 0.82rem; color: var(--ink-400); }

/* ---------- Plan cards ---------- */
.plan {
  position: relative; overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s, background .4s, box-shadow .5s var(--ease);
}
.plan::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(125, 239, 255, .5), rgba(79, 139, 255, .2) 50%, rgba(245, 196, 81, .35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .45s; pointer-events: none;
}
.plan:hover::after { opacity: 1; }
.plan:hover { box-shadow: 0 26px 60px rgba(3, 8, 22, .55); }
.plan > * { position: relative; z-index: 1; }

.plan-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(150deg, rgba(34, 211, 238, .2), rgba(79, 139, 255, .12));
  border: 1px solid var(--line-strong);
  transition: transform .5s var(--ease), box-shadow .5s, border-color .4s;
}
.plan-icon svg { width: 24px; height: 24px; color: var(--cyan-300); }
.plan:hover .plan-icon {
  transform: rotate(-6deg) scale(1.07);
  border-color: rgba(125, 239, 255, .5);
  box-shadow: 0 0 24px rgba(34, 211, 238, .3);
}

/* Price block reads as a quote line */
.plan .price {
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.plan .price b {
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.03em;
}
.plan .plan-list li { transition: color .25s, transform .3s var(--ease); }
.plan .plan-list li:hover { color: var(--ink-100); transform: translateX(3px); }
.plan-foot {
  font-size: 0.78rem; color: var(--ink-500); margin-bottom: 16px;
  padding-top: 4px; border-top: 1px dashed rgba(255, 255, 255, .07);
  padding-block-start: 14px;
}

/* Featured plan lifts out of the row */
.plan.featured {
  background: linear-gradient(180deg, rgba(34, 211, 238, .1), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow-glow), 0 22px 60px rgba(3, 8, 22, .5);
}
@media (min-width: 1001px) {
  .plan.featured { transform: translateY(-14px) scale(1.02); z-index: 2; }
  .plan.featured:hover { transform: translateY(-20px) scale(1.02); }
}
.plan.featured .badge { box-shadow: 0 8px 22px rgba(34, 211, 238, .45); animation: badgePulse 3.4s ease-in-out infinite; }
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(34, 211, 238, .3); }
  50%      { box-shadow: 0 8px 30px rgba(34, 211, 238, .6); }
}
@media (prefers-reduced-motion: reduce) { .plan.featured .badge { animation: none; } }

/* ---------- Component table ---------- */
.page-pricing .table-wrap {
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  box-shadow: var(--shadow-md);
}
.page-pricing thead th { background: rgba(7, 11, 24, .92); backdrop-filter: blur(8px); }
.tier {
  display: inline-block; padding: 5px 12px; border-radius: 100px;
  font-size: 0.74rem; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line-strong); color: var(--ink-300);
}
.tier-best {
  color: var(--gold-400); border-color: rgba(245, 196, 81, .38);
  background: rgba(245, 196, 81, .1);
}
.page-pricing tbody tr { transition: background .25s; }
.page-pricing tbody tr:hover { background: rgba(34, 211, 238, .05); }
.page-pricing tbody tr:hover th { color: var(--cyan-300); }
.page-pricing td:last-child .price-cell, .page-pricing tbody td:last-child { color: var(--gold-400); }

/* ---------- AMC tiers ---------- */
.amc { display: flex; flex-direction: column; }
.amc-price {
  display: flex; align-items: baseline; gap: 6px;
  margin: 14px 0 18px; padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
}
.amc-price b {
  font-size: 2.05rem; font-weight: 800; letter-spacing: -0.03em;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.amc-price small { color: var(--ink-400); font-size: 0.9rem; }
.amc-best { border-color: rgba(125, 239, 255, .38); }
.amc-flag {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--cyan-300);
  padding: 5px 11px; border-radius: 100px;
  border: 1px solid rgba(125, 239, 255, .3); background: rgba(34, 211, 238, .1);
}

/* ---------- Guarantee strip ---------- */
.guarantee { text-align: center; padding: clamp(22px, 2.6vw, 30px); }
.guarantee .card-icon { margin-inline: auto; width: 48px; height: 48px; border-radius: 13px; }
.guarantee .card-icon svg { width: 22px; height: 22px; }
.guarantee h3 { font-size: 1.02rem; margin-bottom: 6px; }
.guarantee p { font-size: 0.88rem; }

/* ---------- Pricing responsive ---------- */
@media (max-width: 1080px) {
  .price-hero-grid { grid-template-columns: 1fr; }
  .price-panel { max-width: 620px; }
}
@media (max-width: 720px) {
  .plan .price b { font-size: 2.1rem; }
  .amc-flag { position: static; display: inline-block; margin-bottom: 12px; }
}

/* The "Most Popular" badge sits above the card edge, so the plan can't clip
   its children (the gradient border is masked, it doesn't need overflow). */
.plan { overflow: visible; }

/* Keep the AMC flag clear of the card title */
.amc-best h3 { padding-right: 128px; }
@media (max-width: 720px) { .amc-best h3 { padding-right: 0; } }

/* ============================================================
   WHY CHOOSE US — proof scorecard & side-by-side comparison
   ============================================================ */

/* ---------- Hero: copy + track-record scorecard ---------- */
.why-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
}
.why-hero-grid > * { min-width: 0; }
.why-hero h1 { margin: 20px 0 18px; }
.why-panel {
  position: relative; overflow: hidden;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(14, 22, 48, .78), rgba(7, 11, 24, .62));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md), 0 0 60px rgba(34, 211, 238, .1);
}
.why-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 100% 0%, rgba(34, 211, 238, .16), transparent 70%);
}
.why-panel > * { position: relative; }
.score-rows { display: grid; gap: 2px; margin-top: 6px; }
.score-rows > div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px dashed rgba(255, 255, 255, .07);
}
.score-rows dt { font-size: 0.9rem; color: var(--ink-400); }
.score-rows dd {
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; line-height: 1;
  letter-spacing: -0.02em; white-space: nowrap;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.why-panel-foot { margin-top: 18px; font-size: 0.86rem; color: var(--ink-400); }

/* ---------- Numbered reason cards ---------- */
.why-card { position: relative; }
.why-no {
  position: absolute; top: 14px; right: 20px;
  font-family: var(--font-head); font-weight: 800; font-size: 2.5rem; line-height: 1;
  letter-spacing: -0.04em; color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, .13);
  transition: -webkit-text-stroke-color .5s, transform .6s var(--ease);
  pointer-events: none;
}
.why-card:hover .why-no { -webkit-text-stroke-color: rgba(125, 239, 255, .45); transform: translateY(-3px); }
.why-card h3 { padding-right: 66px; }

/* ---------- Comparison table ---------- */
.compare-wrap {
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  box-shadow: var(--shadow-md);
}
.compare { min-width: 720px; }
.compare thead th { background: rgba(7, 11, 24, .92); backdrop-filter: blur(8px); padding-block: 20px; }
.cmp-label {
  font-size: 0.74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-500);
}
.cmp-us, .cmp-them {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.95rem; padding: 7px 15px; border-radius: 100px;
}
.cmp-us {
  color: #04121f; background: var(--grad-cyan);
  box-shadow: 0 6px 20px rgba(34, 211, 238, .35);
}
.cmp-them { color: var(--ink-400); border: 1px solid var(--line-strong); background: rgba(255, 255, 255, .04); }

/* Our column is visually the winning lane */
.compare .col-us {
  background: linear-gradient(180deg, rgba(34, 211, 238, .1), rgba(34, 211, 238, .05));
  border-inline: 1px solid rgba(125, 239, 255, .22);
  color: var(--ink-100);
}
.compare tbody .col-us, .compare tbody .col-them { position: relative; padding-left: 46px; }
.compare tbody .col-us::before,
.compare tbody .col-them::before {
  content: ""; position: absolute; left: 18px; top: 50%; translate: 0 -50%;
  width: 18px; height: 18px; border-radius: 50%;
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
/* Tick */
.compare tbody .col-us::before {
  background-color: rgba(34, 211, 238, .18);
  box-shadow: inset 0 0 0 1px rgba(125, 239, 255, .5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237defff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 7 9 18l-5-5'/%3E%3C/svg%3E");
}
/* Cross */
.compare tbody .col-them::before {
  background-color: rgba(255, 255, 255, .05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa4c2' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E");
}
.compare tbody .col-them { color: var(--ink-500); }
.compare tbody tr { transition: background .25s; }
.compare tbody tr:hover th { color: var(--cyan-300); }
.compare tbody tr:hover .col-us { background: linear-gradient(180deg, rgba(34, 211, 238, .18), rgba(34, 211, 238, .08)); }

/* ---------- Why responsive ---------- */
@media (max-width: 1080px) {
  .why-hero-grid { grid-template-columns: 1fr; }
  .why-panel { max-width: 620px; }
}
@media (max-width: 720px) {
  .score-rows > div { flex-direction: column; gap: 4px; }
  .why-no { font-size: 2rem; }
  .why-card h3 { padding-right: 52px; }
}

/* Comparison table on narrow screens: keep the row labels pinned while the
   columns scroll, and say so. */
.table-hint {
  display: none; margin-top: 14px; text-align: center;
  font-family: var(--font-head); font-size: 0.8rem; letter-spacing: .06em; color: var(--ink-500);
}
@media (max-width: 860px) {
  .table-hint { display: block; }
  .compare tbody th, .compare thead th:first-child {
    position: sticky; left: 0; z-index: 1;
    background: linear-gradient(90deg, #080d1a 88%, rgba(8, 13, 26, .82));
  }
  .compare thead th:first-child { z-index: 2; }
}

/* ============================================================
   SECURITY INSIGHTS — editorial knowledge hub
   ============================================================ */

/* ---------- Hero: copy + topics panel ---------- */
.insight-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
}
.insight-hero-grid > * { min-width: 0; }
.insight-hero h1 { margin: 20px 0 18px; }
.insight-panel {
  position: relative; overflow: hidden;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(14, 22, 48, .78), rgba(7, 11, 24, .62));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md), 0 0 60px rgba(34, 211, 238, .1);
}
.insight-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 100% 0%, rgba(34, 211, 238, .16), transparent 70%);
}
.insight-panel > * { position: relative; }
.insight-topics { display: grid; gap: 2px; margin-top: 6px; }
.insight-topics li {
  position: relative; padding: 13px 0 13px 28px;
  border-bottom: 1px dashed rgba(255, 255, 255, .07);
}
.insight-topics li::before {
  content: ""; position: absolute; left: 2px; top: 20px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan-400); box-shadow: 0 0 10px var(--cyan-400);
}
.insight-topics b { display: block; font-family: var(--font-head); font-size: 0.98rem; color: var(--ink-100); }
.insight-topics span { font-size: 0.85rem; color: var(--ink-400); }
.insight-panel-foot { margin-top: 18px; font-size: 0.86rem; color: var(--ink-400); }

/* ---------- Shared post meta ---------- */
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 14px; }
.post-meta li {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500);
}
.post-meta li + li::before { content: "·"; margin-right: 8px; color: var(--ink-500); }
.post-meta .pm-cat {
  color: var(--gold-400); padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(245, 196, 81, .3); background: rgba(245, 196, 81, .08);
  letter-spacing: .12em;
}
.post-meta .pm-cat + li::before { content: none; }

/* ---------- Featured post ---------- */
.feature-post {
  display: grid; grid-template-columns: 1.05fr 1fr;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-strong);
  background: linear-gradient(150deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015));
  box-shadow: var(--shadow-md);
  transition: border-color .4s, box-shadow .5s var(--ease);
}
.feature-post:hover { border-color: rgba(125, 239, 255, .4); box-shadow: 0 26px 60px rgba(3, 8, 22, .55); }
.feature-media { position: relative; min-height: 340px; overflow: hidden; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform 1.1s var(--ease), opacity .5s; }
.feature-post:hover .feature-media img { transform: scale(1.05); opacity: 1; }
.feature-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(5, 7, 15, .1), rgba(5, 7, 15, .75));
}
.feature-flag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #04121f;
  padding: 7px 14px; border-radius: 100px; background: var(--grad-gold);
  box-shadow: 0 8px 22px rgba(245, 196, 81, .35);
}
.feature-body {
  padding: clamp(26px, 3.6vw, 46px);
  display: flex; flex-direction: column; justify-content: center;
}
.feature-body h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.feature-body p { margin: 14px 0 22px; color: var(--ink-300); }
.feature-body .card-link { align-self: flex-start; }
.feature-body .card-link svg { width: 17px; height: 17px; }

/* ---------- Post cards ---------- */
.post-card {
  display: flex; flex-direction: column;
  animation: projIn .45s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 45ms);
}
@media (prefers-reduced-motion: reduce) { .post-card { animation: none; } }
.post-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(150deg, rgba(34, 211, 238, .2), rgba(79, 139, 255, .12));
  border: 1px solid var(--line-strong);
  transition: transform .5s var(--ease), box-shadow .5s, border-color .4s;
}
.post-icon svg { width: 24px; height: 24px; color: var(--cyan-300); }
.post-card:hover .post-icon {
  transform: rotate(-6deg) scale(1.07);
  border-color: rgba(125, 239, 255, .5);
  box-shadow: 0 0 26px rgba(34, 211, 238, .3);
}
.post-card h3 { font-size: 1.14rem; line-height: 1.28; margin-bottom: 12px; transition: color .3s; }
.post-card:hover h3 { color: var(--cyan-300); }
.post-card p { flex: 1; font-size: 0.95rem; }
.post-card .card-link { margin-top: 18px; }
.post-card .card-link svg { width: 16px; height: 16px; }

/* ---------- Insights responsive ---------- */
@media (max-width: 1080px) {
  .insight-hero-grid { grid-template-columns: 1fr; }
  .insight-panel { max-width: 620px; }
}
@media (max-width: 900px) {
  .feature-post { grid-template-columns: 1fr; }
  .feature-media { min-height: 240px; }
}

/* ============================================================
   GET IN TOUCH — availability, form & map
   ============================================================ */

/* ---------- Hero: copy + live availability panel ---------- */
.contact-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
}
.contact-hero-grid > * { min-width: 0; }
.contact-hero h1 { margin: 20px 0 18px; }
.contact-panel {
  position: relative; overflow: hidden;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(14, 22, 48, .78), rgba(7, 11, 24, .62));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md), 0 0 60px rgba(34, 211, 238, .1);
}
.contact-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 100% 0%, rgba(34, 211, 238, .16), transparent 70%);
}
.contact-panel > * { position: relative; }
/* Closed state turns the live dot amber */
.panel-dot.is-closed { background: var(--gold-400); box-shadow: 0 0 12px var(--gold-400); }
.office-note { margin: 14px 0 4px; font-size: 0.85rem; color: var(--ink-400); }
.contact-rows { display: grid; gap: 2px; margin-top: 10px; }
.contact-rows > div {
  display: flex; justify-content: space-between; gap: 18px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px dashed rgba(255, 255, 255, .07);
}
.contact-rows dt {
  font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-500); white-space: nowrap;
}
.contact-rows dd {
  font-family: var(--font-head); font-size: 0.92rem; color: var(--ink-100);
  text-align: right; line-height: 1.45;
}
.contact-rows dd a { transition: color .25s; }
.contact-rows dd a:hover { color: var(--cyan-300); }
.contact-panel-foot { margin-top: 18px; font-size: 0.86rem; color: var(--ink-400); }

/* ---------- Channel cards ---------- */
.channel { display: flex; flex-direction: column; }
.channel p { flex: 1; }
.channel-chip {
  display: inline-block; align-self: flex-start; margin: -4px 0 12px;
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cyan-300);
  padding: 5px 11px; border-radius: 100px;
  border: 1px solid rgba(125, 239, 255, .28); background: rgba(34, 211, 238, .08);
}
.channel-btn { margin-top: 18px; align-self: flex-start; }

/* ---------- Lead form ---------- */
.lead-card { position: relative; }
.lead-title { font-size: clamp(1.35rem, 2vw, 1.65rem); margin: 16px 0 6px; }
.lead-sub { color: var(--ink-400); font-size: 0.95rem; margin-bottom: 24px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label i { font-style: normal; color: var(--cyan-300); }
.field label .opt { font-style: normal; color: var(--ink-500); }
.field input, .field textarea, .field select { transition: border-color .3s, box-shadow .3s, background .3s; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: rgba(125, 239, 255, .35); }
.field input:user-invalid, .field textarea:user-invalid {
  border-color: rgba(255, 138, 138, .6);
  box-shadow: 0 0 0 3px rgba(255, 138, 138, .12);
}
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-status {
  margin-top: 14px; font-size: 0.88rem; min-height: 1.2em;
  font-family: var(--font-head);
}
.form-status.is-ok { color: var(--cyan-300); }
.form-status.is-err { color: #ff9d9d; }
.form-note { margin-top: 10px; font-size: 0.82rem; color: var(--ink-500); }
.form-note a { color: var(--cyan-300); }

/* ---------- Details column ---------- */
.contact-details h2 { margin: 18px 0 8px; }
.ci-note { display: block; color: var(--ink-500) !important; font-size: 0.86rem; }
.contact-item { transition: border-color .3s; }
.contact-item .ci { transition: transform .45s var(--ease), box-shadow .45s, border-color .35s; }
.contact-item:hover .ci {
  transform: rotate(-6deg) scale(1.06);
  border-color: rgba(125, 239, 255, .45);
  box-shadow: 0 0 22px rgba(34, 211, 238, .28);
}
.directions-btn { margin-top: 20px; }

/* ---------- Map ---------- */
.map-frame {
  position: relative; height: clamp(320px, 46vw, 460px);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md), 0 0 60px rgba(34, 211, 238, .08);
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(.35) contrast(1.05) brightness(.92);
  transition: filter .6s;
}
.map-frame:hover iframe { filter: grayscale(0) contrast(1.05) brightness(1); }
.map-card {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  max-width: min(360px, calc(100% - 40px));
  padding: 20px 22px; border-radius: var(--radius);
  background: rgba(7, 11, 24, .88); backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-md);
}
.map-card b { display: block; font-family: var(--font-head); color: var(--ink-100); margin-bottom: 6px; }
.map-card span { display: block; font-size: 0.86rem; color: var(--ink-400); }
.map-card .card-link { margin-top: 14px; }
.map-card .card-link svg { width: 16px; height: 16px; }

/* ---------- Contact responsive ---------- */
@media (max-width: 1080px) {
  .contact-hero-grid { grid-template-columns: 1fr; }
  .contact-panel { max-width: 620px; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-rows > div { flex-direction: column; gap: 4px; }
  .contact-rows dd { text-align: left; }
  .map-card { left: 14px; right: 14px; bottom: 14px; max-width: none; padding: 16px 18px; }
}

/* The Google embed ships a light map. Mute it so it sits in the dark page,
   and restore full colour on hover for orientation.
   (A full `invert(.9) hue-rotate(180deg)` renders a true dark map — swap it in
   here if you prefer that look; I couldn't verify it in headless capture.) */
.map-frame iframe {
  filter: grayscale(.5) brightness(.82) contrast(1.05);
}
.map-frame:hover iframe { filter: grayscale(0) brightness(1) contrast(1.02); }

/* ============================================================
   FOOTER — closing statement
   ============================================================ */
.footer {
  position: relative; overflow: hidden;
  margin-top: clamp(50px, 7vw, 90px);
  padding-top: 0;
  border-top: none;
  background: linear-gradient(180deg, rgba(10, 16, 34, 0) 0%, rgba(8, 13, 27, .75) 22%, rgba(6, 10, 22, .95) 100%);
}
/* Animated gradient hairline along the top edge */
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, .7), rgba(245, 196, 81, .5), transparent);
  background-size: 220% 100%;
  animation: footerLine 9s ease-in-out infinite alternate;
}
@keyframes footerLine { from { background-position: 0% 0; } to { background-position: 100% 0; } }
/* Slow aurora bloom behind the whole footer */
.footer-glow {
  position: absolute; inset: -30% -10% auto -10%; height: 150%;
  pointer-events: none;
  background:
    radial-gradient(40% 60% at 20% 10%, rgba(34, 211, 238, .16), transparent 62%),
    radial-gradient(45% 55% at 82% 8%, rgba(79, 139, 255, .14), transparent 62%),
    radial-gradient(40% 50% at 55% 95%, rgba(245, 196, 81, .08), transparent 60%);
  filter: blur(34px);
  animation: auroraDrift 22s ease-in-out infinite alternate;
}
.footer > .wrap { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .footer::before, .footer-glow { animation: none; }
}

/* ---------- Closing CTA band ---------- */
.footer-cta {
  display: grid; grid-template-columns: 1.4fr auto;
  align-items: center; gap: clamp(24px, 3vw, 48px);
  margin: clamp(44px, 6vw, 76px) 0 clamp(40px, 5vw, 64px);
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(140deg, rgba(34, 211, 238, .12), rgba(79, 139, 255, .06) 60%, rgba(245, 196, 81, .06));
  box-shadow: var(--shadow-md), 0 0 70px rgba(34, 211, 238, .1);
  position: relative; overflow: hidden;
}
.footer-cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 120% at 15% 0%, rgba(34, 211, 238, .18), transparent 65%);
}
.footer-cta > * { position: relative; }
.footer-cta h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 16px 0 10px; }
.footer-cta p { color: var(--ink-300); max-width: 48ch; }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Grid & brand block ---------- */
.footer-grid { padding-bottom: clamp(34px, 4vw, 54px); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-badges li {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400);
  padding: 5px 11px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .04);
  transition: color .3s, border-color .3s, transform .3s var(--ease);
}
.footer-badges li:hover { color: var(--cyan-300); border-color: rgba(125, 239, 255, .4); transform: translateY(-2px); }

.footer .logo-plate { transition: transform .5s var(--ease), box-shadow .5s; }
.footer .logo:hover .logo-plate { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(3, 8, 22, .5), 0 0 34px rgba(34, 211, 238, .2); }

/* Social buttons take their channel colour on hover */
.social a { position: relative; overflow: hidden; }
.social a::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s;
}
.social a:hover::before { opacity: 1; }
.social .s-wa:hover::before { background: #25d366; }
.social .s-tel:hover::before { background: var(--grad-cyan); }
.social .s-mail:hover::before { background: var(--grad-gold); }
.social a svg { position: relative; z-index: 1; transition: color .3s; }
.social .s-wa:hover svg, .social .s-tel:hover svg { color: #04121f; }
.social .s-mail:hover svg { color: #241a02; }

/* ---------- Column headings with an accent rule ---------- */
.footer-col h4 { position: relative; padding-bottom: 12px; }
.footer-col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px;
  border-radius: 2px; background: var(--grad-cyan);
  transition: width .4s var(--ease);
}
.footer-col:hover h4::after { width: 46px; }

/* Links slide and grow an arrow */
.footer-col ul a {
  position: relative; display: inline-block; padding-left: 0;
  transition: color .25s, padding-left .3s var(--ease);
}
.footer-col ul a::before {
  content: "›"; position: absolute; left: 0; opacity: 0;
  color: var(--cyan-400); transition: opacity .25s, transform .3s var(--ease);
  transform: translateX(-4px);
}
.footer-col ul a:hover { padding-left: 14px; }
.footer-col ul a:hover::before { opacity: 1; transform: translateX(0); }

/* Reach column: icon chips instead of emoji */
.footer-reach ul a { display: inline-flex; align-items: center; gap: 10px; }
.footer-reach ul a::before { content: none; }
.footer-reach ul a:hover { padding-left: 0; }
.fr-ic {
  width: 28px; height: 28px; flex: none; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line);
  transition: background .3s, border-color .3s, transform .35s var(--ease);
}
.fr-ic svg { width: 14px; height: 14px; color: var(--cyan-300); }
.footer-reach ul a:hover .fr-ic {
  border-color: rgba(125, 239, 255, .45);
  background: rgba(34, 211, 238, .12);
  transform: translateY(-2px);
}
.footer-addr { margin-top: 16px; font-size: 0.86rem; line-height: 1.55; color: var(--ink-500); }
.footer-hours {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 14px;
  font-family: var(--font-head); font-size: 0.82rem; color: var(--ink-300);
  padding: 7px 13px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .04);
}

/* ---------- Service areas strip ---------- */
.footer-areas {
  padding: clamp(22px, 2.6vw, 32px) 0;
  border-top: 1px solid var(--line);
}
.footer-areas h4 {
  font-size: 0.74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 14px;
}
.footer-areas ul { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-areas li {
  font-size: 0.82rem; color: var(--ink-400);
  padding: 6px 13px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .03);
  transition: color .25s, border-color .25s, background .25s, transform .3s var(--ease);
}
.footer-areas li:hover {
  color: var(--ink-100); border-color: rgba(125, 239, 255, .4);
  background: rgba(34, 211, 238, .08); transform: translateY(-2px);
}

/* ---------- Bottom bar ---------- */
.footer-bottom { align-items: center; }
.fb-partners b { color: var(--ink-300); font-weight: 600; transition: color .3s; }
.fb-partners b:hover { color: var(--cyan-300); }

/* ---------- Footer responsive ---------- */
@media (max-width: 900px) {
  .footer-cta { grid-template-columns: 1fr; }
  .footer-cta-actions { width: 100%; }
}
@media (max-width: 560px) {
  .footer-cta { padding: 24px 20px; border-radius: var(--radius-lg); }
  .footer-cta-actions .btn { width: 100%; justify-content: center; }
  .footer-areas ul { gap: 6px; }
  .footer-areas li { font-size: 0.78rem; padding: 5px 11px; }
}
