/* ==========================================================================
   ARMADA PUBLIC ADJUSTING — Premium Design System
   Dark navy + crimson brand theme · Archivo display / Inter body
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #05080f;
  --bg-2: #090e1a;
  --bg-3: #0d1424;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.06);

  --ink: #f2f5fb;
  --muted: #a9b3c9;
  /* lightened from #707b99 to clear WCAG AA (4.5:1) for small text on the dark bg */
  --muted-2: #8b94ad;

  --red: #d40000;
  --red-bright: #ff3b3b;
  --red-glow: rgba(212, 0, 0, 0.45);
  --red-deep: #750101;
  --red-darker: #3d0101;

  --grad-red: linear-gradient(135deg, #ff4040 0%, #d40000 45%, #8f0202 100%);
  --grad-text: linear-gradient(120deg, #ffffff 0%, #ffd9d9 40%, #ff5454 100%);

  --font-display: 'Archivo', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-card: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-red: 0 12px 40px -8px rgba(212, 0, 0, 0.5);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 84px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
  /* keep fragment-link targets clear of the fixed navbar */
  scroll-padding-top: calc(var(--nav-h) + 16px);
  /* belt-and-braces against any horizontal overflow / side-scroll */
  overflow-x: hidden;
}

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

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }

::selection { background: var(--red); color: #fff; }

/* Visible keyboard focus across all interactive elements (dark-theme safe) */
:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
/* pointer/mouse interactions shouldn't show the ring */
:focus:not(:focus-visible) { outline: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #5a0808, #2a0404);
  border-radius: 8px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--red-deep); }

/* ---------- Grain / noise overlay ---------- */
/* Sized to the viewport (inset:0) and animated via background-position so it can
   never extend past the screen edge — a 200%-wide fixed layer caused horizontal
   scroll on mobile (iOS ignores body overflow-x:hidden for oversized fixed layers). */
.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-repeat: repeat;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 9s steps(10) infinite;
}
@keyframes grain-shift {
  0%, 100% { background-position: 0 0; }
  10% { background-position: -12px -20px; }
  30% { background-position: 16px -8px; }
  50% { background-position: -16px 16px; }
  70% { background-position: 12px 12px; }
  90% { background-position: -8px 8px; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--bg);
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__logo {
  width: 120px;
  filter: drop-shadow(0 0 36px rgba(212, 0, 0, 0.5));
  animation: preloader-pulse 1.6s var(--ease-out) infinite;
}
@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}
.preloader__bar {
  width: 220px;
  height: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.preloader__bar i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: var(--grad-red);
  box-shadow: 0 0 16px var(--red-glow);
  transition: width 0.35s var(--ease-out);
}
.preloader__tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  /* above the glass navbar (5000) so it stays visible, below the preloader (10000) */
  z-index: 5100;
  pointer-events: none;
}
.scroll-progress i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad-red);
  box-shadow: 0 0 12px var(--red-glow);
  transform-origin: left;
  transform: scaleX(0);
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9500;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--red-bright);
  box-shadow: 0 0 10px var(--red-glow);
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 59, 59, 0.55);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
    border-color 0.25s, background 0.25s, opacity 0.25s;
}
.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  border-color: rgba(255, 59, 59, 0.95);
  background: rgba(212, 0, 0, 0.08);
}
.cursor-dot.is-down { transform: translate(-50%, -50%) scale(2.2); }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Visually hidden but available to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
}
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.section--alt { background: var(--bg-2); }

/* Decorative section glow */
.section-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 0, 0, 0.14) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

/* Grid pattern backdrop */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
}

/* ---------- Section headers ---------- */
.sec-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 72px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 18px;
}
.kicker::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--grad-red);
  border-radius: 2px;
}
.sec-head--center .kicker::after {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--grad-red);
  border-radius: 2px;
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.sec-title em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.sec-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17.5px);
  max-width: 640px;
}
.sec-head--center .sec-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out),
    background 0.3s, border-color 0.3s, color 0.3s;
  overflow: hidden;
  isolation: isolate;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn--primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 50px -8px rgba(212, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-out);
}
.btn--primary:hover::after { transform: translateX(110%); }

