/* ═══════════════════════════════════════════════════════
   Print Flow ERP — Design System v2
   Font: Plus Jakarta Sans
   Brand: #FFA558 (orange) | #010256 (navy)
   Pattern: Enterprise Gateway / Feature-Rich Showcase
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── Tokens ──────────────────────────────────────────── */
:root {
  /* Brand */
  --orange:        #FFA558;
  --orange-dark:   #E8893A;
  --orange-light:  #FFD4A8;
  --navy:          #010256;
  --navy-mid:      #04045e;
  --navy-light:    #0a0e8a;

  /* Neutrals (slate scale) */
  --slate-50:  #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;
  --white:     #FFFFFF;

  /* Semantic */
  --bg:          var(--white);
  --bg-subtle:   var(--slate-50);
  --text:        var(--slate-900);
  --text-muted:  var(--slate-600);
  --text-faint:  var(--slate-500);
  --border:      var(--slate-200);

  /* Elevation */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(1,2,86,.07), 0 0 0 1px rgba(1,2,86,.04);
  --shadow-lg:  0 12px 40px rgba(1,2,86,.11), 0 0 0 1px rgba(1,2,86,.04);
  --shadow-xl:  0 24px 64px rgba(1,2,86,.16);
  --shadow-card: 0 2px 16px rgba(1,2,86,.07), 0 0 0 1px rgba(1,2,86,.05);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:  150ms;
  --dur-base:  220ms;
  --dur-slow:  350ms;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ── Typography scale ────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.5vw, 44px); }
h3 { font-size: clamp(18px, 2vw, 22px); }

p { line-height: 1.7; max-width: 68ch; }

/* ── Layout ──────────────────────────────────────────── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

/* ── Utility ─────────────────────────────────────────── */
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.bg-navy     { background: var(--navy); }
.bg-subtle   { background: var(--bg-subtle); }
.bg-light    { background: var(--bg-subtle); }

.gradient-text {
  background: linear-gradient(135deg, var(--orange), #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-fast);
  white-space: nowrap;
  border: none;
  user-select: none;
  -webkit-user-select: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 2px 0 rgba(0,0,0,.12), 0 4px 16px rgba(255,165,88,.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 2px 0 rgba(0,0,0,.12), 0 8px 28px rgba(255,165,88,.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(1,2,86,.3);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(1,2,86,.4);
}

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 17px; }

/* ── Badge ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
}
.badge-orange {
  background: rgba(255,165,88,.12);
  color: var(--orange-dark);
  border: 1px solid rgba(255,165,88,.25);
}
.badge-navy {
  background: rgba(1,2,86,.08);
  color: var(--navy);
  border: 1px solid rgba(1,2,86,.12);
}
.badge-white {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 24px rgba(1,2,86,.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-right: auto;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav-links a:hover {
  background: var(--slate-100);
  color: var(--navy);
}
.nav-links a.active {
  background: rgba(1,2,86,.06);
  color: var(--navy);
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  margin-left: auto;
  border-radius: var(--radius-sm);
}
.hamburger:hover { background: var(--slate-100); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 11px 12px;
  font-weight: 500;
  font-size: 15px;
  color: var(--slate-700);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}
.mobile-nav a:hover { background: var(--slate-100); color: var(--navy); }
.mobile-nav .btn { margin-top: 10px; justify-content: center; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 96px 0 80px;
}

/* Gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,165,88,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 45%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,165,88,.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Dot grid overlay */
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 60px);
}

.hero h1 .accent { color: var(--orange); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 48ch;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.hero-trust-dots {
  display: flex;
  gap: 4px;
}
.hero-trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .7;
}
.hero-trust span { color: rgba(255,255,255,.7); font-weight: 500; }

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

.hero-visual-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-visual-card img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
  display: block;
}

