/* ===========================================================
   SYNTEGRA — production stylesheet
   Mobile-first. Breakpoints: 640 / 768 / 1024 / 1280
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #191732;
  --navy-2: #241f47;
  --navy-3: #2d2757;
  --green: #4DB79A;
  --green-2: #6cd0b4;
  --green-soft: rgba(77, 183, 154, 0.12);
  --liftin-blue: #43bccf;
  --liftin-blue-2: #6fd4e4;
  --ink: #0f0e1f;
  --muted: #6b6884;
  --line: rgba(25, 23, 50, 0.08);
  --cream: #faf9f7;
  --card: #ffffff;

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-gentle: cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1240px;
  --pad-x: 20px;
  --nav-h: 64px;
}

@media (min-width: 768px) {
  :root { --pad-x: 32px; --nav-h: 72px; }
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

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

::selection { background: var(--green); color: var(--navy); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 247, 0.85);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth);
}
.nav.scrolled { box-shadow: 0 12px 40px -16px rgba(25,23,50,0.18); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  min-height: var(--nav-h);
}
.nav-brand img {
  height: 26px;
  width: auto;
  transition: transform 0.5s var(--ease-smooth);
}
@media (min-width: 768px) {
  .nav-brand img { height: 30px; }
  .nav-inner { padding: 16px var(--pad-x); }
}
.nav-brand:hover img { transform: translateY(-1px); }

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
@media (min-width: 1280px) {
  .nav-links { gap: 32px; }
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.4s var(--ease-smooth);
}
.nav-links a:hover { color: var(--green); }
.nav-links a.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.5s var(--ease-smooth);
}
.nav-links a.nav-cta:hover {
  background: var(--green);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(77,183,154,0.5);
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  z-index: 110;
}
.nav-toggle:hover { border-color: var(--green); background: rgba(77,183,154,0.08); }
.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-smooth), opacity 0.3s var(--ease-smooth), background 0.4s var(--ease-smooth);
  transform-origin: center;
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

/* Hamburger -> X when menu open */
body.menu-open .nav-toggle { border-color: rgba(255,255,255,0.18); }
body.menu-open .nav-toggle .bar { background: #fff; }
body.menu-open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.menu-open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================================
   MOBILE MENU — full-screen overlay
   =========================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: linear-gradient(160deg, var(--navy) 0%, #0f0e1f 100%);
  color: #fff;
  padding: calc(var(--nav-h) + 32px) var(--pad-x) 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.45s var(--ease-smooth), transform 0.55s var(--ease-smooth), visibility 0s linear 0.45s;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(77,183,154,0.18), transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(67,188,207,0.12), transparent 55%);
  pointer-events: none;
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.45s var(--ease-smooth), transform 0.55s var(--ease-smooth), visibility 0s linear 0s;
}
@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

.mobile-menu-inner {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.m-close {
  position: absolute;
  top: 14px;
  right: var(--pad-x);
  z-index: 5;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  opacity: 0;
  transform: scale(0.85) rotate(-90deg);
}
body.menu-open .m-close {
  animation: m-close-in 0.45s var(--ease-smooth) 0.05s forwards;
}
@keyframes m-close-in {
  to { opacity: 1; transform: scale(1) rotate(0); }
}
.m-close:hover, .m-close:focus-visible {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
  transform: rotate(90deg);
  outline: none;
}

.m-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.35s var(--ease-smooth), padding-left 0.35s var(--ease-smooth);
  opacity: 0;
  transform: translateY(12px);
}
body.menu-open .m-link {
  animation: m-link-in 0.55s var(--ease-smooth) forwards;
}
body.menu-open .m-link:nth-child(1) { animation-delay: 0.10s; }
body.menu-open .m-link:nth-child(2) { animation-delay: 0.16s; }
body.menu-open .m-link:nth-child(3) { animation-delay: 0.22s; }
body.menu-open .m-link:nth-child(4) { animation-delay: 0.28s; }
body.menu-open .m-link:nth-child(5) { animation-delay: 0.34s; }
@keyframes m-link-in {
  to { opacity: 1; transform: translateY(0); }
}
.m-link:hover, .m-link:focus-visible {
  color: var(--green-2);
  padding-left: 10px;
  outline: none;
}
.m-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  width: 24px;
  flex-shrink: 0;
}

.m-cta {
  display: block;
  margin-top: 24px;
  padding: 18px 28px;
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  text-align: center;
  transition: transform 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth);
  opacity: 0;
  transform: translateY(12px);
}
body.menu-open .m-cta {
  animation: m-link-in 0.55s var(--ease-smooth) 0.42s forwards;
}
.m-cta:hover { background: var(--green-2); transform: translateY(-2px); }

