/* ==========================================================================
   LOCATIX — Stylesheet v3
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand blue */
  --blue-950: #082032;
  --blue-900: #0C3452;
  --blue-800: #0D4F7C;
  --blue-700: #0369A1;
  --blue-600: #0284C7;
  --blue-500: #0EA5E9;
  --blue-400: #38BDF8;
  --blue-200: #BAE6FD;
  --blue-100: #E0F2FE;
  --blue-50:  #F0F9FF;

  /* Neutrals */
  --slate-950: #020617;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-750: #253047;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;

  /* Accent colors */
  --green-600:  #059669;
  --green-500:  #10B981;
  --green-100:  #D1FAE5;
  --green-50:   #ECFDF5;
  --amber-600:  #D97706;
  --amber-400:  #FBBF24;
  --amber-100:  #FEF3C7;
  --purple-700: #6D28D9;
  --purple-600: #7C3AED;
  --purple-100: #EDE9FE;
  --teal-600:   #0D9488;
  --teal-100:   #CCFBF1;
  --red-600:    #DC2626;

  /* Semantic */
  --color-bg:          #FFFFFF;
  --color-bg-subtle:   var(--slate-50);
  --color-bg-muted:    var(--slate-100);
  --color-border:      var(--slate-200);
  --color-border-soft: var(--slate-100);
  --color-text:        var(--slate-900);
  --color-text-2:      var(--slate-600);
  --color-text-3:      var(--slate-400);
  --color-accent:      var(--blue-700);
  --color-accent-h:    var(--blue-800);
  --color-accent-lt:   var(--blue-100);
  --color-accent-bg:   var(--blue-50);

  /* Typography */
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Type scale */
  --t-xs:   0.6875rem;   /* 11px */
  --t-sm:   0.875rem;    /* 14px */
  --t-base: 1rem;        /* 16px */
  --t-md:   1.0625rem;   /* 17px */
  --t-lg:   1.125rem;    /* 18px */
  --t-xl:   1.25rem;     /* 20px */
  --t-2xl:  1.5rem;      /* 24px */
  --t-3xl:  1.875rem;    /* 30px */
  --t-4xl:  2.25rem;     /* 36px */
  --t-5xl:  3rem;        /* 48px */
  --t-6xl:  3.75rem;     /* 60px */

  /* Spacing — 4px grid */
  --s-1:  4px;   --s-2:  8px;   --s-3:  12px;  --s-4:  16px;
  --s-5:  20px;  --s-6:  24px;  --s-7:  28px;  --s-8:  32px;
  --s-10: 40px;  --s-12: 48px;  --s-14: 56px;  --s-16: 64px;
  --s-20: 80px;  --s-24: 96px;  --s-28: 112px; --s-32: 128px;

  /* Radius */
  --r-sm:   6px;    --r-md:  10px;  --r-lg:  16px;
  --r-xl:   22px;   --r-2xl: 32px;  --r-full: 9999px;

  /* Shadows */
  --sh-xs:     0 1px 2px rgba(15,23,42,.05);
  --sh-sm:     0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
  --sh-md:     0 4px 16px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
  --sh-lg:     0 12px 40px rgba(15,23,42,.10), 0 4px 8px rgba(15,23,42,.04);
  --sh-xl:     0 24px 72px rgba(15,23,42,.13), 0 8px 20px rgba(15,23,42,.06);
  --sh-accent: 0 4px 24px rgba(3,105,161,.28);
  --sh-glow:   0 0 0 3px rgba(3,105,161,.12);

  /* Motion */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:  130ms;
  --dur:       220ms;
  --dur-slow:  360ms;
  --tr:        all var(--dur) var(--ease);

  /* Layout */
  --container: 1380px;
  --gutter:    clamp(16px, 3vw, 40px);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #ffffff;
  overflow-x: clip;
  overscroll-behavior-x: none;
}


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

body {
  font-family: var(--font);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
fieldset { border: none; padding: 0; }

/* --------------------------------------------------------------------------
   3. Layout utilities
   -------------------------------------------------------------------------- */
.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

.hidden { display: none !important; }

/* --------------------------------------------------------------------------
   4. Section typography
   -------------------------------------------------------------------------- */
.section-kicker {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-800);
  line-height: 1.2;
  margin-bottom: var(--s-4);
}

/* Section-specific kicker colors */
.industry-section .section-kicker { color: var(--purple-700); }
.features-section .section-kicker { color: var(--teal-600); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--slate-950);
  margin-bottom: var(--s-5);
  text-align: center;
}

.section-body {
  font-size: var(--t-lg);
  color: var(--color-text-2);
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--s-12);
  line-height: 1.65;
}

/* Backwards-compatible aliases (inner pages still use old class names) */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--slate-950);
  margin-bottom: var(--s-5);
  text-align: center;
}

.section-sub {
  font-size: var(--t-lg);
  color: var(--color-text-2);
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--s-8);
  line-height: 1.65;
}

/* Homepage section headers */
.home-page .how-section .section-kicker,
.home-page .industry-section .section-kicker,
.home-page .features-section .section-kicker {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: var(--s-5);
}

.home-page .how-section .section-title,
.home-page .industry-section .section-title,
.home-page .features-section .section-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: var(--s-6);
  text-wrap: balance;
}

.home-page .how-section .section-body,
.home-page .industry-section .section-body,
.home-page .features-section .section-body {
  max-width: 58ch;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--r-md);
  transition: var(--tr);
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
}

.btn-sm  { padding: 9px 18px;  font-size: var(--t-sm);  min-height: 38px; }
.btn-md  { padding: 11px 22px; font-size: var(--t-base); min-height: 44px; }
.btn-lg  { padding: 14px 28px; font-size: var(--t-md);   min-height: 52px; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
  color: #fff;
  box-shadow: var(--sh-accent);
}
.btn-primary:hover  { background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(3,105,161,.35); }
.btn-primary:active { transform: translateY(0); }

.btn-white {
  background: #fff;
  color: var(--blue-700);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  font-weight: 700;
}
.btn-white:hover { background: var(--blue-50); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-white:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--sh-xs);
}
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-accent-bg); box-shadow: var(--sh-glow); }

.btn-outline-hero {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-outline-hero:hover { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.4); }

.btn-outline-white {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline-white:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.5); }

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  padding-inline: 0;
}
.btn-ghost:hover { color: var(--color-accent-h); text-decoration: underline; }

.btn-ghost-nav {
  background: transparent;
  color: rgba(255,255,255,.7);
  padding: 8px 14px;
  font-size: var(--t-sm);
  font-weight: 500;
  border-radius: var(--r-md);
}
.btn-ghost-nav:hover { color: #fff; background: rgba(255,255,255,.1); }

/* Sign In nav link — subtle separator before the primary CTA */
.nav-signin {
  position: relative;
  margin-right: var(--s-1);
}
.nav-signin::after {
  content: '';
  position: absolute;
  right: calc(-1 * var(--s-2) - 1px);
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,.2);
}

/* Mobile Sign In — full-width outlined button above Book a Demo */
.mobile-nav-signin {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--s-3);
}