.btn--ghost {
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(255, 59, 59, 0.6);
  background: rgba(212, 0, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -10px rgba(212, 0, 0, 0.35);
}

.btn--sm { padding: 12px 24px; font-size: 13px; }

.btn--wide { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: transform 0.45s var(--ease-out), background 0.35s, border-color 0.35s,
    height 0.35s var(--ease-out), box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  height: 70px;
  background: rgba(5, 8, 15, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 12px 40px -16px rgba(0, 0, 0, 0.8);
}
.nav.is-hidden { transform: translateY(-110%); }

.nav__inner {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo img {
  height: 46px;
  width: auto;
  transition: height 0.35s var(--ease-out), filter 0.3s;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.6));
}
.nav.is-scrolled .nav__logo img { height: 38px; }
.nav__logo:hover img { filter: drop-shadow(0 0 18px rgba(212, 0, 0, 0.55)); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 15px;
  border-radius: 8px;
  transition: color 0.25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { color: #fff; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.25s;
}
.nav__phone svg { width: 16px; height: 16px; color: var(--red-bright); }
.nav__phone:hover { color: var(--red-bright); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-spring), opacity 0.25s, width 0.3s;
}
.nav__burger span:nth-child(2) { width: 70%; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  /* below the fixed nav so the logo and burger stay clickable while open */
  z-index: 4900;
  background: rgba(4, 6, 12, 0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  /* `safe center` + scroll so links/buttons never get clipped off either end
     on short (landscape phone / small) viewports */
  justify-content: safe center;
  padding: 100px 32px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
/* belt-and-braces: never leave the overlay up on desktop widths */
@media (min-width: 1101px) {
  .mobile-menu { display: none; }
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 10px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s;
}
.mobile-menu__link sup {
  font-size: 13px;
  font-weight: 600;
  color: var(--red-bright);
  letter-spacing: 0.2em;
}
.mobile-menu__link:hover { color: var(--red-bright); }
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu__foot {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out) 0.38s, transform 0.5s var(--ease-out) 0.38s;
}
.mobile-menu.is-open .mobile-menu__foot { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 18% 8%, rgba(117, 1, 1, 0.32) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 78%, rgba(212, 0, 0, 0.14) 0%, transparent 60%),
    var(--bg);
}
.hero__embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  will-change: transform;
}
.hero__orb--1 {
  width: 480px;
  height: 480px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(212, 0, 0, 0.28), transparent 65%);
  animation: orb-float 11s ease-in-out infinite;
}
.hero__orb--2 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 59, 59, 0.16), transparent 65%);
  animation: orb-float 14s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.12); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 59, 59, 0.3);
  background: rgba(212, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffb3b3;
  margin-bottom: 28px;
}
.hero__badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
  animation: badge-ping 2s infinite;
}
@keyframes badge-ping {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.65); }
  70% { box-shadow: 0 0 0 11px rgba(255, 59, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero__title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-up 0.9s var(--ease-out) forwards;
}
@keyframes word-up { to { transform: translateY(0); } }
.hero__title em {
  font-style: normal;
  color: var(--red-bright);
  filter: drop-shadow(0 0 28px rgba(212, 0, 0, 0.35));
}
/* gradient must live on the innermost (transformed) span — background-clip:text
   does not survive transformed descendants */
.hero__title em .word > span {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__sub {
  margin-top: 26px;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(15.5px, 1.5vw, 18px);
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.55s forwards;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.7s forwards;
}

.hero__proof {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 34px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.85s forwards;
}
.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  color: var(--muted);
}
.hero__proof-item b {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.hero__proof-item .stars { color: #ffb01f; letter-spacing: 2px; font-size: 14px; }
.hero__proof-sep {
  width: 1px;
  height: 30px;
  background: var(--line);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hold the hero entrance choreography until the preloader has lifted
   (body.is-loaded), so the animation isn't spent hidden behind the overlay. */
body:not(.is-loaded) .hero__title .word > span,
body:not(.is-loaded) .hero__sub,
body:not(.is-loaded) .hero__actions,
body:not(.is-loaded) .hero__proof,
body:not(.is-loaded) .hero__visual,
body:not(.is-loaded) .hero__scroll {
  animation-play-state: paused;
}

/* Hero visual — shield card */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.5s forwards;
}
.shield-card {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 0.88;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  will-change: transform;
}
.shield-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--ring-angle, 0deg), transparent 0%, rgba(255, 59, 59, 0.8) 12%, transparent 26%);
  -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;
  animation: ring-spin 5.5s linear infinite;
  pointer-events: none;
}
@property --ring-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes ring-spin { to { --ring-angle: 360deg; } }