.m-meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
}
body.menu-open .m-meta {
  animation: m-link-in 0.55s var(--ease-smooth) 0.5s forwards;
}
.m-meta a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.m-meta a:hover { color: var(--green-2); }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.5s var(--ease-smooth);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .btn { padding: 16px 32px; font-size: 15px; }
}
.btn-primary { background: var(--green); color: var(--navy); }
.btn-primary:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px rgba(77,183,154,0.55);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.btn-link {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
  transition: all 0.4s var(--ease-smooth);
}
.btn-link:hover { color: var(--green); border-color: var(--green); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 90px 0 110px; } }
@media (min-width: 1024px) { .hero { padding: 110px 0 130px; } }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(77,183,154,0.18), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(77,183,154,0.10), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(77,183,154,0.12);
  border: 1px solid rgba(77,183,154,0.35);
  border-radius: 999px;
  color: var(--green-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .hero-eyebrow { font-size: 12px; margin-bottom: 40px; }
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
}
.hero-title {
  font-size: clamp(30px, 6.5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 40px;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .hero-title { margin-bottom: 48px; }
}
.hero-title em { font-style: normal; color: var(--green); }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .hero-sub { font-size: 18px; margin-bottom: 40px; }
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Platform visual (core + orbits) */
.platform-viz {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 768px) { .platform-viz { max-width: 460px; } }

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: orbit-rotate 40s linear infinite;
}
.orbit.o2 { inset: 14%; border-color: rgba(77,183,154,0.12); animation-duration: 30s; animation-direction: reverse; }
.orbit.o3 { inset: 28%; border-color: rgba(255,255,255,0.06); animation-duration: 22s; }
.orbit.o4 { inset: 42%; border-color: rgba(77,183,154,0.15); animation-duration: 14s; animation-direction: reverse; }
@keyframes orbit-rotate { to { transform: rotate(360deg); } }

.core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 30% 30%, #3d3670, #191732 70%);
  border: 1.5px solid rgba(77,183,154,0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow:
    0 0 80px rgba(77,183,154,0.35),
    inset 0 0 40px rgba(77,183,154,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  animation: core-pulse 4s var(--ease-gentle) infinite;
  z-index: 3;
  padding: 8px;
}
.core small {
  display: block;
  font-size: clamp(8px, 1.1vw, 11px);
  letter-spacing: 2px;
  color: var(--green);
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.4;
}
@keyframes core-pulse {
  0%, 100% {
    box-shadow: 0 0 80px rgba(77,183,154,0.35), inset 0 0 40px rgba(77,183,154,0.12), inset 0 0 0 1px rgba(255,255,255,0.05);
    border-color: rgba(77,183,154,0.5);
  }
  50% {
    box-shadow: 0 0 120px rgba(77,183,154,0.55), inset 0 0 55px rgba(77,183,154,0.22), inset 0 0 0 1px rgba(255,255,255,0.08);
    border-color: rgba(77,183,154,0.8);
  }
}
.core-symbol {
  width: 56%;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(77,183,154,0.35));
  animation: core-symbol-breathe 5s ease-in-out infinite;
}
@keyframes core-symbol-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.core-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(77,183,154,0.3);
  z-index: 2;
  animation: ring-pulse 3s ease-out infinite;
}
.core-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--green);
  z-index: 2;
  animation: pulse-out 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-out {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.9); opacity: 0; }
}
@keyframes ring-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.7; }
}

.product-node {
  position: absolute;
  z-index: 2;
}
.product-node .node-inner {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 8px 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: node-float 6s var(--ease-gentle) infinite;
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
  .product-node .node-inner { padding: 10px 14px; font-size: 12px; }
}
.product-node .node-inner .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: dot-blink 2s ease-in-out infinite;
}
.product-node.live .node-inner {
  background: rgba(77,183,154,0.14);
  border-color: rgba(77,183,154,0.5);
}
.product-node.pending .node-inner {
  background: rgba(255,255,255,0.03);
  border-style: dashed;
  color: rgba(255,255,255,0.55);
}
.product-node.pending .dot {
  background: rgba(255,255,255,0.3);
  box-shadow: none;
  animation: none;
}
@keyframes node-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-6px); }
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* node positions — polar (angle, radius) → cartesian percentages of square viz container.
   Radius ~38% of viz width. cos/sin precomputed:
   p1 -30°: ( 0.866, -0.500) → ( 32.9%, -19.0%)
   p2  60°: ( 0.500,  0.866) → ( 19.0%,  32.9%)
   p3 150°: (-0.866,  0.500) → (-32.9%,  19.0%)
   p4 240°: (-0.500, -0.866) → (-19.0%, -32.9%) */