.btn-secondary {
  background: var(--color-bg);
  color: var(--color-accent);
  border: 1.5px solid rgba(3,105,161,.35);
  box-shadow: var(--sh-xs);
}
.btn-secondary:hover {
  background: var(--color-accent-bg);
  border-color: var(--color-accent);
  color: var(--color-accent-h);
  box-shadow: var(--sh-glow);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(12, 20, 38, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--dur) var(--ease);
}

.site-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 7px 12px;
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255,255,255,.65);
  border-radius: var(--r-sm);
  transition: var(--tr);
  background: none;
  border: none;
  font-family: var(--font);
  cursor: pointer;
}

.nav-link:hover                     { color: #fff; background: rgba(255,255,255,.08); }
.nav-link.active                    { color: #fff; background: rgba(255,255,255,.08); }
.nav-link:focus                     { outline: none; background: none; color: rgba(255,255,255,.65); }
.nav-link:focus-visible             { outline: 2px solid rgba(255,255,255,.3); outline-offset: 2px; background: none; }
.nav-link[aria-current="page"]      { color: var(--blue-400); }

/* Dropdown */
.nav-dropdown-wrap { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: var(--s-2);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--tr);
}

.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 9px 12px;
  font-size: var(--t-sm);
  color: rgba(255,255,255,.6);
  border-radius: var(--r-md);
  transition: var(--tr);
}
.nav-dropdown-item:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-dropdown-icon { font-size: 14px; line-height: 1; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-left: auto;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--tr);
}
.nav-hamburger:hover { background: rgba(255,255,255,.08); }

.nav-hamburger span {
  display: block;
  height: 1.5px;
  width: 20px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s, width 0.2s;
  transform-origin: center;
}

/* Animate hamburger → X when open */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--slate-950);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease), visibility 0s var(--dur-slow);
  pointer-events: none;
  visibility: hidden;
  overscroll-behavior: contain;
}

.mobile-nav.open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
  transition: transform var(--dur-slow) var(--ease), visibility 0s 0s;
}

/* Top bar inside mobile nav — mirrors the main header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--s-5);
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
}

.mobile-nav-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  color: rgba(255,255,255,.7);
  transition: background var(--tr), color var(--tr);
}
.mobile-nav-close:hover { background: rgba(255,255,255,.12); color: #fff; }
.mobile-nav-close svg { display: block; }

/* Nav links area */
.mobile-nav-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--s-8) var(--s-6) var(--s-10);
  overflow-y: auto;
  min-height: 0;
}

.mobile-nav-body nav {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  flex-shrink: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  font-size: var(--t-xl);
  font-weight: 600;
  color: rgba(255,255,255,.55);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  transition: color var(--tr), background var(--tr);
  line-height: 1.2;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus-visible { color: #fff; background: rgba(255,255,255,.06); }
.mobile-nav-link[aria-current="page"] { color: var(--blue-400); }

/* Industries accordion */
.mobile-nav-accordion { display: flex; flex-direction: column; }

.mobile-nav-accordion-trigger {
  width: 100%;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font);
  cursor: pointer;
}

.mobile-nav-chevron {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  color: rgba(255,255,255,.4);
}

.mobile-nav-accordion-trigger[aria-expanded="true"] .mobile-nav-chevron {
  transform: rotate(180deg);
  color: rgba(255,255,255,.8);
}

.mobile-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
  padding-left: var(--s-4);
}

.mobile-nav-sub.open { max-height: 400px; }

.mobile-nav-sub-link {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--t-base);
  font-weight: 500;
  color: rgba(255,255,255,.45);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-md);
  transition: color var(--tr), background var(--tr);
  line-height: 1.3;
}
.mobile-nav-sub-link:hover,
.mobile-nav-sub-link:focus-visible          { color: #fff; background: rgba(255,255,255,.06); }
.mobile-nav-sub-link.active,
.mobile-nav-sub-link[aria-current="page"]   { color: var(--blue-400); background: rgba(14,165,233,.12); }

/* Divider between links and CTA */
.mobile-nav-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 0;
}

.mobile-nav-footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.mobile-nav-cta {
  display: block;
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  .nav-inner                { justify-content: space-between; }
  .nav-links                { display: none; }
  .btn-ghost-nav            { display: none; }
  /* Hide the header CTA on mobile — hamburger is the only action needed */
  .nav-actions .btn         { display: none; }
  .nav-hamburger            { display: flex; }
}

/* On very small screens, reduce link font size so everything fits without scrolling */
@media (max-width: 380px) {
  .mobile-nav-link          { font-size: var(--t-lg); padding: var(--s-2) var(--s-4); }
  .mobile-nav-divider       { margin: var(--s-4) 0; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: clamp(40px, 5vh, 80px) 0 clamp(40px, 5vh, 72px);
  background: linear-gradient(160deg, var(--slate-950) 0%, #0A1628 40%, #0C2040 100%);
  position: relative;
  overflow: hidden;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  will-change: transform;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(3,105,161,.35) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,.2) 0%, transparent 70%);
  bottom: -100px; left: 5%;
  animation: orb-drift 16s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(16,185,129,.15) 0%, transparent 70%);
  top: 30%; left: 40%;
  animation: orb-drift 20s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}

/* Dot grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 75%);
}

.hero-container {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: var(--s-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px 16px;
  background: rgba(3,105,161,.2);
  border: 1px solid rgba(56,189,248,.25);
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-6);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(16,185,129,.6);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(16,185,129,.6); }
  50%       { opacity: .5; transform: scale(.8); box-shadow: 0 0 4px rgba(16,185,129,.3); }
}

/* Heading */
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: var(--s-6);
}

.hero-heading-em {
  font-style: normal;
  background: linear-gradient(120deg, var(--blue-400) 0%, var(--green-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: var(--t-lg);
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: var(--s-8);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-8);
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%);
  box-shadow: 0 4px 24px rgba(14,165,233,.4);
}
.hero-btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
  box-shadow: 0 8px 36px rgba(14,165,233,.5);
  transform: translateY(-2px);
}

/* Proof strip */
.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-sm);
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Hero Dashboard Card
   -------------------------------------------------------------------------- */
.hero-visual { position: relative; }

.hero-dashboard-card {
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
}

.hdc-topbar {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 12px 18px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.hdc-dots { display: flex; gap: 6px; }
.hdc-dot  { width: 10px; height: 10px; border-radius: 50%; }
.hdc-dot--red   { background: #FF5F57; }
.hdc-dot--amber { background: #FEBC2E; }
.hdc-dot--green { background: #28C840; }

.hdc-title {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-xs);
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-left: var(--s-2);
  flex: 1;
}

.hdc-status-pulse {
  width: 6px; height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16,185,129,.7);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hdc-time {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.3);
}

/* Stats row */
.hdc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.hdc-stat {
  padding: var(--s-4) var(--s-4);
  background: var(--slate-900);
  text-align: center;
}

.hdc-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hdc-stat-lbl {
  display: block;
  font-size: var(--t-xs);
  color: rgba(255,255,255,.4);
  margin-top: 3px;
  font-weight: 500;
}

.hdc-stat--blue .hdc-stat-num  { color: var(--blue-400); }
.hdc-stat--green .hdc-stat-num { color: var(--green-500); }
.hdc-stat--amber .hdc-stat-num { color: var(--amber-400); }

/* Map */
.hdc-map { padding: var(--s-4); background: var(--slate-950); }
.hdc-map svg { width: 100%; height: auto; display: block; }

/* Alert row */
.hdc-alerts {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.07);
}

.hdc-alert {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 16px;
  font-size: var(--t-xs);
  font-weight: 500;
  background: var(--slate-900);
}

.hdc-alert--warn { color: var(--amber-400); }
.hdc-alert--ok   { color: var(--green-500); }

@media (max-width: 1023px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual    { display: none; }
  .hero-heading   { font-size: clamp(30px, 8vw, 46px); }
}

/* --------------------------------------------------------------------------
   8. Metrics Strip
   -------------------------------------------------------------------------- */
.metrics-strip {
  padding: var(--s-12) 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.metrics-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(3,105,161,.03) 50%, transparent);
  pointer-events: none;
}