.shield-card__logo {
  width: 68%;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 30px rgba(212, 0, 0, 0.22));
  transform: translateZ(46px);
  animation: logo-bob 6s ease-in-out infinite;
}
@keyframes logo-bob {
  0%, 100% { transform: translateZ(46px) translateY(0); }
  50% { transform: translateZ(46px) translateY(-12px); }
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  border-radius: 999px;
  background: rgba(9, 14, 26, 0.85);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: 0 14px 36px -10px rgba(0, 0, 0, 0.65);
  transform: translateZ(70px);
  white-space: nowrap;
}
.float-chip svg { width: 15px; height: 15px; color: var(--red-bright); }
.float-chip--1 { top: 6%; left: -9%; animation: chip-float 5s ease-in-out infinite; }
.float-chip--2 { top: 38%; right: -13%; animation: chip-float 6s ease-in-out 0.8s infinite; }
.float-chip--3 { bottom: 12%; left: -6%; animation: chip-float 5.5s ease-in-out 1.5s infinite; }
.float-chip--4 { bottom: -5%; right: 6%; animation: chip-float 6.5s ease-in-out 0.4s infinite; }
@keyframes chip-float {
  0%, 100% { transform: translateZ(70px) translateY(0); }
  50% { transform: translateZ(70px) translateY(-13px); }
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  pointer-events: none;
  color: var(--muted-2);
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-family: var(--font-display);
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 1.3s forwards;
}
.hero__scroll i {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(180deg, var(--red-bright), transparent);
  overflow: hidden;
  position: relative;
}
.hero__scroll i::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: scroll-drip 1.8s var(--ease-out) infinite;
}
@keyframes scroll-drip {
  to { top: 110%; }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(90deg, rgba(212, 0, 0, 0.06), rgba(212, 0, 0, 0.015) 30%, rgba(212, 0, 0, 0.06));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee-scroll 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 0 26px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__item svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  position: relative;
  padding: 38px 30px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, background 0.4s;
}
.stat:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 59, 59, 0.35);
  background: var(--surface-2);
}
.stat::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.stat:hover::after { transform: scaleX(1); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat__label {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat__icon {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(212, 0, 0, 0.12);
  border: 1px solid rgba(255, 59, 59, 0.22);
}
.stat__icon svg { width: 18px; height: 18px; color: var(--red-bright); }

/* ---------- Versus (Why hire a PA) ---------- */
.versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
}
.versus__card {
  position: relative;
  padding: clamp(30px, 3.4vw, 46px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}
.versus__card:hover { transform: translateY(-6px); }
.versus__card--them:hover { border-color: rgba(255, 255, 255, 0.18); }
.versus__card--us {
  background: linear-gradient(165deg, rgba(212, 0, 0, 0.14), rgba(117, 1, 1, 0.05) 55%), var(--surface);
  border-color: rgba(255, 59, 59, 0.3);
}
.versus__card--us:hover {
  border-color: rgba(255, 59, 59, 0.6);
  box-shadow: var(--shadow-red);
}
.versus__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.versus__card--them .versus__tag {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-soft);
}
.versus__card--us .versus__tag {
  color: #ffc7c7;
  background: rgba(212, 0, 0, 0.18);
  border: 1px solid rgba(255, 59, 59, 0.35);
}
.versus__card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.versus__card ul { display: flex; flex-direction: column; gap: 14px; }
.versus__card li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 15px;
}
.versus__card li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; }
.versus__card--them li svg { color: var(--muted-2); }
.versus__card--us li { color: #d9dee9; }
.versus__card--us li svg { color: var(--red-bright); }
.versus__vs {
  align-self: center;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-red);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-red);
  animation: vs-pulse 2.6s ease-in-out infinite;
}
@keyframes vs-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 12px 40px -8px rgba(212, 0, 0, 0.5); }
  50% { transform: scale(1.1); box-shadow: 0 16px 52px -6px rgba(212, 0, 0, 0.75); }
}