.product-node.p1 { left: 82.9%; top: 31.0%; }
.product-node.p2 { left: 69.0%; top: 82.9%; }
.product-node.p3 { left: 17.1%; top: 69.0%; }
.product-node.p4 { left: 31.0%; top: 17.1%; }

.product-node .node-inner { animation-delay: var(--delay, 0s); }
.product-node.p2 .node-inner { --delay: -1.5s; }
.product-node.p3 .node-inner { --delay: -3s; }
.product-node.p4 .node-inner { --delay: -4.5s; }

.viz-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.viz-lines line {
  stroke: rgba(77,183,154,0.35);
  stroke-width: 1.2;
  stroke-dasharray: 4 5;
  animation: dash-flow 4s linear infinite;
}
@keyframes dash-flow { to { stroke-dashoffset: -18; } }

.particle {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--green);
  z-index: 2;
  margin-top: -3px; margin-left: -3px;
  animation: particle-orbit 8s linear infinite;
}
.particle.p-a { animation-duration: 9s; }
.particle.p-b { animation-duration: 12s; animation-delay: -3s; background: var(--green-2); }
.particle.p-c { animation-duration: 15s; animation-delay: -6s; }
@keyframes particle-orbit {
  from { transform: rotate(0deg) translateX(38cqw) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(38cqw) rotate(-360deg); }
}
/* enable container query units on platform-viz so particles use viz width */
.platform-viz { container-type: inline-size; }

/* ===========================================================
   SECTIONS — common
   =========================================================== */
section { padding: 64px 0; position: relative; }
@media (min-width: 768px) { section { padding: 90px 0; } }
@media (min-width: 1024px) { section { padding: 110px 0; } }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 14px;
}
@media (min-width: 768px) { .section-eyebrow { font-size: 12px; margin-bottom: 16px; } }

.section-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-title em { font-style: normal; color: var(--green); }
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.6;
}
@media (min-width: 768px) { .section-sub { font-size: 18px; } }
.section-head.centered { text-align: center; margin: 0 auto 48px; max-width: 800px; }
.section-head.centered .section-sub { margin: 0 auto; }
@media (min-width: 768px) { .section-head.centered { margin-bottom: 64px; } }