.metrics-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--s-5) var(--s-10);
  flex: 1;
  min-width: 160px;
  position: relative;
  transition: background var(--dur) var(--ease);
}
.metric-item:hover { background: var(--color-bg-subtle); }

.metric-number {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 3vw, var(--t-4xl));
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--s-2);
}

.metric-label {
  font-size: var(--t-xs);
  color: var(--color-text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.45;
}

.metric-divider {
  width: 1px;
  background: var(--color-border);
  align-self: stretch;
  flex-shrink: 0;
  margin: var(--s-3) 0;
}

@media (max-width: 767px) {
  .metrics-inner { gap: var(--s-2); }
  .metric-item   { padding: var(--s-5) var(--s-6); min-width: 130px; }
  .metric-divider { display: none; }
}

/* --------------------------------------------------------------------------
   9. Trust Strip
   -------------------------------------------------------------------------- */
.trust-strip {
  padding: var(--s-8) 0 var(--s-10);
  background: var(--color-bg-subtle);
  border-bottom: 1px solid var(--color-border);
}

.trust-strip-label {
  font-size: var(--t-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-3);
  text-align: center;
  margin-bottom: var(--s-5);
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.trust-logo-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 9px 20px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-full);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--color-text-2);
  white-space: nowrap;
  box-shadow: var(--sh-xs);
  transition: var(--tr);
}
.trust-logo-item:hover {
  border-color: rgba(3,105,161,.3);
  color: var(--color-text);
  box-shadow: var(--sh-sm);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   10. How It Works  (TeamLogger-inspired: grey bg, white cards, centered icon)
   -------------------------------------------------------------------------- */
.how-section {
  padding: clamp(48px, 5.5vw, 72px) 0;
  background: #F5F5F5;
  border-top: 1px solid var(--color-border);
}

/* Shared section header style used by How It Works, Industries, Features */
.how-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--slate-900);
  margin-bottom: var(--s-4);
  text-transform: uppercase;
}

.how-section-sub {
  font-size: var(--t-lg);
  color: var(--color-text-2);
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--s-4);
  line-height: 1.6;
}

.how-divider {
  width: 48px;
  height: 3px;
  background: var(--slate-800);
  border-radius: 2px;
  margin: 0 auto var(--s-10);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.how-card {
  background: #FFFFFF;
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-7);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-4);
  box-shadow: 0 2px 12px rgba(15,23,42,.06);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.how-card:hover {
  box-shadow: 0 8px 32px rgba(15,23,42,.10);
  transform: translateY(-3px);
}

.how-card-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  margin-bottom: var(--s-2);
}

.how-card-title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.how-card-desc {
  font-size: var(--t-base);
  color: var(--color-text-2);
  line-height: 1.7;
  flex: 1;
}

.how-card-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: var(--slate-100);
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--color-text-2);
}

.how-card-pill--green {
  background: var(--green-100);
  color: var(--green-600);
}

/* Inline text highlight in How It Works descriptions */
.how-em {
  font-style: normal;
  font-weight: 700;
  font-size: 1.05em;
  color: var(--blue-700);
}

/* Checkmark bullet list */
.how-card-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  width: 100%;
  border-top: 1px solid var(--slate-100);
  padding-top: var(--s-4);
  margin-top: var(--s-1);
}

.how-check {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-base);
  font-weight: 600;
}

.how-check::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.how-check--green {
  color: var(--green-600);
}
.how-check--green::before {
  background-color: var(--green-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23059669' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.how-check--blue {
  color: var(--blue-700);
}
.how-check--blue::before {
  background-color: var(--blue-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%230369A1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  .how-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* --------------------------------------------------------------------------
   11. Industry Section
   -------------------------------------------------------------------------- */
.industry-section {
  padding: clamp(48px, 5.5vw, 72px) 0;
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.industry-section .section-kicker,
.industry-section .section-title,
.industry-section .section-body {
  display: block;
  text-align: center;
  width: 100%;
}
.industry-section .section-kicker { margin-inline: auto; }

.industry-tabs-wrap {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.tab-list {
  display: flex;
  gap: 0;
  background: var(--slate-50);
  border-bottom: 1.5px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-list::-webkit-scrollbar { display: none; }

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 22px;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--color-text-2);
  border-bottom: 3px solid transparent;
  margin-bottom: -1.5px;
  border-radius: 0;
  transition: var(--tr);
  white-space: nowrap;
  background: none;
  font-family: var(--font);
  cursor: pointer;
  flex-shrink: 0;
}

.tab-icon { font-size: 15px; line-height: 1; }
.tab-btn:hover { color: var(--color-text); background: rgba(3,105,161,.04); }
.tab-btn.active,
.tab-btn[aria-selected="true"] {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  background: rgba(3,105,161,.05);
}

.tab-panel        { display: none; }
.tab-panel.active { display: block; animation: tab-in 240ms var(--ease); }

@keyframes tab-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.industry-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 380px;
}

.industry-panel-left {
  padding: var(--s-10) var(--s-10);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  justify-content: center;
}

.industry-panel-right {
  border-left: 1.5px solid var(--color-border);
  overflow: hidden;
}

/* Big industry stat */
.industry-big-stat {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-5) var(--s-6);
  background: linear-gradient(135deg, var(--blue-50) 0%, rgba(3,105,161,.05) 100%);
  border: 1.5px solid rgba(3,105,161,.15);
  border-radius: var(--r-xl);
}

.ibs-num {
  font-family: var(--font-display);
  font-size: clamp(var(--t-3xl), 4vw, var(--t-5xl));
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.ibs-lbl {
  font-size: var(--t-sm);
  color: var(--color-text-2);
  font-weight: 500;
}

/* Use cases */
.industry-use-cases { display: flex; flex-direction: column; gap: var(--s-4); }

.iuc-item {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
}

.iuc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.iuc-dot--blue   { background: var(--blue-600); box-shadow: 0 0 8px rgba(3,105,161,.3); }
.iuc-dot--green  { background: var(--green-600); box-shadow: 0 0 8px rgba(5,150,105,.3); }
.iuc-dot--purple { background: var(--purple-600); box-shadow: 0 0 8px rgba(124,58,237,.3); }
.iuc-dot--amber  { background: var(--amber-600); }

.iuc-title { font-size: var(--t-base); font-weight: 700; color: var(--color-text); display: block; margin-bottom: 2px; }
.iuc-desc  { font-size: var(--t-sm); color: var(--color-text-2); line-height: 1.55; display: block; }

/* Industry image cards */
.industry-img-card {
  width: 100%;
  height: 100%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* SVG illustration fills the card */
.ind-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.industry-img-healthcare {
  background-image:
    linear-gradient(160deg, rgba(3,105,161,.08) 0%, rgba(5,150,105,.06) 100%),
    repeating-linear-gradient(90deg, rgba(3,105,161,.04) 0px, rgba(3,105,161,.04) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(0deg, rgba(3,105,161,.04) 0px, rgba(3,105,161,.04) 1px, transparent 1px, transparent 48px);
  background-color: var(--blue-50);
}

.industry-img-manufacturing {
  background-image: linear-gradient(160deg, rgba(124,58,237,.08) 0%, rgba(3,105,161,.06) 100%);
  background-color: var(--purple-100);
}
.industry-img-offices {
  background-image: linear-gradient(160deg, rgba(3,105,161,.08) 0%, rgba(124,58,237,.05) 100%);
  background-color: var(--blue-50);
}

.industry-img-overlay {
  position: absolute;
  bottom: var(--s-6);
  left: var(--s-6);
}

.industry-img-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 7px 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--color-border);
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--sh-md);
}

@media (max-width: 767px) {
  .industry-panel { grid-template-columns: 1fr; }
  .industry-panel-right { display: none; }
  .industry-panel-left  { padding: var(--s-8) var(--s-6); }
}

/* --------------------------------------------------------------------------
   12. Feature Showcase — shared across home + platform pages
   -------------------------------------------------------------------------- */

.fshow-section {
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
}

.fshow-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 520px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Left: sticky header panel ── */
.fshow-header {
  padding: var(--s-10) var(--s-10) var(--s-10) 0;
  position: sticky;
  top: 80px;
  align-self: start;
}

.fshow-header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fshow-kicker {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-4);
}

.fshow-heading {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 2.8vw, var(--t-4xl));
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--s-5);
}