/* ---------- Service / claim cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  padding: 34px 30px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s, background 0.45s, box-shadow 0.45s;
  transform-style: preserve-3d;
  will-change: transform;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 59, 59, 0.1), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover {
  border-color: rgba(255, 59, 59, 0.35);
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 59, 59, 0.12);
}
.card__icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(212, 0, 0, 0.2), rgba(117, 1, 1, 0.08));
  border: 1px solid rgba(255, 59, 59, 0.26);
  margin-bottom: 22px;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s;
}
.card:hover .card__icon {
  transform: translateY(-4px) scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 28px -8px rgba(212, 0, 0, 0.5);
}
.card__icon svg { width: 26px; height: 26px; color: var(--red-bright); }
.card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 11px;
}
.card p { color: var(--muted); font-size: 14.5px; }
.card__num {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  transition: color 0.4s;
}
.card:hover .card__num { color: rgba(255, 59, 59, 0.18); }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.card__link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease-out); }
.card:hover .card__link svg { transform: translateX(5px); }

/* ---------- Process timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line-soft);
  z-index: 0;
}
.timeline__progress {
  position: absolute;
  top: 29px;
  left: 8%;
  height: 2px;
  width: 84%;
  background: var(--grad-red);
  box-shadow: 0 0 14px var(--red-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.6s var(--ease-out) 0.3s;
  z-index: 0;
}
.timeline.is-in .timeline__progress { transform: scaleX(1); }
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.step__dot {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  background: var(--bg-2);
  border: 2px solid var(--line);
  color: var(--muted);
  transition: all 0.5s var(--ease-out);
}
.timeline.is-in .step__dot {
  background: var(--grad-red);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 7px rgba(212, 0, 0, 0.13), var(--shadow-red);
}
.timeline.is-in .step:nth-child(2) .step__dot { transition-delay: 0.15s; }
.timeline.is-in .step:nth-child(3) .step__dot { transition-delay: 0.5s; }
.timeline.is-in .step:nth-child(4) .step__dot { transition-delay: 0.85s; }
.timeline.is-in .step:nth-child(5) .step__dot { transition-delay: 1.2s; }
.step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.step p { color: var(--muted); font-size: 14px; max-width: 250px; margin-inline: auto; }

/* ---------- Feature checklist (Why Armada) ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.checklist { display: flex; flex-direction: column; gap: 16px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 20px 24px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, background 0.35s;
}
.check-item:hover {
  transform: translateX(9px);
  border-color: rgba(255, 59, 59, 0.32);
  background: var(--surface-2);
}
.check-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-red);
  box-shadow: 0 6px 18px -4px rgba(212, 0, 0, 0.55);
  margin-top: 2px;
}
.check-item__icon svg { width: 15px; height: 15px; color: #fff; }
.check-item h4 {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.check-item p { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* Highlight panel next to checklist */
.highlight-panel {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(36px, 4vw, 56px);
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212, 0, 0, 0.22), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  overflow: hidden;
}
.highlight-panel__logo {
  width: 130px;
  margin-bottom: 28px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}
.highlight-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
}
.highlight-panel h3 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.highlight-panel p { color: var(--muted); margin-bottom: 28px; }
.highlight-panel__big {
  position: absolute;
  bottom: -34px;
  right: -10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 150px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.028);
  letter-spacing: -0.04em;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card {
  position: relative;
  padding: 38px 28px 32px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  text-align: center;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}
.team-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 59, 59, 0.35);
  box-shadow: 0 26px 60px -18px rgba(0, 0, 0, 0.85);
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: radial-gradient(ellipse 90% 100% at 50% 0%, rgba(212, 0, 0, 0.16), transparent 75%);
  opacity: 0;
  transition: opacity 0.45s;
}
.team-card:hover::before { opacity: 1; }
.team-card__avatar {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(150deg, #a30303, #4d0101);
  border: 2px solid rgba(255, 59, 59, 0.4);
  box-shadow: 0 14px 36px -10px rgba(212, 0, 0, 0.5), inset 0 2px 6px rgba(255, 255, 255, 0.18);
  transition: transform 0.45s var(--ease-spring);
}
.team-card:hover .team-card__avatar { transform: scale(1.09) rotate(3deg); }
.team-card h3 {
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.team-card__role {
  display: inline-block;
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(212, 0, 0, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.25);
}
.team-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13.8px;
}

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; }
.testi-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
}
.lang-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  gap: 2px;
}
.lang-toggle button {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 9px 20px;
  border-radius: 999px;
  transition: all 0.3s var(--ease-out);
}
.lang-toggle button.is-active {
  background: var(--grad-red);
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(212, 0, 0, 0.55);
}
.testi-nav { display: flex; gap: 10px; }
.testi-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease-out);
}
.testi-nav button svg { width: 19px; height: 19px; color: var(--ink); }
.testi-nav button:hover {
  background: var(--grad-red);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}