.section-note {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: rgba(67,188,207,0.1);
  border: 1px solid rgba(67,188,207,0.3);
  border-radius: 999px;
  font-size: 13px;
  color: var(--navy);
}
.section-note strong {
  color: var(--liftin-blue);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===========================================================
   PROBLEM
   =========================================================== */
.problem { background: var(--cream); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
@media (min-width: 1280px) {
  .problem-grid { gap: 80px; }
}
.problem-list {
  list-style: none;
  margin-top: 28px;
}
.problem-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.problem-list li:last-child { border-bottom: none; }
.problem-list .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: all 0.5s var(--ease-smooth);
}
.problem-list li:hover .ico {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
  transform: scale(1.05);
}
.problem-list h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
@media (min-width: 768px) { .problem-list h4 { font-size: 17px; } }
.problem-list p {
  font-size: 14.5px;
  color: var(--muted);
}

/* Excel viz */
.excel-viz {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 40px 80px -30px rgba(25,23,50,0.15);
}
@media (min-width: 768px) { .excel-viz { padding: 28px; } }
@media (min-width: 1024px) { .excel-viz { position: sticky; top: calc(var(--nav-h) + 24px); } }

.excel-viz-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.excel-viz-head .tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.excel-viz-head .tabs span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f2f0ec;
  color: var(--muted);
  font-weight: 600;
}
.excel-viz-head .tabs span.active {
  background: #1e7e3a;
  color: #fff;
}
.excel-viz-head .meta {
  font-size: 11px;
  color: var(--muted);
  font-family: monospace;
  flex-shrink: 0;
}
.excel-rows { display: grid; gap: 4px; }
.excel-row {
  display: grid;
  grid-template-columns: 32px 1fr 70px 60px 70px;
  gap: 6px;
  padding: 8px;
  font-size: 11px;
  border-radius: 6px;
  background: #f8f7f4;
  align-items: center;
}
@media (min-width: 480px) {
  .excel-row { grid-template-columns: 40px 1fr 1fr 80px 80px; gap: 8px; padding: 10px; font-size: 12px; }
}
.excel-row.header {
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 8px;
}
.excel-row .r-a { font-weight: 600; color: var(--navy); font-family: monospace; }
.excel-row .r-b { color: var(--ink); font-weight: 500; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.excel-row .r-c { color: var(--muted); }
.excel-row .r-status {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  background: #fff3cd;
  color: #7a5800;
}
.excel-row .r-status.ok { background: #d4eee0; color: #0d6236; }
.excel-row .r-status.no { background: #fce4e4; color: #8a1f1f; }
.excel-row .r-warn {
  color: #c04040;
  font-size: 10px;
  text-align: right;
  font-weight: 600;
}
.excel-overlay {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}
.excel-overlay .x-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.excel-overlay strong { color: var(--green); }

/* ===========================================================
   VERTICALS
   =========================================================== */
.verticals { background: #fff; }
.verticals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .verticals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .verticals-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.vertical {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 22px;
  position: relative;
  transition: all 0.6s var(--ease-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .vertical { min-height: 280px; padding: 28px 24px 26px; } }
.vertical:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(25,23,50,0.25);
  border-color: var(--green);
}
.vertical.live {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.vertical.live:hover { background: var(--navy-2); }
.vertical .v-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(25,23,50,0.06);
  color: var(--navy);
  margin-bottom: 18px;
  align-self: flex-start;
}
.vertical.live .v-badge { background: var(--green); color: var(--navy); }
.vertical.pending .v-badge {
  background: transparent;
  border: 1px dashed rgba(25,23,50,0.25);
  color: var(--muted);
}
.vertical .v-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(77,183,154,0.12);
  color: var(--green);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: transform 0.5s var(--ease-smooth);
}
.vertical:hover .v-icon { transform: scale(1.08); }
.vertical.live .v-icon { background: rgba(77,183,154,0.2); }
.vertical h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
@media (min-width: 768px) { .vertical h4 { font-size: 20px; } }
.vertical p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}
.vertical.live p { color: rgba(255,255,255,0.7); }
.vertical .v-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.4s var(--ease-smooth);
}
.vertical:hover .v-link { gap: 10px; }

/* ===========================================================
   HOW
   =========================================================== */
.how { background: var(--cream); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
@media (min-width: 768px) { .how-grid { gap: 18px; } }
@media (min-width: 1024px) { .how-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.how-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.6s var(--ease-smooth);
}
@media (min-width: 768px) { .how-card { padding: 36px 32px; } }
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(25,23,50,0.2);
}
.how-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.how-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
@media (min-width: 768px) { .how-card h3 { font-size: 22px; } }
.how-card p {
  font-size: 14.5px;
  color: var(--muted);
}

/* h-viz containers */
.how-card .h-viz {
  margin-top: 22px;
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f4f3ee, #ebeae3);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
}
@media (min-width: 768px) { .how-card .h-viz { height: 170px; margin-top: 24px; } }

/* FIELD viz */
.field-viz {
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px;
}
.phone-mock {
  width: 74px;
  height: 148px;
  background: var(--navy);
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 14px 30px -12px rgba(25,23,50,0.5), inset 0 0 0 1.5px rgba(255,255,255,0.06);
  flex-shrink: 0;
  position: relative;
}
.phone-mock::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 4px;
  background: #000;
  border-radius: 0 0 4px 4px;
  z-index: 2;
}
.phone-screen {
  background: #241f47;
  border-radius: 8px;
  height: 100%;
  padding: 12px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.phone-head {
  font-size: 7px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 3px;
}
.phone-head .p-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.phone-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
}
.phone-row > span:first-child {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 1px;
  margin-right: 4px;
}
.phone-row .chk {
  font-size: 8px;
  color: rgba(255,255,255,0.5);
  font-weight: 900;
}
.phone-row .chk.active {
  color: var(--green);
  animation: tick-in 1.8s ease-in-out infinite;
}
@keyframes tick-in {
  0%, 40% { color: rgba(255,255,255,0.4); transform: scale(1); }
  50% { color: var(--green); transform: scale(1.3); }
  100% { color: var(--green); transform: scale(1); }
}
.phone-sign {
  margin-top: auto;
  height: 12px;
  background: linear-gradient(90deg, transparent, rgba(77,183,154,0.5), transparent);
  border-radius: 2px;
  animation: signing 2.4s ease-in-out infinite;
}
@keyframes signing {
  0%, 100% { transform: translateX(-5px); opacity: 0.5; }
  50% { transform: translateX(5px); opacity: 1; }
}
.sync-pulse {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.sync-pulse span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  opacity: 0.2;
  animation: sync-flow 1.6s ease-in-out infinite;
}
.sync-pulse span:nth-child(2) { animation-delay: 0.15s; width: 22px; }
.sync-pulse span:nth-child(3) { animation-delay: 0.3s; width: 14px; }
@keyframes sync-flow {
  0%, 100% { opacity: 0.15; transform: translateX(-4px); }
  50% { opacity: 1; transform: translateX(4px); }
}
.cloud-icon {
  color: var(--navy);
  opacity: 0.75;
  animation: cloud-bob 3s ease-in-out infinite;
}
@keyframes cloud-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* OFFICE viz */
.office-viz {
  padding: 16px;
  gap: 12px;
  align-items: stretch;
}
.dashboard-mock {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px -6px rgba(25,23,50,0.1);
  min-width: 0;
}
.dash-head {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
}
.dash-head span:not(.live-dot) {
  height: 4px;
  border-radius: 2px;
  background: #e5e3da;
}
.dash-head span:nth-child(1) { width: 40px; }
.dash-head span:nth-child(2) { width: 24px; }
.live-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: var(--green) !important;
  margin-left: auto;
  box-shadow: 0 0 8px var(--green);
  animation: live-blink 1.6s ease-in-out infinite;
}
@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.dash-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 82px;
  margin-top: auto;
}
.dash-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--green), var(--green-2));
  border-radius: 3px 3px 0 0;
  height: var(--h, 50%);
  transform-origin: bottom;
  animation: bar-rise 2.4s ease-in-out infinite;
}
.dash-bars span:nth-child(1) { animation-delay: 0s; }
.dash-bars span:nth-child(2) { animation-delay: 0.12s; }
.dash-bars span:nth-child(3) { animation-delay: 0.24s; }
.dash-bars span:nth-child(4) { animation-delay: 0.36s; }
.dash-bars span:nth-child(5) { animation-delay: 0.48s; }
.dash-bars span:nth-child(6) { animation-delay: 0.6s; }
@keyframes bar-rise {
  0%, 100% { transform: scaleY(0.8); opacity: 0.85; }
  50% { transform: scaleY(1); opacity: 1; }
}
.invoice-float {
  width: 92px;
  background: var(--navy);
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  color: #fff;
  animation: invoice-float 3s ease-in-out infinite;
  box-shadow: 0 12px 24px -10px rgba(25,23,50,0.5);
  flex-shrink: 0;
}
@keyframes invoice-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-5px) rotate(-1deg); }
}
.inv-line {
  height: 3px;
  width: 100%;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
  margin-bottom: 5px;
}
.inv-line.short { width: 55%; }
.inv-amount {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.3px;
}