.fshow-sub {
  font-size: var(--t-base);
  color: var(--color-text-2);
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: var(--s-8);
}

.fshow-cta { display: inline-flex; }

/* ── Right: feature rows ── */
.fshow-rows {
  border-left: 1px solid var(--color-border);
  list-style: none;
  padding: 0;
  margin: 0;
}

.fshow-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-6);
  align-items: flex-start;
  padding: var(--s-6) var(--s-8);
  border-bottom: 1px solid var(--color-border);
  transition: background 180ms var(--ease);
}

.fshow-row:last-child { border-bottom: none; }
.fshow-row:hover { background: var(--color-bg); }

/* Icon */
.fshow-row-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.fshow-icon--blue   { background: var(--blue-100);   color: var(--blue-700); }
.fshow-icon--amber  { background: var(--amber-100);  color: var(--amber-600); }
.fshow-icon--green  { background: var(--green-100);  color: var(--green-600); }
.fshow-icon--violet { background: var(--purple-100); color: var(--purple-600); }
.fshow-icon--cyan   { background: var(--teal-100);   color: var(--teal-600); }

/* Text */
.fshow-row-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.fshow-row-title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.fshow-row-hook {
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.005em;
}

.fshow-row-desc {
  font-size: var(--t-base);
  color: var(--color-text-2);
  line-height: 1.7;
  margin-top: var(--s-1);
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .fshow-inner {
    grid-template-columns: 1fr;
  }
  .fshow-header {
    position: static;
    padding: var(--s-12) 0 var(--s-8);
    border-bottom: 1px solid var(--color-border);
  }
  .fshow-rows { border-left: none; }
  .fshow-heading { font-size: var(--t-3xl); }
}

@media (max-width: 599px) {
  .fshow-inner    { padding-inline: var(--s-5); }
  .fshow-row      { padding: var(--s-6) 0; gap: var(--s-4); }
  .fshow-row-icon { width: 38px; height: 38px; }
}

.bento-card--gradient {
  background: linear-gradient(145deg, var(--teal-100) 0%, var(--blue-50) 100%);
  border-color: rgba(13,148,136,.2);
}
.bento-card--gradient:hover { border-color: rgba(13,148,136,.4); }

/* Bento icon */
.bento-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bento-icon--glow-blue   { background: var(--blue-100); color: var(--blue-700); }
.bento-icon--glow-amber  { background: var(--amber-100); color: var(--amber-600); }
.bento-icon--glow-purple { background: var(--purple-100); color: var(--purple-600); }
.bento-icon--glow-teal   { background: var(--teal-100); color: var(--teal-600); }
.bento-icon--glow-green  { background: var(--green-100); color: var(--green-600); }
.bento-card--dark .bento-icon--glow-blue { background: rgba(56,189,248,.15); color: var(--blue-400); }

.bento-title {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.015em;
}

.bento-desc {
  font-size: var(--t-sm);
  color: var(--color-text-2);
  line-height: 1.65;
  flex: 1;
}

.bento-link {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--tr);
  margin-top: auto;
}
.bento-link:hover { color: var(--color-accent-h); gap: 8px; }

/* Alert pills */
.bento-pill-row { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-2); }

.bento-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 600;
}
.bento-pill--warn { background: var(--amber-100); color: var(--amber-600); }
.bento-pill--ok   { background: var(--green-100); color: var(--green-600); }

/* Bar chart visual */
.bento-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: var(--s-2);
  height: 52px;
  margin-top: auto;
  padding-top: var(--s-3);
}

.bbc-bar {
  flex: 1;
  background: var(--color-bg-muted);
  border-radius: 3px 3px 0 0;
  transition: background var(--dur) var(--ease);
}
.bbc-bar--highlight { background: var(--color-accent); }
.bento-card:hover .bbc-bar { background: var(--slate-200); }
.bento-card:hover .bbc-bar--highlight { background: var(--blue-600); }

/* Integration chips */
.bento-integrations { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: auto; }

.bento-chip {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(13,148,136,.25);
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--teal-600);
}

/* Visual inside large card */
.bento-visual {
  position: relative;
  height: 180px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.bento-visual--map {
  background: rgba(15,23,42,.5);
}

/* Animated room boxes */
.bv-room {
  position: absolute;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  background: rgba(255,255,255,.03);
}
.bv-room-1 { top: 12%; left: 8%;  width: 35%; height: 35%; }
.bv-room-2 { top: 12%; left: 48%; width: 44%; height: 35%; }
.bv-room-3 { top: 55%; left: 8%;  width: 84%; height: 35%; }

/* Animated dots on bento map */
@keyframes bv-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
@keyframes bv-ring  { 0%{width:12px;height:12px;opacity:.7;margin:-6px} 100%{width:30px;height:30px;opacity:0;margin:-15px} }

.bv-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  animation: bv-pulse 2.4s ease-in-out infinite;
}
.bv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(56,189,248,.5);
  animation: bv-ring 2.5s ease-out infinite;
  pointer-events: none;
}