/* Floating stat cards */
.hero-stats {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-stat {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hero-stat-icon {
  width: 34px; height: 34px;
  background: rgba(255,165,88,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg { width: 17px; height: 17px; color: var(--orange); }
.hero-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* ── Trust strip ─────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: var(--white);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--slate-500);
  white-space: nowrap;
  padding-right: 32px;
  border-right: 1px solid var(--border);
  margin-right: 32px;
  flex-shrink: 0;
}
.trust-cities {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-city {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  white-space: nowrap;
}
.trust-city svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════════════════ */
.problem-intro {
  max-width: 680px;
  margin-bottom: 56px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.problem-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background var(--dur-base);
  cursor: default;
}
.problem-card:hover { background: var(--slate-50); }

.problem-icon {
  width: 48px; height: 48px;
  background: rgba(255,165,88,.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.problem-icon svg { width: 22px; height: 22px; }

.problem-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════════════
   SOLUTION / PERSONA TABS
   ═══════════════════════════════════════════════════════ */
.persona-tabs {
  display: flex;
  gap: 4px;
  background: var(--slate-100);
  border-radius: var(--radius-full);
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
}

.persona-tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  cursor: pointer;
  transition: background var(--dur-base), color var(--dur-base), box-shadow var(--dur-base);
  border: none;
  background: none;
  user-select: none;
}
.persona-tab:hover { color: var(--navy); }
.persona-tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.persona-panel { display: none; }
.persona-panel.active { display: block; }

/* ═══════════════════════════════════════════════════════
   MODULE CARDS
   ═══════════════════════════════════════════════════════ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.module-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  opacity: 0;
  transition: opacity var(--dur-base);
}
.module-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.module-card:hover::before { opacity: 1; }

.module-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.module-icon svg { width: 24px; height: 24px; color: var(--orange); }

.module-for {
  display: inline-block;
  background: var(--slate-100);
  color: var(--slate-600);
  border-radius: var(--radius-full);
  padding: 3px 11px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  width: fit-content;
}

.module-card h3 {
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
}

.module-card .capability {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.module-card .impact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,165,88,.08);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13px;
  color: var(--slate-700);
  font-weight: 500;
  border: 1px solid rgba(255,165,88,.15);
  margin-top: auto;
}
.module-card .impact svg {
  width: 14px; height: 14px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS — 8-STAGE
   ═══════════════════════════════════════════════════════ */
.workflow-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

.workflow-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base),
              background var(--dur-base);
  cursor: default;
}
.workflow-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}
.workflow-pill:hover .pill-num { background: var(--orange); color: var(--navy); }

.pill-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-base), color var(--dur-base);
}

/* 3-step summary */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 40px;
}

.step {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  transition: background var(--dur-base);
}
.step:hover { background: var(--slate-50); }

.step-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(1,2,86,.06);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.step h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 100%;
}
.step-arrow {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.step-arrow svg { width: 14px; height: 14px; color: var(--navy); }

/* ═══════════════════════════════════════════════════════
   GROWTH / SCALE SECTION
   ═══════════════════════════════════════════════════════ */
.growth-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.growth-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,165,88,.12) 0%, transparent 65%);
  pointer-events: none;
}

.growth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.growth-section .section-title { color: var(--white); }
.growth-section .section-sub   { color: rgba(255,255,255,.6); }

.growth-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.growth-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.growth-feature-icon {
  width: 42px; height: 42px;
  background: rgba(255,165,88,.12);
  border: 1px solid rgba(255,165,88,.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.growth-feature-icon svg { width: 18px; height: 18px; color: var(--orange); }

.growth-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.growth-feature p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 100%;
}

.growth-visual-wrap {
  position: relative;
}

.growth-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
}
.growth-card img {
  width: 100%;
  border-radius: var(--radius-lg);
  opacity: .92;
}
.growth-card-caption {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

/* Floating badge on growth card */
.growth-badge {
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--orange);
  color: var(--navy);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,165,88,.4);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials-section { background: var(--slate-50); }

.cities-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 0 40px;
  flex-wrap: wrap;
}
.city-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
}
.city-item svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 14px; height: 14px;
  color: var(--orange);
  fill: var(--orange);
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-avatar svg { width: 20px; height: 20px; color: var(--navy); }
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}