/* CUSTOMER viz */
.customer-viz {
  display: grid;
  place-items: center;
  position: relative;
}
.portal-ring {
  position: absolute;
  top: 50%; left: 50%;
  border: 1.5px dashed rgba(77,183,154,0.4);
  border-radius: 50%;
  animation: portal-spin 18s linear infinite;
}
.portal-ring.ring-1 { width: 130px; height: 130px; }
.portal-ring.ring-2 {
  width: 82px; height: 82px;
  animation-duration: 11s;
  animation-direction: reverse;
  border-style: solid;
  border-color: rgba(77,183,154,0.22);
}
@keyframes portal-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.portal-center {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 0 24px rgba(77,183,154,0.4);
  animation: portal-pulse 2.4s ease-in-out infinite;
  position: relative;
}
@keyframes portal-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(77,183,154,0.4), 0 0 0 0 rgba(77,183,154,0.35); }
  50% { box-shadow: 0 0 36px rgba(77,183,154,0.6), 0 0 0 10px rgba(77,183,154,0); }
}
.portal-node {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--navy);
  z-index: 1;
}
.portal-node > span {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  opacity: 0;
  animation: node-ping 2.4s ease-out infinite;
}
.portal-node.n1 { top: calc(50% - 55px); left: calc(50% - 65px); }
.portal-node.n2 { top: calc(50% - 55px); left: calc(50% + 51px); }
.portal-node.n3 { top: calc(50% + 41px); left: calc(50% - 65px); }
.portal-node.n4 { top: calc(50% + 41px); left: calc(50% + 51px); }
.portal-node.n2 > span { animation-delay: 0.6s; }
.portal-node.n3 > span { animation-delay: 1.2s; }
.portal-node.n4 > span { animation-delay: 1.8s; }
@keyframes node-ping {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* ===========================================================
   SPOTLIGHT
   =========================================================== */
.spotlight {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(67,188,207,0.18), transparent 70%);
  pointer-events: none;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .spotlight-grid { grid-template-columns: 1fr 1.1fr; gap: 64px; }
}
@media (min-width: 1280px) { .spotlight-grid { gap: 80px; } }