.bv-dot-1 { background: var(--blue-400); top: 30%; left: 25%; animation-delay: 0s; }
.bv-dot-2 { background: var(--green-500); top: 30%; left: 65%; animation-delay: .7s; }
.bv-dot-3 { background: var(--purple-600); top: 68%; left: 45%; animation-delay: 1.3s; }
.bv-ring-1 { top: 30%; left: 25%; animation-delay: .2s; }

@media (max-width: 1023px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--large { grid-template-columns: 1fr; gap: var(--s-6); }
  .bento-visual { display: none; }
}
@media (max-width: 599px) {
  .bento-grid { grid-template-columns: 1fr; }
}

.features-footer {
  text-align: center;
  margin-top: var(--s-10);
}

/* --------------------------------------------------------------------------
   13. Testimonials
   -------------------------------------------------------------------------- */
.testimonial-section {
  padding: clamp(48px, 5.5vw, 72px) 0;
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.testimonial-section .section-kicker,
.testimonial-section .section-title {
  display: block;
  text-align: center;
  width: 100%;
}
.testimonial-section .section-kicker { margin-inline: auto; margin-bottom: var(--s-4); }
.testimonial-section .section-title  { margin-bottom: var(--s-12); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.testimonial-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  position: relative;
  overflow: hidden;
  transition: var(--tr);
}

.testimonial-card:hover {
  border-color: rgba(3,105,161,.3);
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}

.testimonial-card--dark {
  background: linear-gradient(145deg, var(--slate-900) 0%, var(--slate-800) 100%);
  border-color: rgba(255,255,255,.08);
}
.testimonial-card--dark .testimonial-body { color: rgba(255,255,255,.65); }
.testimonial-card--dark .testimonial-name { color: #fff; }
.testimonial-card--dark .testimonial-org  { color: rgba(255,255,255,.4); }
.testimonial-card--dark .ts-lbl { color: rgba(255,255,255,.45); }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  line-height: .6;
  color: var(--color-accent);
  opacity: .3;
}
.testimonial-card--dark .testimonial-quote { color: var(--blue-400); }

.testimonial-body {
  font-size: var(--t-base);
  color: var(--color-text-2);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--color-border-soft);
}
.testimonial-card--dark .testimonial-author { border-top-color: rgba(255,255,255,.08); }

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ta-blue   { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); }
.ta-purple { background: linear-gradient(135deg, var(--purple-700), var(--purple-600)); }
.ta-green  { background: linear-gradient(135deg, var(--green-600), var(--green-500)); }

.testimonial-name {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--color-text);
  display: block;
}
.testimonial-org {
  font-size: var(--t-xs);
  color: var(--color-text-3);
  display: block;
  margin-top: 1px;
}

.testimonial-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--s-4) var(--s-4);
  background: var(--color-accent-bg);
  border: 1px solid rgba(3,105,161,.12);
  border-radius: var(--r-lg);
}
.testimonial-card--dark .testimonial-stat {
  background: rgba(56,189,248,.07);
  border-color: rgba(56,189,248,.15);
}

.ts-num {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.testimonial-card--dark .ts-num { color: var(--blue-400); }

.ts-lbl {
  font-size: var(--t-xs);
  color: var(--color-text-2);
  font-weight: 500;
}

@media (max-width: 1023px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px)  { .testimonial-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   14. Pricing Section
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: clamp(48px, 5.5vw, 72px) 0;
  background: #F5F5F5;
  border-bottom: 1px solid var(--color-border);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--s-8);
}

.pricing-header .how-section-sub {
  margin-bottom: var(--s-2);
}

.pricing-trial-line {
  font-size: var(--t-base);
  color: var(--color-text-2);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 62ch;
}

.pricing-header .how-divider {
  margin-top: var(--s-4);
}

/* Outer wrapper */
.pricing-card-wrap {
  width: 100%;
}

/* Single horizontal card */
.pricing-card-single {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  background: #ffffff;
}

/* Left: coloured price panel */
.pricing-price-panel {
  background: var(--blue-700);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-10) var(--s-6);
  gap: var(--s-3);
  text-align: center;
}

.pricing-panel-label {
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

.pricing-panel-amount {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
}

.pricing-panel-dollar {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 800;
  margin-top: 8px;
}

.pricing-panel-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-panel-asterisk {
  font-size: var(--t-xl);
  font-weight: 700;
  margin-top: 6px;
  opacity: .8;
}

.pricing-panel-unit {
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: .08em;
  opacity: .85;
}

/* Middle: feature list */
.pricing-features-panel {
  padding: var(--s-8) var(--s-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-5);
  border-right: 1px solid var(--color-border);
}

.pricing-feat-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-8);
}

.pricing-feat-item {
  font-size: var(--t-base);
  font-weight: 500;
  color: var(--color-text);
  padding-left: var(--s-5);
  position: relative;
}

.pricing-feat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #dcfce7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2316a34a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 9px 9px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.pricing-feat-note {
  font-size: var(--t-sm);
  color: var(--color-text-3);
  line-height: 1.6;
  font-style: italic;
}

/* Right: CTA panel */
.pricing-cta-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  padding: var(--s-8) var(--s-10);
  min-width: 180px;
}

.pricing-main-cta {
  white-space: nowrap;
  letter-spacing: .04em;
}

.pricing-demo-link {
  font-size: var(--t-sm);
  color: var(--color-text-2);
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
}
.pricing-demo-link:hover { color: var(--color-accent); text-decoration: underline; }