.testi-viewport { overflow: hidden; margin: 0 -11px; }
.testi-track {
  display: flex;
  transition: transform 0.7s var(--ease-out);
  /* allow vertical page scroll to win; we only handle horizontal swipes in JS */
  touch-action: pan-y;
}
.testi-slide {
  flex: 0 0 50%;
  padding: 0 11px;
}
.testi-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 36px 34px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.testi-card:hover { border-color: rgba(255, 59, 59, 0.3); transform: translateY(-5px); }
.testi-card__quote {
  position: absolute;
  top: 18px;
  right: 26px;
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
  color: rgba(255, 59, 59, 0.12);
  pointer-events: none;
}
.testi-card .stars {
  color: #ffb01f;
  letter-spacing: 3.5px;
  font-size: 16px;
  margin-bottom: 18px;
}
.testi-card blockquote {
  flex: 1;
  color: #ccd3e2;
  font-size: 15px;
  line-height: 1.75;
}
.testi-card footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(150deg, #a30303, #4d0101);
  border: 1.5px solid rgba(255, 59, 59, 0.4);
}
.testi-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.testi-card__meta { font-size: 12.5px; color: var(--muted-2); }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 32px;
}
.testi-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: all 0.35s var(--ease-out);
}
.testi-dots button.is-active {
  width: 30px;
  background: var(--grad-red);
  box-shadow: 0 0 12px var(--red-glow);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
}
.faq-item.is-open {
  border-color: rgba(255, 59, 59, 0.35);
  background: var(--surface-2);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: clamp(15.5px, 1.5vw, 17.5px);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color 0.25s;
}
.faq-item__q:hover { color: var(--red-bright); }
.faq-item__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: all 0.4s var(--ease-out);
}
.faq-item__icon svg { width: 15px; height: 15px; transition: transform 0.4s var(--ease-out); }
.faq-item.is-open .faq-item__icon {
  background: var(--grad-red);
  border-color: transparent;
  box-shadow: 0 6px 16px -4px rgba(212, 0, 0, 0.6);
}
.faq-item.is-open .faq-item__icon svg { transform: rotate(135deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-out);
}
.faq-item__a-inner {
  padding: 0 28px 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.faq-item__a-inner ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item__a-inner li {
  position: relative;
  padding-left: 22px;
}
.faq-item__a-inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--red);
  transform: rotate(45deg);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 80px);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 50% -10%, rgba(212, 0, 0, 0.38), transparent 60%),
    linear-gradient(170deg, #150202, #0a0e1a 70%);
  border: 1px solid rgba(255, 59, 59, 0.25);
  box-shadow: 0 40px 100px -30px rgba(212, 0, 0, 0.3);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 25%, transparent 75%);
  pointer-events: none;
}
.cta-band__logo {
  width: 96px;
  margin: 0 auto 26px;
  filter: drop-shadow(0 0 30px rgba(212, 0, 0, 0.45));
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 880px;
  margin-inline: auto;
}
.cta-band h2 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cta-band p {
  margin: 20px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 16.5px;
}
.cta-band__actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-band__note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .form-field--full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field label b { color: var(--red-bright); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.form-field select { cursor: pointer; }
.form-field select option { background: var(--bg-3); color: var(--ink); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted-2); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: rgba(255, 59, 59, 0.6);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(212, 0, 0, 0.14);
}
.form-field input.is-error, .form-field select.is-error {
  border-color: rgba(255, 80, 80, 0.8);
  box-shadow: 0 0 0 4px rgba(212, 0, 0, 0.18);
}
.form-msg {
  display: none;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.6;
}
.form-msg.is-show { display: block; animation: fade-up 0.5s var(--ease-out); }
.form-msg--ok {
  background: rgba(34, 170, 90, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #9fe8bd;
}
.form-msg--err {
  background: rgba(212, 0, 0, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.35);
  color: #ffb9b9;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: #04060c;
  border-top: 1px solid var(--line-soft);
  padding: clamp(60px, 7vw, 96px) 0 0;
  overflow: hidden;
}
.footer__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 0, 0, 0.1), transparent 65%);
  pointer-events: none;
}
.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(36px, 5vw, 70px);
  padding-bottom: 56px;
}
.footer__brand img { height: 56px; width: auto; margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 14.5px; max-width: 320px; }
.footer__tagline {
  margin-top: 18px !important;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink) !important;
  text-transform: uppercase;
  font-size: 13.5px !important;
  letter-spacing: 0.08em;
}
.footer__tagline em { color: var(--red-bright); font-style: normal; }
.footer__social {
  display: flex;
  gap: 11px;
  margin-top: 24px;
}
.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  transition: all 0.3s var(--ease-out);
}
.footer__social a svg { width: 18px; height: 18px; color: var(--muted); transition: color 0.3s; }
.footer__social a:hover {
  background: var(--grad-red);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}