.placeholder-tag {
  display: inline-block;
  background: rgba(255,165,88,.1);
  color: var(--orange-dark);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */
.final-cta {
  background: var(--orange);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(255,255,255,.2) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta h2 {
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.final-cta p {
  color: rgba(1,2,86,.7);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 40px;
}
.final-cta .disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(1,2,86,.5);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--slate-900);
  color: rgba(255,255,255,.6);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--orange); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  transition: background var(--dur-fast), color var(--dur-fast);
  cursor: pointer;
}
.footer-social a:hover { background: var(--orange); color: var(--navy); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom .highlight { color: var(--orange); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 45%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,165,88,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 18px; max-width: 600px; margin: 0 auto; }

/* ── Breadcrumb ──────────────────────────────────────── */
.breadcrumb {
  background: var(--slate-50);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--slate-700);
  font-weight: 500;
  transition: color var(--dur-fast);
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep {
  margin: 0 8px;
  color: var(--slate-300);
}

/* ═══════════════════════════════════════════════════════
   FEATURES PAGE
   ═══════════════════════════════════════════════════════ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.feature-block:last-child { border-bottom: none; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 16px;
}
.feature-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text);
}
.feature-list li svg {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-screenshot {
  background: var(--slate-100);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--slate-300);
  color: var(--slate-500);
  font-size: 14px;
  gap: 12px;
}
.feature-screenshot svg { width: 44px; height: 44px; color: var(--slate-300); }

/* Workflow stage pills on features page */
.stage-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.stage-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  box-shadow: var(--shadow-sm);
  transition: background var(--dur-base), color var(--dur-base);
}
.stage-pill:hover { background: var(--navy); color: var(--white); border-color: transparent; }
.stage-pill:hover .stage-num { background: var(--orange); color: var(--navy); }
.stage-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-base), color var(--dur-base);
}

/* ═══════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
  border: 2px solid var(--orange);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 10px;
}
.pricing-card h3 { font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.pricing-card .price-label {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-card .price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text);
}
.pricing-features li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange); margin-top: 1px; }
.pricing-features li.disabled { color: var(--slate-400); }
.pricing-features li.disabled svg { color: var(--slate-300); }

/* Accordion */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none; border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
}
.accordion-trigger svg { transition: transform var(--dur-base); flex-shrink: 0; color: var(--orange); width: 18px; height: 18px; }
.accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.accordion-body { display: none; padding-bottom: 20px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.accordion-body.open { display: block; }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-box .stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  display: block;
  letter-spacing: -0.03em;
}
.stat-box .stat-num span { color: var(--orange); }
.stat-box p { font-size: 13px; color: var(--text-muted); margin-top: 4px; max-width: 100%; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform var(--dur-base) var(--ease-out);
}
.value-card:hover { transform: translateY(-3px); }
.value-card .value-icon {
  width: 44px; height: 44px;
  background: rgba(255,165,88,.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.value-card .value-icon svg { width: 20px; height: 20px; color: var(--orange); }
.value-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.value-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; max-width: 100%; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 { font-size: 28px; color: var(--navy); margin-bottom: 10px; }
.contact-info > p { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; max-width: 100%; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--slate-100);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--navy); }
.contact-item h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .5px; }
.contact-item p  { font-size: 14px; color: var(--text-muted); max-width: 100%; }
.contact-item a  { color: var(--navy); font-weight: 500; }

.wa-button {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #22C55E;
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 16px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: background var(--dur-fast), transform var(--dur-base) var(--ease-out);
  margin-bottom: 32px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(34,197,94,.3);
}
.wa-button svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-button:hover { background: #16a34a; transform: translateY(-2px); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form h3 { font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.contact-form > p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; max-width: 100%; }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-700);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.form-group label .req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,165,88,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ═══════════════════════════════════════════════════════
   BLOG PAGES
   ═══════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.blog-card-thumb {
  background: var(--navy);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(255,165,88,.2) 0%, transparent 60%);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.blog-card-thumb svg { width: 40px; height: 40px; color: var(--orange); flex-shrink: 0; }
.blog-card-thumb-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-tag {
  display: inline-block;
  background: rgba(255,165,88,.1);
  color: var(--orange-dark);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
  width: fit-content;
}

.blog-card h2 { font-size: 19px; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.blog-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 22px; max-width: 100%; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 18px;
}
.blog-meta svg { width: 13px; height: 13px; color: var(--orange); display: inline; margin-right: 4px; }

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  transition: color var(--dur-fast), gap var(--dur-base);
}
.blog-read-more:hover { color: var(--orange); gap: 10px; }
.blog-read-more svg { width: 14px; height: 14px; }