/* Responsive */
@media (max-width: 1023px) {
  .pricing-card-single {
    grid-template-columns: 180px 1fr;
    grid-template-rows: auto auto;
  }
  .pricing-price-panel { grid-row: 1 / 3; }
  .pricing-features-panel { border-right: none; border-bottom: 1px solid var(--color-border); }
  .pricing-cta-panel { padding: var(--s-6) var(--s-8); }
  .pricing-feat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 599px) {
  .pricing-card-single {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .pricing-price-panel { grid-row: auto; padding: var(--s-8) var(--s-6); }
  .pricing-features-panel { padding: var(--s-6) var(--s-6); border-bottom: 1px solid var(--color-border); }
  .pricing-cta-panel { padding: var(--s-6); }
}

/* --------------------------------------------------------------------------
   15. CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  padding: var(--s-28) 0;
  background: linear-gradient(150deg, var(--blue-900) 0%, var(--slate-950) 60%, #0A1A30 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(3,105,161,.4) 0%, transparent 70%);
  top: -150px; left: -100px;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,.25) 0%, transparent 70%);
  bottom: -100px; right: -80px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 5px 16px;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.25);
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 4vw, var(--t-5xl));
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
  max-width: 20ch;
}

.cta-sub {
  font-size: var(--t-lg);
  color: rgba(255,255,255,.55);
  max-width: 46ch;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-footnote {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.3);
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--slate-950);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: var(--s-16);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--s-12);
  padding-bottom: var(--s-12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
  margin-bottom: var(--s-4);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.footer-tagline {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.35);
  line-height: 1.65;
  max-width: 28ch;
  margin-bottom: var(--s-6);
}

.footer-social { display: flex; gap: var(--s-2); }

.social-link {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  color: rgba(255,255,255,.4);
  transition: var(--tr);
}
.social-link:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.2); }

.footer-col { display: flex; flex-direction: column; gap: var(--s-3); }

.footer-col-heading {
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.25);
  margin-bottom: var(--s-1);
}

.footer-link {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.45);
  transition: var(--tr);
  width: fit-content;
}
.footer-link:hover { color: #fff; }

.footer-cta-text {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.45);
  line-height: 1.55;
  margin-bottom: var(--s-4);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: var(--s-5) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.footer-bottom-inner > span,
.footer-legal-link { font-size: var(--t-xs); color: rgba(255,255,255,.22); }
.footer-legal { display: flex; gap: var(--s-5); }
.footer-legal-link:hover { color: rgba(255,255,255,.5); }

@media (max-width: 1023px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 599px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* --------------------------------------------------------------------------
   16. CTA Banner (inner pages)
   -------------------------------------------------------------------------- */
.cta-banner {
  padding: var(--s-20) 0;
  background: linear-gradient(150deg, var(--blue-900) 0%, var(--slate-950) 60%, #0A1A30 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(3,105,161,.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner-heading {
  font-family: var(--font-display);
  font-size: clamp(var(--t-2xl), 4vw, var(--t-4xl));
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: var(--s-4);
}

.cta-banner-sub {
  font-size: var(--t-lg);
  color: rgba(255,255,255,.55);
  max-width: 48ch;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: var(--s-8);
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   17. Scroll-reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
}

.reveal.visible     { opacity: 1; transform: translateY(0); }
.reveal-delay-1     { transition-delay: 80ms; }
.reveal-delay-2     { transition-delay: 160ms; }
.reveal-delay-3     { transition-delay: 240ms; }
.reveal-delay-4     { transition-delay: 320ms; }

/* --------------------------------------------------------------------------
   17. Shared inner-page components
   -------------------------------------------------------------------------- */

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: var(--s-1);
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: var(--t-xs); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.07em; white-space: nowrap;
}
.badge-accent  { background: var(--color-accent-lt); color: var(--color-accent); border: 1px solid rgba(3,105,161,.2); }
.badge-success { background: var(--green-100); color: var(--green-600); }
.badge-muted   { background: var(--slate-100); border: 1px solid var(--color-border); color: var(--color-text-2); text-transform: none; letter-spacing: 0; font-weight: 500; }

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(40px, 5vh, 72px) 0 clamp(32px, 4vh, 56px);
  text-align: center;
  background: linear-gradient(160deg, var(--slate-950) 0%, #0A1628 40%, #0C2040 100%);
  border-bottom: 1px solid var(--color-border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 55% at 20% 40%, rgba(3,105,161,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(14,165,233,.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(3,105,161,.3) 30%, rgba(3,105,161,.3) 70%, transparent 100%);
}
.page-hero-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1vw, 1rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--blue-400);
  line-height: 1.2;
  margin-bottom: var(--s-5); position: relative;
}
.page-hero-heading {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.03;
  color: #FFFFFF; margin-bottom: var(--s-6); position: relative;
}
.page-hero-sub {
  font-size: var(--t-xl); color: rgba(255,255,255,.55); max-width: 54ch;
  margin-inline: auto; line-height: 1.55; margin-bottom: var(--s-8); position: relative;
}
.page-hero-actions { display: flex; align-items: center; justify-content: center; gap: var(--s-4); flex-wrap: wrap; position: relative; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: var(--s-3); }
.accordion-item { background: var(--color-bg); border: 1.5px solid var(--color-border); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow var(--dur) var(--ease); }
.accordion-item.open { box-shadow: var(--sh-sm); }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: var(--s-5) var(--s-6); font-size: var(--t-base); font-weight: 600; color: var(--color-text); text-align: left; cursor: pointer; background: none; border: none; font-family: var(--font); transition: var(--tr); gap: var(--s-4); }
.accordion-trigger:hover { color: var(--color-accent); }
.accordion-icon { flex-shrink: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; color: var(--color-text-3); transition: transform var(--dur) var(--ease); }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease); }
.accordion-item.open .accordion-content { max-height: 400px; }
.accordion-body { padding: 0 var(--s-6) var(--s-5); font-size: var(--t-base); color: var(--color-text-2); line-height: 1.7; }

/* Forms */
.form-label { display: block; font-size: var(--t-sm); font-weight: 500; color: var(--color-text-2); margin-bottom: var(--s-2); }
.form-label-optional { font-weight: 400; color: var(--color-text-3); }
.form-input, .form-select {
  width: 100%; background: var(--color-bg-subtle); border: 1.5px solid var(--color-border);
  border-radius: var(--r-md); padding: 11px 16px; font-size: var(--t-base);
  color: var(--color-text); font-family: var(--font); transition: var(--tr);
  -webkit-appearance: none; appearance: none;
}
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6 8L2 4h8L6 8z' fill='%2394A3B8'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form-input::placeholder { color: var(--color-text-3); }
.form-input:focus, .form-select:focus { outline: none; border-color: var(--blue-600); background: var(--color-bg); box-shadow: 0 0 0 3px rgba(3,105,161,.1); }
.form-input.error { border-color: var(--red-600); box-shadow: 0 0 0 3px rgba(220,38,38,.09); }
.form-error-msg { display: flex; align-items: center; gap: var(--s-1); font-size: var(--t-sm); color: var(--red-600); margin-top: 5px; }
.form-status { font-size: var(--t-sm); line-height: 1.45; text-align: center; margin-top: var(--s-3); }
.form-status-error { color: var(--red-600); }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-range { width: 100%; accent-color: var(--color-accent); height: 4px; cursor: pointer; margin-top: var(--s-3); }
.range-display { font-size: var(--t-sm); color: var(--color-accent); font-weight: 600; margin-top: var(--s-2); font-variant-numeric: tabular-nums; }
.form-group { margin-bottom: var(--s-5); }

