/* =========================================================
   ClaimShielded — Custom design system
   ========================================================= */

:root {
  --bg: #FCFCFD;
  --section: #EEF0FF;
  --text: #0F0F2E;
  --primary: #6366F1;
  --primary-700: #4F46E5;
  --primary-50: rgba(99, 102, 241, 0.08);
  --secondary: #EC4899;
  --secondary-700: #DB2777;
  --highlight: #22D3EE;
  --muted: #71717A;
  --border: rgba(15, 15, 46, 0.08);
  --shadow-sm: 0 1px 2px rgba(15, 15, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 15, 46, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 15, 46, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; display: block; height: auto; }

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-700); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { color: rgba(15, 15, 46, 0.78); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Top utility bar
   ========================================================= */
.topbar {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  font-size: 0.84rem;
  padding: 10px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.9); }
.topbar a:hover { color: var(--highlight); }
.topbar .info-group { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .info-group span::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--highlight); border-radius: 50%; margin-right: 8px; transform: translateY(-2px); }
.topbar .badge-pill {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 252, 253, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: var(--text);
}
.brand:hover { color: var(--text); }
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  transition: transform .25s ease, filter .25s ease;
}
.brand:hover .brand-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 14px rgba(99, 102, 241, 0.25));
}
.site-footer .brand-logo {
  height: 48px;
  max-width: 240px;
}
@media (max-width: 720px) {
  .brand-logo { height: 36px; }
  .site-footer .brand-logo { height: 40px; }
}

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all .2s ease;
}
.nav-links a:hover { background: var(--primary-50); color: var(--primary-700); }
.nav-links a.active { color: var(--primary-700); background: var(--primary-50); }