/* Article layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.article-body { min-width: 0; }
.article-header { margin-bottom: 40px; }
.article-header h1 { font-size: clamp(26px, 3.5vw, 42px); color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.article-meta { display: flex; align-items: center; gap: 20px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.article-meta svg { width: 13px; height: 13px; color: var(--orange); display: inline; margin-right: 3px; }
.article-divider { height: 3px; background: linear-gradient(90deg, var(--orange), var(--navy)); border-radius: 2px; margin: 24px 0 36px; }

.article-content h2 { font-size: clamp(20px, 2.5vw, 26px); color: var(--navy); margin: 40px 0 14px; }
.article-content h3 { font-size: 18px; color: var(--navy); margin: 28px 0 10px; }
.article-content p  { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 0 0 20px 20px; }
.article-content li { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 10px; }
.article-content strong { color: var(--navy); }
.article-pullquote {
  border-left: 4px solid var(--orange);
  background: var(--slate-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px; margin: 32px 0;
  font-size: 17px; font-style: italic; color: var(--navy); line-height: 1.6;
}
.article-highlight {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 32px; margin: 36px 0;
}
.article-highlight h3 { color: var(--white); margin: 0 0 16px; font-size: 17px; }
.article-highlight ul { margin: 0; list-style: none; }
.article-highlight li { color: rgba(255,255,255,.75); font-size: 15px; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.article-highlight li svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.article-cta-inline { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); border-radius: var(--radius-lg); padding: 32px; text-align: center; margin: 48px 0; }
.article-cta-inline h3 { color: var(--navy); margin-bottom: 8px; font-size: 20px; }
.article-cta-inline p  { color: rgba(1,2,86,.75); margin-bottom: 20px; font-size: 15px; max-width: 100%; }
.article-tags { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }
.article-tags span { font-weight: 700; color: var(--navy); margin-right: 10px; font-size: 13px; }
.article-tags a { display: inline-block; background: var(--slate-100); color: var(--slate-700); border-radius: 6px; padding: 4px 12px; font-size: 13px; margin: 4px 4px 4px 0; transition: background var(--dur-fast), color var(--dur-fast); }
.article-tags a:hover { background: var(--navy); color: var(--white); }

/* Sidebar */
.article-sidebar { position: sticky; top: 80px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-card); border: 1px solid var(--border); margin-bottom: 20px; }
.sidebar-widget h4 { font-size: 11px; color: var(--navy); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-link { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); text-decoration: none; align-items: flex-start; cursor: pointer; }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; }
.sidebar-link p { font-size: 13px; color: var(--navy); line-height: 1.4; transition: color var(--dur-fast); }
.sidebar-link:hover p { color: var(--orange); }
.toc-link { display: block; padding: 7px 0 7px 12px; font-size: 13px; color: var(--text-muted); border-left: 2px solid var(--border); margin-bottom: 2px; transition: color var(--dur-fast), border-color var(--dur-fast); }
.toc-link:hover { color: var(--navy); border-left-color: var(--orange); }