/* Contact page */
.contact-section { padding: clamp(32px, 4vh, 64px) 0 clamp(40px, 5vh, 80px); }
.contact-inner { display: grid; grid-template-columns: 5fr 6fr; gap: var(--s-16); align-items: start; }
.contact-heading { font-family: var(--font-display); font-size: clamp(var(--t-3xl), 4vw, var(--t-4xl)); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: var(--s-8); }
.contact-benefits { display: flex; flex-direction: column; gap: var(--s-4); margin-bottom: var(--s-8); }
.contact-benefits li { display: flex; align-items: flex-start; gap: var(--s-3); font-size: var(--t-base); color: var(--color-text-2); line-height: 1.5; }
.benefit-check { color: var(--green-600); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.contact-trust { font-size: var(--t-sm); color: var(--color-text-3); font-style: italic; margin-bottom: var(--s-8); }
.contact-stat-block { display: flex; flex-direction: column; gap: var(--s-1); padding: var(--s-4); background: var(--color-accent-bg); border: 1px solid rgba(3,105,161,.15); border-radius: var(--r-lg); max-width: 260px; }
.contact-stat-num { font-family: var(--font-display); font-size: var(--t-4xl); font-weight: 800; color: var(--color-accent); line-height: 1; font-variant-numeric: tabular-nums; }
.contact-stat-label { font-size: var(--t-sm); color: var(--color-text-2); line-height: 1.4; }
.demo-form { background: var(--color-bg); border: 1.5px solid var(--color-border); border-radius: var(--r-2xl); padding: var(--s-8); box-shadow: var(--sh-md); }
.form-step { border: none; padding: 0; }
.form-step-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-6); }
.form-step-title { font-size: var(--t-lg); font-weight: 600; color: var(--color-text); }
.form-step-indicator { font-size: var(--t-xs); color: var(--color-text-3); }
.form-success { text-align: center; padding: var(--s-10) var(--s-6); display: flex; flex-direction: column; align-items: center; gap: var(--s-4); }
.success-icon { width: 52px; height: 52px; background: var(--green-100); border: 1px solid rgba(5,150,105,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: var(--t-2xl); color: var(--green-600); }
.success-heading { font-size: var(--t-2xl); font-weight: 700; }
.success-body { font-size: var(--t-base); color: var(--color-text-2); max-width: 38ch; }

@media (max-width: 1023px) { .contact-inner { grid-template-columns: 1fr; } }

/* ROI Calculator */
.roi-calculator { padding: var(--s-20) 0; }
.roi-card { display: grid; grid-template-columns: 1fr 1fr; background: var(--color-bg); border: 1.5px solid var(--color-border); border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-md); }
.roi-inputs { padding: var(--s-10); }
.roi-output { padding: var(--s-10); background: var(--color-accent); display: flex; flex-direction: column; justify-content: center; gap: var(--s-6); }
.roi-title { font-size: var(--t-2xl); font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--s-2); }
.roi-sub   { font-size: var(--t-base); color: var(--color-text-2); margin-bottom: var(--s-8); }
.roi-field { margin-bottom: var(--s-6); }
.roi-result-grid { display: flex; flex-direction: column; gap: var(--s-6); }
.roi-result-item { display: flex; flex-direction: column; gap: var(--s-1); }
.roi-result-number { font-family: var(--font-display); font-size: var(--t-3xl); font-weight: 800; color: #FFF; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; transition: var(--tr); }
.roi-result-label { font-size: var(--t-sm); color: rgba(255,255,255,.7); }
.roi-disclaimer { font-size: var(--t-xs); color: rgba(255,255,255,.5); font-style: italic; }
@media (max-width: 767px) { .roi-card { grid-template-columns: 1fr; } }

/* Radio options */
.radio-group { display: flex; flex-direction: column; gap: var(--s-2); }
.radio-option { display: flex; align-items: center; gap: var(--s-3); padding: 11px 16px; border: 1.5px solid var(--color-border); border-radius: var(--r-md); font-size: var(--t-sm); color: var(--color-text-2); cursor: pointer; transition: var(--tr); background: var(--color-bg-subtle); }
.radio-option:hover { border-color: rgba(3,105,161,.4); color: var(--color-text); background: var(--color-accent-bg); }
.radio-option:has(input:checked) { border-color: var(--color-accent); background: var(--color-accent-bg); color: var(--color-text); }
.radio-option input[type="radio"] { accent-color: var(--color-accent); width: 16px; height: 16px; flex-shrink: 0; }
.form-back-btn { font-size: var(--t-sm); color: var(--color-text-2); cursor: pointer; background: none; border: none; transition: var(--tr); font-family: var(--font); }
.form-back-btn:hover { color: var(--color-text); }

/* Comparison table */
.comparison-section { padding: var(--s-20) 0; }
.comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: var(--s-12); border-radius: var(--r-xl); border: 1.5px solid var(--color-border); background: var(--color-bg); box-shadow: var(--sh-sm); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.comparison-table thead tr { background: var(--color-bg-subtle); }
.comparison-table th { padding: 16px 24px; font-size: var(--t-sm); font-weight: 600; text-align: left; color: var(--color-text-2); white-space: nowrap; }
.comparison-table th.col-locatix { color: var(--color-accent); background: var(--color-accent-bg); }
.recommended-badge { display: inline-block; margin-left: var(--s-2); padding: 2px 8px; background: var(--color-accent); color: #fff; font-size: 10px; font-weight: 700; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: 0.06em; vertical-align: middle; }
.comparison-table td { padding: 14px 24px; font-size: var(--t-sm); color: var(--color-text-2); border-top: 1px solid var(--color-border); }
.comparison-table td.col-feature { font-weight: 500; color: var(--color-text); }
.comparison-table td.col-locatix { color: var(--color-text); background: rgba(3,105,161,.03); font-weight: 500; }
.comparison-table tbody tr:hover td { background: var(--color-bg-subtle); }
.comparison-table tbody tr:hover td.col-locatix { background: rgba(3,105,161,.06); }
.check-yes     { color: var(--green-600); font-size: var(--t-lg); font-weight: 700; }
.check-no      { color: var(--color-text-3); font-size: var(--t-lg); }
.check-partial { color: var(--amber-600); font-size: var(--t-lg); }

/* Modals */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: var(--s-6); opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease); }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-panel { background: var(--color-bg); border: 1.5px solid var(--color-border); border-radius: var(--r-2xl); padding: var(--s-10); max-width: 560px; width: 100%; box-shadow: var(--sh-xl); position: relative; transform: scale(.96); transition: transform var(--dur) var(--ease); }
.modal-overlay.open .modal-panel { transform: scale(1); }
.modal-close { position: absolute; top: var(--s-4); right: var(--s-4); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--color-text-2); border-radius: var(--r-sm); transition: var(--tr); background: none; border: none; font-size: var(--t-lg); cursor: pointer; }
.modal-close:hover { color: var(--color-text); background: var(--color-bg-subtle); }

/* Integrations strip */
.integrations-strip { padding: var(--s-12) 0; border-top: 1px solid var(--color-border); background: var(--color-bg); }
.integrations-label { font-size: var(--t-xs); font-weight: 600; color: var(--color-text-3); text-align: center; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--s-6); }
.integrations-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--s-2); }
.integration-chip { display: inline-flex; align-items: center; gap: var(--s-2); padding: var(--s-2) var(--s-4); background: var(--color-bg-subtle); border: 1.5px solid var(--color-border); border-radius: var(--r-full); font-size: var(--t-sm); font-weight: 500; color: var(--color-text-2); transition: var(--tr); }
.integration-chip:hover { border-color: rgba(3,105,161,.3); color: var(--color-text); background: var(--color-accent-bg); }

/* Industry cards grid (inner pages) */
.industry-cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-4); margin-top: var(--s-10); }
.industry-card { background: var(--color-bg); border: 1.5px solid var(--color-border); border-radius: var(--r-xl); padding: var(--s-8) var(--s-6); display: flex; flex-direction: column; gap: var(--s-4); text-decoration: none; transition: var(--tr); }
.industry-card:hover { transform: translateY(-3px); border-color: rgba(3,105,161,.3); box-shadow: var(--sh-md); }
.industry-card-icon  { font-size: 28px; line-height: 1; }
.industry-card-name  { font-size: var(--t-xl); font-weight: 700; color: var(--color-text); }
.industry-card-desc  { font-size: var(--t-sm); color: var(--color-text-2); line-height: 1.5; flex: 1; }
.industry-card-arrow { font-size: var(--t-sm); color: var(--color-accent); font-weight: 500; margin-top: auto; }
@media (max-width: 1023px) { .industry-cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .industry-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .industry-cards-grid { grid-template-columns: 1fr; } }