.nav-cta { display: flex; gap: 12px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary { background: var(--secondary); color: #fff; box-shadow: 0 10px 20px rgba(236, 72, 153, 0.25); }
.btn-primary:hover { background: var(--secondary-700); color: #fff; transform: translateY(-1px); box-shadow: 0 14px 30px rgba(236, 72, 153, 0.32); }
.btn-secondary { background: var(--text); color: #fff; }
.btn-secondary:hover { background: #1A1A4D; color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid rgba(15,15,46,0.12); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-700); }
.btn-ghost { background: var(--primary-50); color: var(--primary-700); }
.btn-ghost:hover { background: rgba(99, 102, 241, 0.16); color: var(--primary-700); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--primary-50);
  border: 0; border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* =========================================================
   Hero (home)
   ========================================================= */
.hero {
  position: relative;
  padding: 70px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero .container { position: relative; z-index: 2; }

/* =========================================================
   Hero animated background — layered system
   1. Precision mesh that slowly drifts
   2. Two counter-rotating conic auroras
   3. SVG network graph with traveling data pulses
   4. Breathing glow nodes
   ========================================================= */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: -8%;
  background-image:
    linear-gradient(to right, rgba(99, 102, 241, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 102, 241, 0.09) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 65% 70% at 50% 40%, #000 25%, transparent 82%);
          mask-image: radial-gradient(ellipse 65% 70% at 50% 40%, #000 25%, transparent 82%);
  animation: hero-mesh-drift 50s linear infinite;
}
@keyframes hero-mesh-drift {
  to { background-position: 56px 56px; }
}

.hero-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.hero-aurora-1 {
  width: 680px; height: 680px;
  top: -220px; right: -200px;
  background: conic-gradient(from 0deg,
    rgba(99, 102, 241, 0.55),
    rgba(34, 211, 238, 0.35),
    rgba(236, 72, 153, 0.55),
    rgba(99, 102, 241, 0.55));
  opacity: 0.55;
  animation: hero-aurora-spin 34s linear infinite;
}
.hero-aurora-2 {
  width: 580px; height: 580px;
  bottom: -200px; left: -160px;
  background: conic-gradient(from 200deg,
    rgba(236, 72, 153, 0.45),
    rgba(99, 102, 241, 0.4),
    rgba(34, 211, 238, 0.35),
    rgba(236, 72, 153, 0.45));
  opacity: 0.45;
  animation: hero-aurora-spin 46s linear infinite reverse;
}
@keyframes hero-aurora-spin {
  to { transform: rotate(360deg); }
}

.hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.hero-network .hl { opacity: 0.55; stroke-dasharray: 4 4; }
.hero-network .hp {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 28 1000;
  animation: hero-pulse-flow var(--dur, 12s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes hero-pulse-flow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -1028; }
}

.hero-network .hn {
  animation: hero-node-breathe 4.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.hero-network .hn-2 { animation-delay: -0.9s; }
.hero-network .hn-3 { animation-delay: -1.8s; }
.hero-network .hn-4 { animation-delay: -2.4s; }
.hero-network .hn-5 { animation-delay: -3.1s; }
@keyframes hero-node-breathe {
  0%, 100% { transform: scale(1);    opacity: 0.85; }
  50%      { transform: scale(1.55); opacity: 1;    }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh,
  .hero-aurora,
  .hero-network .hp,
  .hero-network .hn { animation: none !important; }
}
@media (max-width: 720px) {
  .hero-aurora-1 { width: 420px; height: 420px; top: -160px; right: -120px; }
  .hero-aurora-2 { width: 360px; height: 360px; bottom: -140px; left: -100px; }
  .hero-mesh { background-size: 44px 44px; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow .dot { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; box-shadow: 0 0 0 4px rgba(236,72,153,0.18); }

.hero h1 .grad {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(15,15,46,0.72);
  margin: 22px 0 32px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 38px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 0.88rem; color: var(--muted);
}
.hero-trust strong { color: var(--text); font-weight: 700; font-size: 1.4rem; display: block; }

.hero-visual {
  position: relative;
}
.hero-visual .image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  border: 8px solid #fff;
}
.hero-visual .image-frame img { width: 100%; height: 540px; object-fit: cover; }
.hero-visual .float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex; gap: 14px; align-items: center;
}
.hero-visual .float-card-1 { bottom: -24px; left: -24px; min-width: 240px; }
.hero-visual .float-card-2 { top: 30px; right: -28px; min-width: 220px; }
.float-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 800; color: #fff;
  font-family: var(--font-display);
}
.float-icon.green { background: linear-gradient(135deg, #10B981, #22D3EE); }
.float-icon.pink { background: linear-gradient(135deg, var(--secondary), #F472B6); }
.float-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.float-value { font-size: 1.05rem; font-weight: 700; color: var(--text); }

/* =========================================================
   Section base
   ========================================================= */
section.block { padding: 100px 0; position: relative; }
section.block.tinted { background: var(--section); }
section.block.dark { background: var(--text); color: rgba(255,255,255,0.9); }
section.block.dark h2, section.block.dark h3 { color: #fff; }
section.block.dark p { color: rgba(255,255,255,0.7); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; font-size: 1.08rem; }
.section-head.left { text-align: left; margin-left: 0; }

/* =========================================================
   Stats strip
   ========================================================= */
.stats-strip {
  background: linear-gradient(135deg, var(--text), #1A1A4D 70%, var(--primary-700));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin-top: -50px;
  position: relative; z-index: 5;
  display: grid; grid-template-columns: repeat(4, 1fr);
  color: #fff;
  box-shadow: 0 30px 70px rgba(15,15,46,0.25);
}
.stats-strip .stat { text-align: center; border-right: 1px solid rgba(255,255,255,0.08); padding: 8px 16px; }
.stats-strip .stat:last-child { border-right: 0; }
.stats-strip .stat-value {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800;
  background: linear-gradient(90deg, #fff, var(--highlight));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-strip .stat-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* =========================================================
   Feature cards
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card .img-wrap { height: 200px; overflow: hidden; }
.feature-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.feature-card:hover .img-wrap img { transform: scale(1.06); }
.feature-card .body { padding: 28px; flex: 1; }
.feature-card .tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-weight: 600; color: var(--primary-700);
  font-size: 0.92rem;
}
.feature-card .arrow::after { content: '→'; transition: transform .2s ease; }
.feature-card:hover .arrow::after { transform: translateX(4px); }

/* =========================================================
   Two-col block (alternating)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse > .split-text { order: 2; }
.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.split-image img { width: 100%; height: 520px; object-fit: cover; }
.split-image--contain {
  background: linear-gradient(135deg, #EEF0FF 0%, #FCFCFD 100%);
  aspect-ratio: 16 / 10;
  height: auto;
}
.split-image--contain img { height: auto; aspect-ratio: 16 / 10; object-fit: contain; }
.split-text .badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(34, 211, 238, 0.15);
  color: #0891B2;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.split-text h2 { margin-bottom: 18px; }
.split-text p { font-size: 1.05rem; margin-bottom: 18px; }
.feature-list { list-style: none; padding: 0; margin-top: 22px; }
.feature-list li {
  padding: 12px 0 12px 38px;
  position: relative;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
}
.feature-list li::after {
  content: '✓';
  position: absolute; left: 0; top: 14px;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
}

/* =========================================================
   Process / steps
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 26px;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 14px;
}
.process-step h4 { margin-bottom: 10px; font-size: 1.1rem; }
.process-step p { font-size: 0.94rem; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.testimonial-card .stars { color: #FACC15; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card .quote { font-size: 1.02rem; line-height: 1.65; flex: 1; }
.testimonial-card .author {
  display: flex; gap: 14px; align-items: center;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
}
.testimonial-card .author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card .author .name { font-weight: 700; color: var(--text); }
.testimonial-card .author .role { font-size: 0.84rem; color: var(--muted); }

/* =========================================================
   CTA strip
   ========================================================= */
.cta-strip {
  position: relative;
  padding: 90px 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-700), var(--secondary));
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/images/cta-image.jpg') center/cover;
  opacity: 0.18;
  mix-blend-mode: overlay;
}
.cta-strip h2 { color: #fff; max-width: 720px; margin: 0 auto 16px; }
.cta-strip p { color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-strip .btn { position: relative; z-index: 1; }
.cta-strip .btn-primary { background: #fff; color: var(--secondary-700); box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.cta-strip .btn-primary:hover { background: #fff; color: var(--secondary-700); transform: translateY(-2px); }
.cta-strip .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-strip .btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }

/* =========================================================
   Industry tiles
   ========================================================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.industry-tile {
  position: relative;
  height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.industry-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.industry-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,15,46,0.92));
}
.industry-tile .meta {
  position: absolute; left: 24px; right: 24px; bottom: 22px;
  color: #fff; z-index: 2;
}
.industry-tile .meta h3 { color: #fff; margin-bottom: 6px; font-size: 1.25rem; }
.industry-tile .meta p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.industry-tile:hover img { transform: scale(1.08); }

/* =========================================================
   Pricing
   ========================================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(99,102,241,0.18);
  transform: scale(1.03);
  background: linear-gradient(180deg, #fff, #FAFAFE);
}
.price-card.featured .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-card .tier { font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--secondary); }
.price-card .price { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; margin: 18px 0 6px; letter-spacing: -0.03em; }
.price-card .price small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card p.tag-desc { color: var(--muted); margin-bottom: 26px; }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.price-features li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(15,15,46,0.85);
}
.price-features li::before {
  content: '';
  position: absolute; left: 0; top: 13px;
  width: 20px; height: 20px;
  background: var(--primary-50);
  border-radius: 50%;
}
.price-features li::after {
  content: '✓';
  position: absolute; left: 0; top: 13px;
  width: 20px; height: 20px;
  display: grid;
  place-items: center;
  color: var(--primary-700);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1;
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--primary-700);
  font-weight: 300;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: var(--primary); }
.faq-item .answer { padding: 0 28px 24px; color: rgba(15,15,46,0.75); line-height: 1.7; }

/* =========================================================
   Page hero (sub-pages)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(99,102,241,0.12), transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .head { max-width: 760px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: 18px 0 18px; }
.page-hero p { font-size: 1.12rem; }
.breadcrumbs { font-size: 0.86rem; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary-700); }

/* =========================================================
   Contact form
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.4), transparent 60%);
}
.contact-info-card h2 { color: #fff; margin-bottom: 14px; }
.contact-info-card p { color: rgba(255,255,255,0.72); }
.contact-info-card .info-item {
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 16px; align-items: flex-start;
  position: relative; z-index: 1;
}
.contact-info-card .info-item:last-child { border-bottom: 0; }
.contact-info-card .info-item .icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.contact-info-card .info-item .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); }
.contact-info-card .info-item .value { color: #fff; font-weight: 500; }
.contact-info-card .info-item a { color: #fff; }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-weight: 600; font-size: 0.88rem;
  color: var(--text); margin-bottom: 8px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-50);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.alert-success {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(34, 211, 238, 0.14);
  color: #0E7490;
  font-weight: 500;
  margin-bottom: 18px;
  border-left: 3px solid var(--highlight);
}
.error-text { color: var(--secondary-700); font-size: 0.84rem; margin-top: 4px; }

/* =========================================================
   Legal pages
   ========================================================= */
.legal-page { padding: 80px 0; }
.legal-page .legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
}
.legal-toc { position: sticky; top: 100px; align-self: start; }
.legal-toc h4 { margin-bottom: 14px; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.legal-toc ul { list-style: none; padding: 0; border-left: 1.5px solid var(--border); }
.legal-toc li a {
  display: block; padding: 8px 16px;
  color: var(--muted); font-size: 0.92rem;
  border-left: 1.5px solid transparent;
  margin-left: -1.5px;
}
.legal-toc li a:hover, .legal-toc li a.active { color: var(--primary-700); border-left-color: var(--primary); }
.legal-body h2 { margin: 36px 0 14px; font-size: 1.6rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { margin: 24px 0 10px; font-size: 1.15rem; }
.legal-body p, .legal-body li { line-height: 1.8; color: rgba(15,15,46,0.78); font-size: 1rem; }
.legal-body ul { padding-left: 22px; margin: 12px 0; }
.legal-body li { margin-bottom: 6px; }
.legal-body strong { color: var(--text); }
.legal-meta { padding: 18px 22px; background: var(--section); border-radius: var(--radius-sm); margin-bottom: 28px; color: var(--muted); font-size: 0.9rem; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.25), transparent 60%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  position: relative;
  margin-bottom: 50px;
}
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-col h4 { color: #fff; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.footer-col li a:hover { color: var(--highlight); }

.newsletter input {
  width: 100%; padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-pill);
  color: #fff;
  font: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter button {
  margin-top: 10px;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font: inherit;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  position: relative;
}
.footer-bottom a { color: rgba(255,255,255,0.7); margin-left: 18px; }
.footer-bottom a:hover { color: var(--highlight); }
/* =========================================================
   Misc
   ========================================================= */
/* =========================================================
   Ambient section backgrounds — simple, smooth, subtle
   Drop the .has-ambient class on any <section> to animate.
   Add .ambient-cyan for the alternate color emphasis.
   ========================================================= */
.has-ambient { overflow: hidden; }
.has-ambient > .container { position: relative; z-index: 1; }
.has-ambient::before,
.has-ambient::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.has-ambient::before {
  width: 520px; height: 520px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.28), transparent 70%);
  animation: ambient-drift-a 28s ease-in-out infinite;
}
.has-ambient::after {
  width: 460px; height: 460px;
  bottom: -200px; right: -140px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.22), transparent 70%);
  animation: ambient-drift-b 36s ease-in-out infinite;
}
.has-ambient.ambient-cyan::before {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.30), transparent 70%);
}
.has-ambient.ambient-cyan::after {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22), transparent 70%);
  animation-duration: 42s;
}

@keyframes ambient-drift-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(70px, 40px, 0) scale(1.10); }
}
@keyframes ambient-drift-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-60px, -50px, 0) scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .has-ambient::before,
  .has-ambient::after { animation: none; }
}
@media (max-width: 720px) {
  .has-ambient::before { width: 340px; height: 340px; filter: blur(70px); }
  .has-ambient::after  { width: 300px; height: 300px; filter: blur(70px); }
}

/* =========================================================
   Cinematic video section
   ========================================================= */
.video-section {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  isolation: isolate;
  padding: 110px 0;
}
.video-section .video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.video-section .video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(115%) contrast(105%);
}
.video-section .video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(99, 102, 241, 0.55), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.40), transparent 55%),
    linear-gradient(135deg, rgba(15, 15, 46, 0.88) 0%, rgba(15, 15, 46, 0.62) 55%, rgba(79, 70, 229, 0.55) 100%);
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(135deg, transparent, #000 30%, #000 70%, transparent);
          mask-image: linear-gradient(135deg, transparent, #000 30%, #000 70%, transparent);
}
.video-section .container { position: relative; z-index: 2; }

.video-section .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.video-section .eyebrow .dot { background: var(--highlight); box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.25); }
.video-section h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  max-width: 880px;
  margin: 0 0 22px;
}
.video-section h2 .grad-light {
  background: linear-gradient(90deg, #fff, var(--highlight));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.video-section p.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  max-width: 640px;
  margin: 0 0 36px;
  line-height: 1.7;
}
.video-section .video-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 60px;
}
.video-section .btn-primary {
  background: #fff; color: var(--text);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}
.video-section .btn-primary:hover { background: #fff; color: var(--primary-700); transform: translateY(-2px); }
.video-section .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.video-section .btn-outline:hover { color: #fff; background: rgba(255, 255, 255, 0.08); border-color: #fff; }

.video-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
}
.video-kpis .item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform .25s ease, border-color .25s ease;
}
.video-kpis .item:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.3); }
.video-kpis .item .v {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(90deg, #fff, var(--highlight));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.video-kpis .item .l {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.video-kpis .item .d {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .video-section { min-height: 560px; padding: 70px 0; }
  .video-kpis { grid-template-columns: 1fr; }
}

/* Logo marquee */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-set {
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 0 35px;
  flex-shrink: 0;
}
.marquee-logo {
  display: grid;
  place-items: center;
  height: 60px;
  min-width: 110px;
}
.marquee-logo img {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity .2s ease, transform .25s ease;
}
.marquee-logo:hover img { opacity: 1; transform: scale(1.06); }

@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@media (max-width: 720px) {
  .marquee-track { animation-duration: 28s; }
  .marquee-set { gap: 44px; padding: 0 22px; }
  .marquee-logo { height: 48px; min-width: 90px; }
  .marquee-logo img { height: 30px; max-width: 120px; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .feature-grid, .price-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stats-strip .stat:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid, .split, .contact-grid, .legal-page .legal-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > .split-text { order: 1; }
  .price-card.featured { transform: none; }
  .legal-toc { position: relative; top: 0; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 18px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }
  .nav-cta .btn-outline { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 40px 0 60px; }
  section.block { padding: 60px 0; }
  .feature-grid, .testimonial-grid, .price-grid, .process-grid, .industry-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 30px 20px; margin-top: -30px; }
  .stats-strip .stat-value { font-size: 1.9rem; }
  .cta-strip { padding: 50px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-visual .image-frame img { height: 360px; }
  .hero-visual .float-card-1, .hero-visual .float-card-2 { display: none; }
  .contact-info-card, .contact-form-card { padding: 28px; }
  .topbar .info-group { gap: 12px; font-size: 0.78rem; }
  .topbar .info-group span { display: none; }
  .topbar .info-group span:first-child, .topbar .info-group span:last-child { display: inline; }
}