/* Comparison table */
.comparison-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 14px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.comparison-table th { background: var(--navy); color: var(--white); padding: 13px 16px; text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--slate-50); }
.comparison-table .bad  { color: #dc2626; }
.comparison-table .good { color: #16a34a; }

/* Investor checklist */
.investor-checklist { list-style: none; margin: 0 0 24px 0; }
.investor-checklist li { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text); }
.investor-checklist li:last-child { border-bottom: none; }
.investor-checklist li svg { color: var(--orange); flex-shrink: 0; margin-top: 1px; width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(1,2,86,.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 720px;
  width: 100%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--slate-100);
  border: none; border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: background var(--dur-fast);
}
.modal-close:hover { background: rgba(255,165,88,.15); color: var(--navy); }
.modal-close svg { width: 16px; height: 16px; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; margin-top: 16px; border-radius: var(--radius-lg); overflow: hidden; background: var(--slate-900); }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ═══════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════════════════════
   NEW / LIVE TAGS
   ═══════════════════════════════════════════════════════ */
.tag-new, .tag-live {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .6px;
  white-space: nowrap;
}
.tag-new {
  background: rgba(255,165,88,.15);
  color: var(--orange-dark);
  border: 1px solid rgba(255,165,88,.32);
}
.tag-live {
  background: rgba(16,185,129,.12);
  color: #047857;
  border: 1px solid rgba(16,185,129,.28);
}
.tag-live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #10B981; flex-shrink: 0;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.55); }
  70%  { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
/* On-dark variant for the launch section */
.launch-section .tag-live { background: rgba(16,185,129,.18); color: #6EE7B7; border-color: rgba(16,185,129,.4); }
.launch-section .tag-new  { background: rgba(255,165,88,.18); color: var(--orange-light); border-color: rgba(255,165,88,.4); }

/* ═══════════════════════════════════════════════════════
   JUST LAUNCHED — new feature spotlight (on navy)
   ═══════════════════════════════════════════════════════ */
.launch-section { background: var(--navy); position: relative; overflow: hidden; }
.launch-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px circle at 15% 0%, rgba(255,165,88,.10), transparent 60%),
    radial-gradient(500px circle at 100% 100%, rgba(10,14,138,.6), transparent 55%);
  pointer-events: none;
}
.launch-section .container { position: relative; z-index: 1; }
.launch-section .section-label { color: var(--orange-light); }
.launch-section .section-title { color: var(--white); }
.launch-section .section-sub { color: rgba(255,255,255,.72); }

.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.launch-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base), background var(--dur-base);
}
.launch-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,165,88,.45);
  background: rgba(255,255,255,.07);
}
.launch-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.launch-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.launch-icon svg { width: 26px; height: 26px; color: var(--navy); }
.launch-card h3 { color: var(--white); font-size: 19px; }
.launch-card p { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.65; max-width: none; }
.launch-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 4px; }
.launch-chip {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

/* Tag inside a module card header */
.module-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }

/* ═══════════════════════════════════════════════════════
   PRICING — package detail extensions
   ═══════════════════════════════════════════════════════ */
.pricing-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto; margin-right: auto;
}
.pricing-card .price-original {
  font-size: 16px; color: var(--text-faint);
  text-decoration: line-through; margin-bottom: 2px;
}
.pricing-card .price-main { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }
.pricing-card .price-amount {
  font-size: 38px; font-weight: 800; color: var(--navy);
  letter-spacing: -.02em; line-height: 1;
}
.pricing-card .price-period { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.pricing-card .price-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.price-save {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,.1); color: #047857;
  border: 1px solid rgba(16,185,129,.24);
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.price-trial {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,165,88,.12); color: var(--orange-dark);
  border: 1px solid rgba(255,165,88,.28);
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.price-trial svg, .price-save svg { width: 13px; height: 13px; flex-shrink: 0; }
.price-breakdown {
  display: flex; flex-direction: column; gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.price-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.price-row .price-row-label { font-size: 13.5px; color: var(--text-muted); line-height: 1.45; }
.price-row .price-row-label small { display: block; font-size: 11.5px; color: var(--text-faint); margin-top: 2px; }
.price-row .price-row-value { font-size: 14px; color: var(--navy); font-weight: 700; text-align: right; white-space: nowrap; }
.pricing-card.featured.best-value::before { content: 'Best Value'; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.reverse { direction: ltr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .growth-layout { grid-template-columns: 1fr; gap: 48px; }
  .mission-grid { grid-template-columns: 1fr; }
  .launch-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-grid.two-col { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 64px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .problem-grid { grid-template-columns: 1fr 1fr; }

  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .persona-tabs { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 520px) {
  .problem-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-cities { gap: 16px; }
}