.spotlight .tag {
  display: inline-block;
  background: rgba(67,188,207,0.14);
  border: 1px solid rgba(67,188,207,0.4);
  color: var(--liftin-blue-2);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-weight: 700;
}
.spotlight h2 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 18px;
}
.spotlight h2 em { font-style: normal; color: var(--green); }
.spotlight h2 em.liftin-accent { color: var(--liftin-blue); }
.spotlight p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 460px;
}
@media (min-width: 768px) { .spotlight p { font-size: 17px; margin-bottom: 28px; } }
.spotlight .caps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.spotlight .caps span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 500;
}
.spotlight-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.spotlight .spotlight-ctas .btn-primary {
  background: var(--liftin-blue);
  color: var(--navy);
}
.spotlight .spotlight-ctas .btn-primary:hover {
  background: var(--liftin-blue-2);
  box-shadow: 0 18px 40px -14px rgba(67,188,207,0.55);
}
.spotlight-ctas .btn-link {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.spotlight-ctas .btn-link:hover {
  color: var(--liftin-blue-2);
  border-color: var(--liftin-blue-2);
}

.liftin-mock {
  background: #0d0c1d;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
@media (min-width: 768px) { .liftin-mock { padding: 20px; } }

.mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mock-head .mock-brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--liftin-blue);
  letter-spacing: 1.5px;
}
.mock-head .mock-dots { display: flex; gap: 6px; }
.mock-head .mock-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.mock-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px;
}
.mock-tile .m-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.mock-tile .m-val {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.mock-tile .m-delta {
  font-size: 11px;
  color: var(--liftin-blue);
  font-weight: 600;
}
.mock-chart {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px;
  height: 110px;
  position: relative;
}
.mock-chart svg { width: 100%; height: 100%; }

/* ===========================================================
   WHY
   =========================================================== */
.why { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; } }

.why-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  transition: all 0.6s var(--ease-smooth);
}
@media (min-width: 768px) { .why-card { padding: 36px; grid-template-columns: 64px 1fr; gap: 24px; } }
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 30px 60px -25px rgba(25,23,50,0.2);
}
.why-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  letter-spacing: -1px;
}
@media (min-width: 768px) { .why-num { font-size: 32px; } }
.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
@media (min-width: 768px) { .why-card h3 { font-size: 20px; } }
.why-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===========================================================
   METHOD
   =========================================================== */
.method { background: var(--cream); position: relative; }
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
}
@media (min-width: 640px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .method-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.method-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  transition: all 0.6s var(--ease-smooth);
  position: relative;
}
@media (min-width: 768px) { .method-card { padding: 28px 24px; } }
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(25,23,50,0.2);
}
@media (min-width: 1024px) {
  .method-card::before {
    content: '';
    position: absolute;
    top: 32px; right: -12px;
    width: 24px; height: 1px;
    background: var(--line);
    z-index: 0;
  }
  .method-card:last-child::before { display: none; }
}
.method-phase {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 14px;
  padding: 4px 10px;
  background: var(--green-soft);
  border-radius: 6px;
}
.method-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.method-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq { background: #fff; }
.faq-list {
  max-width: 820px;
  margin: 32px auto 0;
}
@media (min-width: 768px) { .faq-list { margin-top: 40px; } }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  background: var(--cream);
  overflow: hidden;
  transition: border-color 0.5s var(--ease-smooth);
}
.faq-item:hover { border-color: rgba(77,183,154,0.4); }

.faq-q {
  width: 100%;
  padding: 20px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: inherit;
}
@media (min-width: 768px) { .faq-q { padding: 24px 28px; font-size: 17px; } }
.faq-q:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; border-radius: 16px; }

.faq-ico {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
}
.faq-ico::before, .faq-ico::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--green);
  border-radius: 1px;
  transition: transform 0.4s var(--ease-smooth);
}
.faq-ico::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-ico::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-ico::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth), padding 0.4s var(--ease-smooth);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 22px;
}
@media (min-width: 768px) { .faq-a { padding: 0 28px; } }
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 22px 20px;
}
@media (min-width: 768px) { .faq-item.open .faq-a { padding: 0 28px 24px; } }

/* ===========================================================
   CTA FINAL
   =========================================================== */