/* UWB callout */
.uwb-callout { margin-top: var(--s-8); padding: var(--s-6); background: var(--color-bg-subtle); border: 1.5px solid var(--color-border); border-left: 3px solid var(--purple-600); border-radius: var(--r-lg); }
.uwb-callout-title { font-size: var(--t-base); font-weight: 600; color: var(--purple-600); margin-bottom: var(--s-3); }
.uwb-callout p { font-size: var(--t-sm); color: var(--color-text-2); line-height: 1.7; }

/* ==========================================================================
   Healthcare Showcase Section
   ========================================================================== */
.hc-showcase {
  padding: clamp(64px, 7vw, 96px) 0;
  background: var(--slate-950);
  position: relative;
  overflow: hidden;
}

.hc-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(3,105,161,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 80%, rgba(14,165,233,.12) 0%, transparent 55%);
  pointer-events: none;
}

/* Header */
.hc-showcase-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--s-12);
  position: relative;
}

.hc-showcase-kicker {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-400);
  background: rgba(56,189,248,.1);
  border: 1px solid rgba(56,189,248,.2);
  border-radius: var(--r-full);
  padding: 5px 14px;
  margin-bottom: var(--s-5);
}

.hc-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: var(--s-5);
}

.hc-showcase-sub {
  font-size: var(--t-lg);
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

/* Stats bar */
.hc-showcase-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: var(--s-6) var(--s-8);
  margin-bottom: var(--s-12);
  position: relative;
  flex-wrap: wrap;
}

.hc-showcase-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--s-4) var(--s-10);
  flex: 1;
  min-width: 140px;
}

.hc-showcase-stat-num {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  font-weight: 800;
  color: var(--blue-400);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hc-showcase-stat-lbl {
  font-size: var(--t-xs);
  color: rgba(255,255,255,.45);
  text-align: center;
  line-height: 1.4;
  max-width: 14ch;
}

.hc-showcase-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* Capability grid */
.hc-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-bottom: var(--s-12);
  position: relative;
}

.hc-cap-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.hc-cap-card:hover {
  background: rgba(56,189,248,.06);
  border-color: rgba(56,189,248,.2);
  transform: translateY(-3px);
}

.hc-cap-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  flex-shrink: 0;
}

.hc-cap-title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.hc-cap-desc {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  flex: 1;
}

.hc-cap-tag {
  display: inline-flex;
  align-items: center;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--blue-400);
  background: rgba(56,189,248,.08);
  border: 1px solid rgba(56,189,248,.15);
  border-radius: var(--r-full);
  padding: 4px 12px;
  width: fit-content;
  letter-spacing: 0.01em;
}

/* Bottom CTA strip */
.hc-showcase-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-8);
  position: relative;
}

.hc-showcase-cta-text {
  font-size: var(--t-base);
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  max-width: 46ch;
}

.hc-showcase-cta-actions {
  display: flex;
  gap: var(--s-3);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .hc-cap-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-showcase-stat { padding: var(--s-4) var(--s-6); }
}

@media (max-width: 767px) {
  .hc-showcase-stats { gap: var(--s-1); }
  .hc-showcase-stat-div { display: none; }
  .hc-showcase-stat { min-width: 45%; padding: var(--s-4); }
  .hc-showcase-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-showcase-cta-actions { flex-wrap: wrap; }
}

@media (max-width: 599px) {
  .hc-cap-grid { grid-template-columns: 1fr; }
  .hc-showcase-stat { min-width: 100%; }
}

/* ==========================================================================
   Healthcare Teaser Cards (homepage — replaces old cap-grid)
   ========================================================================== */
.hc-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-bottom: var(--s-10);
  position: relative;
}

.hc-teaser-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.hc-teaser-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500) 0%, rgba(14,165,233,.1) 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.hc-teaser-card:hover {
  background: rgba(56,189,248,.06);
  border-color: rgba(56,189,248,.22);
  transform: translateY(-3px);
}

.hc-teaser-card:hover::before { opacity: 1; }

.hc-teaser-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  flex-shrink: 0;
}

.hc-teaser-body { flex: 1; display: flex; flex-direction: column; gap: var(--s-2); }

.hc-teaser-title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.hc-teaser-desc {
  font-size: var(--t-sm);
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

.hc-teaser-metric {
  display: inline-flex;
  align-items: center;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--blue-400);
  background: rgba(56,189,248,.08);
  border: 1px solid rgba(56,189,248,.15);
  border-radius: var(--r-full);
  padding: 4px 12px;
  width: fit-content;
  letter-spacing: 0.01em;
  margin-top: auto;
}

/* Journey bridge — sits between teaser cards and footer CTA strip */
.hc-showcase-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-8);
  position: relative;
}

.hc-bridge-content { display: flex; flex-direction: column; gap: var(--s-2); }

.hc-bridge-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.hc-bridge-text {
  font-size: var(--t-base);
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  max-width: 52ch;
}

@media (max-width: 1023px) {
  .hc-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-showcase-stat { padding: var(--s-4) var(--s-6); }
}

@media (max-width: 767px) {
  .hc-teaser-grid { grid-template-columns: 1fr; }
  .hc-showcase-bridge {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-showcase-cta-actions { flex-wrap: wrap; }
}

/* ==========================================================================
   Features
   ========================================================================== */
.feat-section {
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.feat-section .how-section-title,
.feat-section .how-section-sub {
  text-align: center;
}

.feat-section .how-divider {
  margin: var(--s-6) auto var(--s-12);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-5);
  padding: var(--s-8) var(--s-8);
  background: var(--color-bg);
  transition: background var(--dur) var(--ease);
}

.feat-item:hover {
  background: var(--blue-50);
}

.feat-item-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.feat-item:hover .feat-item-icon {
  background: var(--blue-100);
  border-color: var(--blue-200);
}

.feat-item-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding-top: 2px;
}

.feat-item-title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.feat-item-desc {
  font-size: var(--t-base);
  color: var(--color-text-2);
  line-height: 1.7;
}

.feat-em {
  font-style: normal;
  font-weight: 600;
  color: var(--blue-700);
}

@media (max-width: 767px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-item { padding: var(--s-6) var(--s-6); }
}

/* ==========================================================================
   Platform Differentiators
   ========================================================================== */
.platform-diff-section {
  padding: clamp(56px, 6vw, 80px) 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.platform-diff-header {
  text-align: center;
  margin-bottom: var(--s-12);
}

.platform-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-1);
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

.platform-diff-item {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  padding: var(--s-8) var(--s-7);
  background: var(--color-bg);
  transition: background var(--dur) var(--ease);
}

.platform-diff-item:hover {
  background: var(--blue-50);
}

.platform-diff-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.platform-diff-item:hover .platform-diff-icon {
  background: var(--blue-100);
  border-color: var(--blue-200);
}

.platform-diff-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.platform-diff-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-700);
}

.platform-diff-title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.platform-diff-desc {
  font-size: var(--t-sm);
  color: var(--color-text-2);
  line-height: 1.7;
}

@media (max-width: 1023px) {
  .platform-diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 599px) {
  .platform-diff-grid { grid-template-columns: 1fr; }
}