.footer__social a:hover svg { color: #fff; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 13px; }
.footer__col a {
  position: relative;
  color: var(--muted);
  font-size: 14.5px;
  transition: color 0.25s, padding-left 0.3s var(--ease-out);
}
.footer__col a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  width: 14px;
  height: 2px;
  background: var(--red-bright);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out);
}
.footer__col a:hover { color: #fff; padding-left: 22px; }
.footer__col a:hover::before { transform: translateY(-50%) scaleX(1); }
.footer__contact { display: flex; flex-direction: column; gap: 16px; }
.footer__contact-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14.5px;
}
.footer__contact-item svg {
  width: 17px;
  height: 17px;
  color: var(--red-bright);
  flex-shrink: 0;
  margin-top: 4px;
}
.footer__contact-item a:hover { color: var(--red-bright); }
.footer__contact-item b { color: var(--ink); font-weight: 600; }

.footer__bar {
  position: relative;
  border-top: 1px solid var(--line-soft);
  padding: 24px 0;
}
.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted-2);
}
.footer__bar-inner a { color: var(--muted); transition: color 0.25s; }
.footer__bar-inner a:hover { color: var(--red-bright); }
.footer__watermark {
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 12.5vw, 190px);
  line-height: 0.86;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  pointer-events: none;
  user-select: none;
  margin-top: 14px;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 4500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-red);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: all 0.4s var(--ease-out);
}
.to-top.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-5px); }
.to-top svg { width: 20px; height: 20px; color: #fff; }

/* ---------- Sub-page hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(60px, 9vw, 110px)) 0 clamp(56px, 7vw, 90px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 70% at 50% -10%, rgba(117, 1, 1, 0.4) 0%, transparent 65%),
    var(--bg);
}
.page-hero__inner { position: relative; z-index: 2; text-align: center; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--muted); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--red-bright); }
.breadcrumb svg { width: 12px; height: 12px; color: var(--red); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-inline: auto;
}
.page-hero h1 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.page-hero p {
  margin: 22px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17.5px);
}

/* ---------- Claim detail rows (claims page) ---------- */
.claim-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.claim-row:last-child { border-bottom: none; }
.claim-row__visual {
  position: relative;
  border-radius: var(--r-lg);
  aspect-ratio: 1.25;
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 80% 80% at 50% 30%, rgba(212, 0, 0, 0.16), transparent 65%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}
.claim-row__visual svg {
  width: 34%;
  height: auto;
  color: var(--red-bright);
  filter: drop-shadow(0 16px 40px rgba(212, 0, 0, 0.4));
}
.claim-row__visual .claim-row__bignum {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 76px;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}
.claim-row__body .kicker { margin-bottom: 12px; }
.claim-row__body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.claim-row__body p { color: var(--muted); font-size: 15.5px; margin-bottom: 14px; }
.claim-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 26px;
}
.claim-row__tags span {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  transition: all 0.3s;
}
.claim-row__tags span:hover {
  color: #fff;
  border-color: rgba(255, 59, 59, 0.45);
  background: rgba(212, 0, 0, 0.12);
}
.claim-row--flip .claim-row__visual { order: 2; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
}
.contact-aside { display: flex; flex-direction: column; gap: 18px; }
.contact-tile {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 26px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}
.contact-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 59, 59, 0.35);
}
.contact-tile__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(212, 0, 0, 0.2), rgba(117, 1, 1, 0.08));
  border: 1px solid rgba(255, 59, 59, 0.26);
}
.contact-tile__icon svg { width: 22px; height: 22px; color: var(--red-bright); }
.contact-tile h3 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.contact-tile p, .contact-tile a.big {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.contact-tile a.big:hover { color: var(--red-bright); }
.contact-tile small { display: block; margin-top: 5px; color: var(--muted); font-size: 13.5px; }

.form-shell {
  padding: clamp(28px, 3.6vw, 48px);
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.form-shell > h2 {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.2vw, 27px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-shell > p { color: var(--muted); font-size: 14.5px; margin-bottom: 28px; }

.map-shell {
  margin-top: clamp(48px, 6vw, 80px);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  box-shadow: var(--shadow-card);
}
.map-shell iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9) hue-rotate(180deg) saturate(0.4);
}

/* ---------- Reveal-on-scroll system ---------- */
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
}
[data-reveal='up'] { transform: translateY(44px); }
[data-reveal='down'] { transform: translateY(-44px); }
[data-reveal='left'] { transform: translateX(-52px); }
[data-reveal='right'] { transform: translateX(52px); }
[data-reveal='scale'] { transform: scale(0.88); }
[data-reveal='blur'] { filter: blur(10px); transform: translateY(24px); }
[data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(36px);
}
[data-reveal-stagger].is-in > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 0.09s; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 0.18s; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 0.27s; }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 0.36s; }
[data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: 0.45s; }
[data-reveal-stagger].is-in > *:nth-child(7) { transition-delay: 0.54s; }
[data-reveal-stagger].is-in > *:nth-child(8) { transition-delay: 0.63s; }
[data-reveal-stagger].is-in > *:nth-child(9) { transition-delay: 0.72s; }