.cta-final {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-final::before, .cta-final::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-final::before {
  top: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(77,183,154,0.22), transparent 65%);
}
.cta-final::after {
  bottom: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(77,183,154,0.15), transparent 65%);
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta-inner h2 em { font-style: normal; color: var(--green); }
.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}
@media (min-width: 768px) { .cta-inner p { font-size: 18px; margin-bottom: 36px; } }
.cta-inner .cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: #0f0e1f;
  color: rgba(255,255,255,0.6);
  padding: 56px 0 24px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(77,183,154,0.10), transparent 60%);
  pointer-events: none;
}
@media (min-width: 768px) { .footer { padding: 80px 0 32px; } }

.footer .container { position: relative; }

/* Featured contact band — flows in the same dark surface as the rest of footer */
.footer-contact {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .footer-contact { padding-bottom: 64px; margin-bottom: 64px; } }

.fc-head {
  text-align: center;
  margin-bottom: 28px;
}
@media (min-width: 768px) { .fc-head { margin-bottom: 36px; } }

.fc-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 12px;
}
.fc-head h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.fc-head p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.55;
}

.fc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .fc-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }

.fc-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 22px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.fc-card:not(.fc-card-static):hover {
  background: rgba(77,183,154,0.10);
  border-color: rgba(77,183,154,0.4);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(77,183,154,0.35);
}
.fc-card:not(.fc-card-static):hover .fc-ico {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}

.fc-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(77,183,154,0.10);
  border: 1px solid rgba(77,183,154,0.25);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.4s var(--ease-smooth);
  flex-shrink: 0;
}
.fc-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.fc-card strong {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.2px;
  line-height: 1.4;
}
@media (min-width: 768px) { .fc-card strong { font-size: 18px; } }

.fc-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.fc-meta b { color: rgba(255,255,255,0.85); font-weight: 600; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; } }

.footer-brand img {
  height: 28px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.4s var(--ease-smooth);
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; gap: 18px; }
}
.fb-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.fb-legal b { color: rgba(255,255,255,0.75); font-weight: 600; }
.fb-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }

/* ===========================================================
   MODAL — contact form
   =========================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-smooth), visibility 0s linear 0.35s;
}
@media (min-width: 768px) {
  .modal { padding: 32px; }
}
body.modal-open .modal {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--ease-smooth), visibility 0s linear 0s;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 31, 0.6);
  backdrop-filter: blur(6px) saturate(1.4);
  -webkit-backdrop-filter: blur(6px) saturate(1.4);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 32px);
  background: var(--cream);
  border-radius: 22px;
  padding: 28px 22px 24px;
  box-shadow: 0 60px 120px -30px rgba(15,14,31,0.55), 0 0 0 1px rgba(25,23,50,0.06);
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.45s var(--ease-smooth);
}
@media (min-width: 768px) {
  .modal-panel { padding: 36px 36px 32px; }
}
body.modal-open .modal-panel { transform: translateY(0) scale(1); }

/* radial top glow for design feel */
.modal-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: radial-gradient(ellipse at 50% 0%, rgba(77,183,154,0.18), transparent 70%);
  pointer-events: none;
  border-radius: 22px 22px 0 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  z-index: 2;
}
.modal-close:hover, .modal-close:focus-visible {
  background: var(--green);
  border-color: var(--green);
  transform: rotate(90deg);
  outline: none;
}

.modal-head {
  position: relative;
  margin-bottom: 22px;
}
.modal-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 10px;
}
.modal-head h3 {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.modal-head h3 em { font-style: normal; color: var(--green); }
.modal-head p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 480px;
}

/* Form */
.modal-form { position: relative; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.field { position: relative; display: flex; flex-direction: column; }
.field + .field { margin-top: 0; }
.modal-form > .field { margin-bottom: 16px; }

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.1px;
}
.field .req {
  color: var(--green);
  font-weight: 700;
}
.field input,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), background 0.3s var(--ease-smooth);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(107, 104, 132, 0.65);
}
.field input:hover,
.field textarea:hover { border-color: rgba(77,183,154,0.5); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(77,183,154,0.18);
  background: #fff;
}

.field-error {
  display: none;
  font-size: 12px;
  color: #b3261e;
  margin-top: 6px;
  font-weight: 500;
}
.field.invalid input,
.field.invalid textarea { border-color: #d96b6b; box-shadow: 0 0 0 4px rgba(217,107,107,0.12); }
.field.invalid .field-error { display: block; }

/* Checkbox */
.field-checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  user-select: none;
  margin-top: 6px;
}
.field-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.cb-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(25,23,50,0.25);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
  margin-top: 1px;
}
.cb-box::after {
  content: '';
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg) scale(0);
  transition: transform 0.25s var(--ease-smooth);
  margin-top: -2px;
}
.field-checkbox input:checked ~ .cb-box {
  background: var(--green);
  border-color: var(--green);
}
.field-checkbox input:checked ~ .cb-box::after { transform: rotate(-45deg) scale(1); }
.field-checkbox input:focus-visible ~ .cb-box {
  box-shadow: 0 0 0 4px rgba(77,183,154,0.25);
}
.cb-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.cb-text a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cb-text a:hover { color: var(--green); }

.modal-form > .field-error[data-error-for="cf-gdpr"] {
  display: none;
  margin-top: 6px;
  margin-left: 34px;
}
.field-checkbox.invalid + .field-error { display: block; }
.field-checkbox.invalid .cb-box { border-color: #d96b6b; }

/* Actions */
.modal-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.modal-actions .btn { padding: 14px 28px; }
.modal-actions .btn-link { padding: 6px 0; border: none; background: transparent; cursor: pointer; }

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}
.form-note .req { color: var(--green); font-weight: 700; }

/* Success state */
.modal-success {
  text-align: center;
  padding: 12px 0 4px;
}
.modal-success .success-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(77,183,154,0.15);
  color: var(--green);
  display: grid;
  place-items: center;
}
.modal-success h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.modal-success p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 22px;
}

/* ===========================================================
   LEGAL — GDPR / terms pages
   =========================================================== */
.legal-hero {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .legal-hero { padding: 90px 0 70px; } }
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(77,183,154,0.18), transparent 45%),
    radial-gradient(circle at 90% 70%, rgba(67,188,207,0.10), transparent 50%);
  pointer-events: none;
}
.legal-hero .container { position: relative; }
.legal-hero .hero-eyebrow { margin-bottom: 18px; }
.legal-hero .hero-title {
  font-size: clamp(28px, 4.5vw, 48px);
  margin-bottom: 18px;
  max-width: 780px;
}
.legal-hero .hero-sub {
  margin-bottom: 18px;
  max-width: 640px;
}
.legal-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.legal { background: var(--cream); padding: 56px 0 88px; }
@media (min-width: 768px) { .legal { padding: 80px 0 110px; } }

.legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .legal-grid { grid-template-columns: 240px 1fr; gap: 56px; }
}

/* Sticky table of contents (desktop) */
.legal-toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 16px;
}
@media (min-width: 1024px) {
  .legal-toc { position: sticky; top: calc(var(--nav-h) + 24px); align-self: start; }
}
.toc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
}
.legal-toc li {
  counter-increment: toc;
}
.legal-toc a {
  display: block;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(25,23,50,0.05);
  transition: color 0.3s var(--ease-smooth), padding-left 0.3s var(--ease-smooth);
}
.legal-toc li:last-child a { border-bottom: none; }
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero) " · ";
  color: var(--green);
  font-weight: 700;
}
.legal-toc a:hover {
  color: var(--green);
  padding-left: 4px;
}

.legal-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 30px 60px -30px rgba(25,23,50,0.12);
}
@media (min-width: 768px) { .legal-body { padding: 44px 48px; } }

.legal-body section + section {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.legal-body h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.legal-body p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 720px;
}
.legal-body ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 18px;
}
.legal-body ul li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.65;
}
.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--green);
}
.legal-body ul li strong {
  color: var(--navy);
  font-weight: 600;
}
.legal-body a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s var(--ease-smooth);
}
.legal-body a:hover { color: var(--green); }

.legal-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
  max-width: 480px;
}
.legal-card strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.legal-card em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}

.legal-cta {
  margin-top: 28px;
}

/* ===========================================================
   MOBILE-ONLY OVERRIDES (≤ 767px)
   Centered hero / problem / spotlight / cta + full-width CTAs
   =========================================================== */
@media (max-width: 767px) {

  /* HERO — center, bigger title, hide sub, full-width stacked buttons */
  .hero { padding: 56px 0 72px; }
  .hero-copy { text-align: center; }
  .hero-eyebrow { margin-bottom: 36px; }
  .hero-title {
    font-size: clamp(36px, 9.5vw, 46px);
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 44px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 8px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  /* PROBLEM — center heading + sub (list stays left-aligned for readability) */
  .problem .problem-grid > .reveal:first-child { text-align: center; }
  .problem .problem-list { text-align: left; }

  /* SPOTLIGHT (LIFTIN) — center copy, full-width buttons */
  .spotlight-grid > .reveal:first-child { text-align: center; }
  .spotlight .caps { justify-content: center; }
  .spotlight p { margin-left: auto; margin-right: auto; }
  .spotlight-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .spotlight-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* CTA FINAL — already centered, just stack buttons full-width */
  .cta-inner .cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cta-inner .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===========================================================
   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; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}