/* ---------- Responsive ---------- */
/* Intermediate desktop band: keep the hero float chips from overhanging the
   shield card into the hero's clipped edge before the layout goes single-column. */
@media (min-width: 1101px) and (max-width: 1320px) {
  .float-chip--1 { left: 2%; }
  .float-chip--2 { right: 0; }
  .float-chip--4 { right: 10%; }
}
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta .btn { display: none; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub, .hero__title { margin-inline: auto; }
  .hero__actions, .hero__proof { justify-content: center; }
  .hero__visual { margin-top: 26px; }
  .float-chip--1 { left: 0; }
  .float-chip--2 { right: 0; }
  .float-chip--3 { left: 2%; }
  .cards-grid, .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 22px; }
  .timeline::before, .timeline__progress { display: none; }
  .feature-split { grid-template-columns: 1fr; }
  .versus { grid-template-columns: 1fr; }
  .versus__vs { justify-self: center; }
  .testi-slide { flex: 0 0 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .claim-row, .claim-row--flip { grid-template-columns: 1fr; }
  .claim-row--flip .claim-row__visual { order: 0; }
  .claim-row__visual { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: calc(100% - 36px); }
  .cards-grid, .cards-grid--4, .stats, .team-grid, .timeline, .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-field--full { grid-column: auto; }
  .hero { padding-top: calc(var(--nav-h) + 16px); }
  .hero__proof-sep { display: none; }
  /* Collapse the phone label but keep a full ~46px tap target around the icon */
  .nav__phone span { display: none; }
  .nav__phone {
    width: 46px;
    height: 46px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
  }
  .footer__grid { grid-template-columns: 1fr; }
  .float-chip { display: none; }
  .btn { padding: 15px 26px; font-size: 13.5px; }
  .to-top { bottom: 18px; right: 18px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero__title .word > span { transform: none; animation: none; }
  .hero__sub, .hero__actions, .hero__proof, .hero__visual, .hero__scroll { opacity: 1; animation: none; }
  .grain { display: none; }
}
