/* ═══════════════════════════════════════════════════════════════
   SCRIBBLE — Shared Stylesheet
   Navy / Teal palette  ·  goscribble.ai
═══════════════════════════════════════════════════════════════ */

:root {
  --navy:       #0C1F3F;
  --navy-mid:   #0A2A4A;
  --teal:       #00B896;
  --teal-dark:  #009E80;
  --teal-light: #E6F9F5;
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --gray-light: #EEF2F7;
  --gray-mid:   #CBD5E1;
  --gray:       #64748B;
  --gray-dark:  #334155;
  --text:       #0F172A;
  --red:        #E53E3E;
  --amber:      #D97706;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ─── ANNOUNCEMENT BANNER ─────────────────────────────────────── */
.banner {
  background: linear-gradient(90deg, #009E80, #00B896, #0C1F3F);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}
.banner a { color: white; text-decoration: underline; }
.banner-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: white; cursor: pointer;
  font-size: 18px; opacity: 0.7; line-height: 1;
}
.banner-close:hover { opacity: 1; }

/* ─── NAV ─────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-mark {
  display: flex; align-items: center;
}
.nav-logo-mark img {
  height: 40px;
  width: auto;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-icon img {
  height: 54px;
  width: auto;
}
.nav-logo-text { font-size: 34px; font-weight: 700; color: white; letter-spacing: 0; font-family: 'Caveat', cursive; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-nav-ghost {
  color: white; background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 9px 20px; border-radius: 7px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
}
.btn-nav-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-nav-primary {
  background: var(--teal); color: white;
  border: none; padding: 9px 22px; border-radius: 7px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav-primary:hover { background: var(--teal-dark); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-mobile-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--navy); z-index: 99;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 16px; font-weight: 500; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: white; }
.mobile-menu .btn-nav-primary {
  display: block; text-align: center; margin-top: 16px;
  padding: 14px; font-size: 15px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  background: var(--teal); color: white;
  padding: 15px 30px; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none; border: none;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(0,184,150,0.4);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,184,150,0.5); }
.btn-secondary {
  color: white; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 15px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.btn-outline {
  color: var(--teal); background: transparent;
  border: 2px solid var(--teal);
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--teal); color: white; }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #041C35 100%);
  padding: 100px 40px 0;
  overflow: hidden; position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,184,150,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  position: relative; z-index: 1;
}
.hero-inner.centered {
  grid-template-columns: 1fr;
  max-width: 760px;
  text-align: center;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,184,150,0.15);
  border: 1px solid rgba(0,184,150,0.35);
  color: var(--teal);
  font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 {
  font-size: 50px; font-weight: 800; line-height: 1.1;
  color: white; letter-spacing: -1.5px; margin-bottom: 22px;
}
.hero h1 span { color: var(--teal); }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.7;
  margin-bottom: 36px; max-width: 500px; font-weight: 300;
}
.hero-inner.centered .hero-sub { margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 14px; align-items: center; margin-bottom: 56px; flex-wrap: wrap; }
.hero-inner.centered .hero-ctas { justify-content: center; }
.hero-trust { display: flex; align-items: center; gap: 16px; padding-top: 28px; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--navy);
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white;
  margin-left: -8px;
}
.hero-trust-avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #00b09b, #96c93d); }
.hero-trust-avatars span:nth-child(2) { background: linear-gradient(135deg, #f093fb, #f5576c); }
.hero-trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.hero-trust-text { font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-trust-text strong { color: white; }

/* Phone showcase hero */
.hero-visual { position: relative; padding-top: 20px; display: flex; align-items: flex-start; justify-content: center; }

/* ─── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  background: white;
  border-bottom: 1px solid var(--gray-light);
  padding: 28px 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stats-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.stat-item { text-align: center; flex: 1; padding: 0 24px; border-right: 1px solid var(--gray-light); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -1px; line-height: 1; }
.stat-number span { color: var(--teal); }
.stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; font-weight: 500; }
.stat-badges { display: flex; align-items: center; gap: 16px; padding: 0 24px; }
.badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid var(--gray-light);
  font-size: 12px; font-weight: 600; color: var(--gray-dark);
  white-space: nowrap;
}

/* ─── PAGE HERO (non-homepage) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,184,150,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-size: 44px; font-weight: 800; color: white; letter-spacing: -1.2px; line-height: 1.15; margin-bottom: 18px; }
.page-hero h1 span { color: var(--teal); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 36px; }

/* ─── SECTIONS ────────────────────────────────────────────────── */
section { padding: 96px 40px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section-title {
  font-size: 38px; font-weight: 800; line-height: 1.15;
  color: var(--navy); letter-spacing: -1px; margin-bottom: 18px;
}
.section-sub { font-size: 17px; color: var(--gray); line-height: 1.65; max-width: 580px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── PROBLEM ─────────────────────────────────────────────────── */
.problem-bg { background: var(--off-white); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.problem-visual {
  background: white; border-radius: 16px; padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 1px solid var(--gray-light);
}
.day-title { font-size: 13px; font-weight: 700; color: var(--gray); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; }
.day-item { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.day-item-label { font-size: 13px; color: var(--gray-dark); width: 140px; flex-shrink: 0; }
.day-bar-wrap { flex: 1; height: 28px; background: var(--gray-light); border-radius: 6px; overflow: hidden; position: relative; }
.day-bar { height: 100%; border-radius: 6px; display: flex; align-items: center; padding-left: 10px; }
.day-bar span { font-size: 11px; font-weight: 700; color: white; }
.day-item-pct { font-size: 13px; font-weight: 700; color: var(--gray-dark); width: 40px; text-align: right; }
.day-bar.doc { background: linear-gradient(90deg, var(--red), #FF6B6B); width: 33%; }
.day-bar.visit { background: linear-gradient(90deg, #009E80, #00B896); width: 29%; }
.day-bar.commute { background: linear-gradient(90deg, #4A5568, #718096); width: 20%; }
.day-bar.coord { background: linear-gradient(90deg, var(--amber), #F6AD55); width: 8%; }
.day-bar.misc { background: linear-gradient(90deg, #805AD5, #9F7AEA); width: 10%; }
.day-note {
  margin-top: 20px; padding: 12px 16px;
  background: rgba(229,62,62,0.07); border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0; font-size: 13px; color: var(--red); font-weight: 600;
}
.problem-points { display: flex; flex-direction: column; gap: 24px; }
.problem-point { display: flex; gap: 16px; align-items: flex-start; }
.problem-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(229,62,62,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.problem-point h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.problem-point p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ─── SOLUTION ────────────────────────────────────────────────── */
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.solution-card {
  background: white; border-radius: 14px; padding: 32px 28px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.25s;
}
.solution-card:hover { border-color: var(--teal); box-shadow: 0 8px 32px rgba(0,184,150,0.12); transform: translateY(-3px); }
.solution-step {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: white;
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.solution-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.solution-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.solution-card .tag {
  display: inline-block; margin-top: 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  background: var(--teal-light); color: var(--teal-dark);
  padding: 4px 10px; border-radius: 100px;
}

/* ─── FEATURE CARDS ───────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feature-card {
  background: white; border-radius: 14px; padding: 28px;
  border: 1px solid var(--gray-light);
  transition: all 0.25s;
}
.feature-card:hover { border-color: var(--teal); box-shadow: 0 8px 32px rgba(0,184,150,0.1); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ─── OUTCOMES ────────────────────────────────────────────────── */
.outcomes-bg { background: var(--navy); }
.outcomes-bg .section-title { color: white; }
.outcomes-bg .section-sub { color: rgba(255,255,255,0.6); }
.outcomes-bg .section-eyebrow { color: var(--teal); }
.outcomes-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.outcomes-tab {
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5); transition: all 0.2s;
  background: none;
}
.outcomes-tab.active { background: var(--teal); color: white; border-color: var(--teal); }
.outcomes-tab:hover:not(.active) { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.outcome-panel { display: none; }
.outcome-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.outcome-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 28px 24px; transition: all 0.2s;
}
.outcome-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,184,150,0.35); }
.outcome-number { font-size: 42px; font-weight: 800; color: var(--teal); letter-spacing: -1.5px; line-height: 1; margin-bottom: 8px; }
.outcome-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.outcome-source { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 12px; }

/* ─── COMPARISON TABLE ────────────────────────────────────────── */
.comp-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--gray-light);
  margin-top: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.comp-table th, .comp-table td { padding: 16px 24px; text-align: center; font-size: 14px; }
.comp-table th { background: var(--navy); color: white; font-weight: 700; font-size: 13px; }
.comp-table th:first-child { text-align: left; }
.comp-table td:first-child { text-align: left; color: var(--gray-dark); font-weight: 500; }
.comp-table tr:nth-child(even) td { background: var(--off-white); }
.comp-table tr:nth-child(odd) td { background: white; }
.comp-table .scribble-col { background: rgba(0,184,150,0.07) !important; }
.comp-table th.scribble-col { background: #00B896 !important; color: white !important; }
.check { color: var(--teal); font-size: 18px; font-weight: 700; }
.cross { color: var(--gray-mid); font-size: 18px; }
.partial { color: var(--amber); font-size: 13px; font-weight: 600; }

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-bg { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: white; border-radius: 14px; padding: 28px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; transition: all 0.25s;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.testimonial-stars { color: #F6AD55; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 15px; color: var(--gray-dark); line-height: 1.7;
  flex: 1; font-style: italic;
  border-left: 3px solid var(--teal);
  padding-left: 16px; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: white; flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.testimonial-title { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ─── INTEGRATIONS STRIP ──────────────────────────────────────── */
.int-strip {
  background: white; padding: 48px 40px;
  border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light);
}
.int-inner { max-width: 1160px; margin: 0 auto; }
.int-label {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 32px;
}
.int-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.int-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 10px;
  border: 1px solid var(--gray-light);
  color: var(--gray-dark); font-weight: 700; font-size: 14px; transition: all 0.2s;
  text-decoration: none;
}
.int-logo:hover { border-color: var(--teal); color: var(--teal); }
.int-logo-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 16px; }

/* ─── INTEGRATION FULL GRID ───────────────────────────────────── */
.int-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.int-card {
  background: white; border-radius: 14px; padding: 28px;
  border: 1px solid var(--gray-light);
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.25s;
}
.int-card:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(0,184,150,0.1); transform: translateY(-2px); }
.int-card-icon { font-size: 32px; }
.int-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); }
.int-card p { font-size: 14px; color: var(--gray); line-height: 1.6; flex: 1; }
.int-card-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  background: var(--teal-light); color: var(--teal-dark);
}
.int-card-badge.coming { background: var(--gray-light); color: var(--gray); }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.faq-item {
  background: white; border-radius: 12px;
  border: 1px solid var(--gray-light); overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--teal); }
.faq-q {
  font-size: 15px; font-weight: 700; color: var(--navy);
  padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  user-select: none;
}
.faq-q-text { flex: 1; }
.faq-chevron { font-size: 12px; color: var(--teal); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  font-size: 14px; color: var(--gray); line-height: 1.65;
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 300px; }

/* ─── PRICING ─────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.pricing-card {
  background: white; border-radius: 16px; padding: 36px 32px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative; transition: all 0.25s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.pricing-card.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 8px 40px rgba(0,184,150,0.15);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.pricing-headline { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--gray); margin-bottom: 28px; line-height: 1.5; }
.pricing-price {
  font-size: 38px; font-weight: 800; color: var(--navy);
  letter-spacing: -1px; line-height: 1; margin-bottom: 4px;
}
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--gray); }
.pricing-billing { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--gray-dark); display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-features li.disabled::before { content: '—'; color: var(--gray-mid); }
.pricing-features li.disabled { color: var(--gray-mid); }
.pricing-cta { width: 100%; padding: 14px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; text-align: center; text-decoration: none; display: block; }
.pricing-cta.primary { background: var(--teal); color: white; }
.pricing-cta.primary:hover { background: var(--teal-dark); }
.pricing-cta.outline { background: transparent; color: var(--navy); border: 2px solid var(--gray-light); }
.pricing-cta.outline:hover { border-color: var(--teal); color: var(--teal); }

/* ─── EDITORIAL HERO ──────────────────────────────────────────── */
.hero-editorial {
  background: linear-gradient(170deg, #080F1E 0%, #0C1F3F 60%, #051529 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-editorial-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}

/* Ambient wave background */
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
}
.wave-1 { animation: waveDrift 8s ease-in-out infinite; }
.wave-2 { animation: waveDrift 10s ease-in-out infinite reverse; }
.wave-3 { animation: waveDrift 12s ease-in-out infinite; }
@keyframes waveDrift {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-30px) scaleY(1.05); }
}

/* Eyebrow */
.hero-ed-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 40px;
  opacity: 0.8;
}

/* Big editorial headline */
.hero-ed-h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: white;
  margin-bottom: 32px;
}
.hero-ed-h1 em {
  font-style: normal;
  color: var(--teal);
}

/* Subhead */
.hero-ed-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 400;
}

/* CTAs */
.hero-ed-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.hero-ed-link {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.hero-ed-link:hover { color: rgba(255,255,255,0.8); }

/* Stat strip */
.hero-ed-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 40px;
}
.hero-ed-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
}
.hero-ed-num {
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1;
}
.hero-ed-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.hero-ed-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-editorial { min-height: auto; padding: 0 24px; }
  .hero-editorial-inner { padding: 80px 0 60px; }
  .hero-ed-h1 { font-size: 42px; letter-spacing: -1.5px; }
  .hero-ed-sub { font-size: 17px; }
  .hero-ed-stats { flex-wrap: wrap; gap: 24px; border-top: none; padding-top: 0; }
  .hero-ed-divider { display: none; }
  .hero-ed-stat { flex: 0 0 calc(50% - 12px); }
}

/* ─── TECH LAYER STRIP ────────────────────────────────────────── */
.layer-strip {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap; margin: 48px 0 0;
  background: var(--off-white); border-radius: 16px;
  padding: 32px 24px; border: 1px solid var(--gray-light);
}
.layer-step {
  flex: 1; min-width: 140px; max-width: 180px;
  text-align: center; padding: 0 8px;
}
.layer-icon { font-size: 28px; margin-bottom: 10px; }
.layer-label {
  font-size: 13px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px; line-height: 1.3;
}
.layer-desc {
  font-size: 12px; color: var(--gray); line-height: 1.55;
}
.layer-arrow {
  font-size: 20px; color: var(--teal); font-weight: 700;
  padding: 0 4px; margin-top: 28px; flex-shrink: 0;
}
@media (max-width: 768px) {
  .layer-strip { flex-direction: column; align-items: center; gap: 20px; }
  .layer-arrow { transform: rotate(90deg); margin: 0; }
  .layer-step { max-width: 100%; }
}

/* ─── TRUST LOGOS BAR ─────────────────────────────────────────── */
.trust-bar {
  background: white;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 32px 40px;
}
.trust-bar-inner { max-width: 1160px; margin: 0 auto; }
.trust-bar-label {
  text-align: center; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gray); margin-bottom: 24px;
}
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.trust-logo-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 10px;
  border: 1px solid var(--gray-light);
  font-size: 13px; font-weight: 600; color: var(--gray-dark); line-height: 1.35;
}
.trust-logo-item small { font-weight: 400; color: var(--gray); font-size: 11px; display: block; }
.trust-logo-icon { font-size: 20px; }
.trust-logo-more { background: var(--teal-light); border-color: var(--teal); color: var(--teal-dark); font-weight: 700; }

/* Haggai trust bar */
.trust-bar-haggai {
  display: flex; align-items: center; gap: 48px; justify-content: center; flex-wrap: wrap;
}
.haggai-quote { text-align: center; max-width: 340px; }
.haggai-quote-mark {
  font-size: 64px; line-height: 0.6; color: var(--teal); font-family: Georgia, serif;
  margin-bottom: 12px; display: block;
}
.haggai-quote-text {
  font-size: 22px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.5px; line-height: 1.3; margin-bottom: 12px;
}
.haggai-quote-attr { font-size: 13px; color: var(--gray); }
.haggai-quote-attr strong { color: var(--navy); }
.haggai-divider { width: 1px; height: 80px; background: var(--gray-light); flex-shrink: 0; }
.haggai-context { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.haggai-exec { display: flex; align-items: center; gap: 12px; }
.haggai-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a4a8a);
  color: white; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.haggai-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.haggai-title { font-size: 12px; color: var(--gray); }
.haggai-corbin-quote {
  font-size: 13px; color: var(--gray-dark); font-style: italic; line-height: 1.6;
  border-left: 3px solid var(--teal); padding-left: 12px;
}
@media (max-width: 768px) {
  .haggai-divider { display: none; }
  .haggai-quote { max-width: 100%; }
}

/* ─── PAYER TOGGLE ────────────────────────────────────────────── */
.roi-payer-toggle {
  display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap;
}
.payer-btn {
  padding: 8px 20px; border-radius: 7px; font-size: 13px; font-weight: 600;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.payer-btn.active {
  background: var(--teal); color: white; border-color: var(--teal);
}
.payer-btn:hover:not(.active) { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); }

/* ─── ROI TABS ────────────────────────────────────────────────── */
.roi-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 32px;
}
.roi-tab-btn {
  padding: 10px 28px; border-radius: 8px; font-size: 14px; font-weight: 600;
  cursor: pointer; border: 2px solid var(--gray-light);
  background: white; color: var(--gray-dark); transition: all 0.2s;
}
.roi-tab-btn.active {
  background: var(--navy); color: white; border-color: var(--navy);
}
.roi-tab-btn:hover:not(.active) { border-color: var(--teal); color: var(--teal); }

/* ─── ROI CALCULATOR V2 (homepage section) ───────────────────── */
.roi-calc-v2 {
  background: var(--navy); border-radius: 20px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.roi-inputs-v2 h3, .roi-results-v2 h3 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.roi-field-v2 { margin-bottom: 28px; }
.roi-field-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.roi-field-v2 label { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; }
.roi-field-val { color: var(--teal); font-size: 22px; font-weight: 800; }
.roi-field-v2 input[type=range] { width: 100%; accent-color: var(--teal); cursor: pointer; }
.roi-range-labels { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 4px; }
.roi-assumptions { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 16px; font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.roi-result-v2 { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; margin-bottom: 12px; }
.roi-result-primary { background: linear-gradient(135deg,rgba(0,184,150,0.15),rgba(0,184,150,0.05)); border-color: rgba(0,184,150,0.3) !important; }
.roi-result-num { font-size: 40px; font-weight: 800; color: var(--teal); letter-spacing: -1.5px; line-height: 1; }
.roi-result-primary .roi-result-num { font-size: 52px; }
.roi-result-lbl { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 6px; font-weight: 600; }
.roi-result-sub { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; }

@media (max-width: 768px) {
  .trust-bar { padding: 20px; }
  .trust-logo-item { font-size: 12px; padding: 8px 12px; }
  .roi-calc-v2 { grid-template-columns: 1fr; padding: 28px; gap: 32px; }
}

/* ─── ROI CALCULATOR ──────────────────────────────────────────── */
.roi-calc {
  background: var(--navy); border-radius: 20px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-top: 56px;
}
.roi-inputs h3 { font-size: 20px; font-weight: 700; color: white; margin-bottom: 24px; }
.roi-field { margin-bottom: 20px; }
.roi-field label { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; display: block; margin-bottom: 8px; }
.roi-field input[type=range] { width: 100%; accent-color: var(--teal); cursor: pointer; }
.roi-field-val { font-size: 20px; font-weight: 700; color: var(--teal); margin-top: 4px; }
.roi-results { display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.roi-result-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 20px 24px;
}
.roi-result-number { font-size: 36px; font-weight: 800; color: var(--teal); letter-spacing: -1px; line-height: 1; }
.roi-result-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ─── BLOG / RESOURCES ────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.blog-card {
  background: white; border-radius: 14px;
  border: 1px solid var(--gray-light);
  overflow: hidden; transition: all 0.25s;
  display: flex; flex-direction: column;
  text-decoration: none;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.blog-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  background: var(--teal-light); color: var(--teal-dark);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 12px;
  text-transform: uppercase;
}
.blog-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--gray); line-height: 1.6; flex: 1; }
.blog-card-meta { font-size: 12px; color: var(--gray-mid); margin-top: 16px; }

/* ─── TEAM / ABOUT ────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.team-card {
  background: white; border-radius: 14px; padding: 32px 28px; text-align: center;
  border: 1px solid var(--gray-light);
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; color: white;
}
.team-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ─── VALUE PROPS (2-col) ─────────────────────────────────────── */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.value-item { display: flex; gap: 16px; }
.value-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.value-item h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ─── STEPS / TIMELINE ────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.step-card { text-align: center; position: relative; }
.step-card::after {
  content: '→'; position: absolute; top: 18px; right: -14px;
  color: var(--teal); font-size: 18px; font-weight: 700;
}
.step-card:last-child::after { display: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); color: white;
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* ─── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0A2A4A 50%, #041C35 100%);
  padding: 80px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,184,150,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .section-title { color: white; max-width: 620px; margin: 0 auto 16px; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 17px; max-width: 500px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ─── FOOTER ──────────────────────────────────────────────────── */
footer { background: var(--navy); padding: 56px 40px 32px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-cert { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-badge {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 6px 10px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5);
}
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── DEMO MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); z-index: 999;
  align-items: center; justify-content: center;
  padding: 20px; overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: 20px; padding: 40px;
  max-width: 680px; width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity:0; transform: scale(0.94) translateY(10px); } to { opacity:1; transform: scale(1) translateY(0); } }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 22px; cursor: pointer;
  color: var(--gray); line-height: 1; transition: color 0.2s;
}
.modal-close:hover { color: var(--navy); }
.modal-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.modal h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.5px; }
.modal-sub { font-size: 14px; color: var(--gray); margin-bottom: 28px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-dark); margin-bottom: 6px; }
.form-field input, .form-field select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-light); border-radius: 8px;
  font-size: 14px; color: var(--text);
  transition: border-color 0.2s; outline: none;
  font-family: inherit;
}
.form-field input:focus, .form-field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,184,150,0.1); }
.form-submit {
  width: 100%; padding: 15px; border-radius: 8px;
  background: var(--teal); color: white;
  font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  transition: all 0.2s; margin-top: 4px;
}
.form-submit:hover { background: var(--teal-dark); }
.modal-privacy { font-size: 12px; color: var(--gray-mid); text-align: center; margin-top: 12px; }
.modal-success { display: none; text-align: center; padding: 20px 0; }
.modal-success.show { display: block; }
.modal-success .success-icon { font-size: 48px; margin-bottom: 16px; }
.modal-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.modal-success p { font-size: 15px; color: var(--gray); }

/* ─── SCROLL ANIMATION ────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: all 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .section-title { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 64px 20px; }
  .hero { padding: 60px 20px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .page-hero { padding: 56px 20px; }
  .page-hero h1 { font-size: 32px; }
  .stats-bar { padding: 20px; }
  .stats-inner { flex-wrap: wrap; gap: 16px; }
  .stat-item { flex: 0 0 calc(50% - 8px); border-right: none; padding: 0; }
  .stat-badges { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .outcomes-grid, .outcome-panel.active { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .int-logos { gap: 12px; }
  .int-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card::after { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .roi-calc { grid-template-columns: 1fr; padding: 28px; }
  .modal-overlay { align-items: flex-end; padding: 0; overflow: hidden; }
  .modal { padding: 20px 16px; max-width: 100%; border-radius: 16px 16px 0 0; max-height: 90vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .modal h2 { font-size: 20px; }
  .modal-sub { font-size: 13px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 20px; }
  .stats-bar { display: none; }
  .banner { font-size: 12px; padding: 8px 40px 8px 16px; text-align: left; }
}


/* ═══════════════════════════════════════════════════════════════
   HERO DEVICE SHOWCASE  (laptop + floating phone)
═══════════════════════════════════════════════════════════════ */

.device-showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding-bottom: 24px;
}

/* ── Laptop frame ───────────────────────────────────────────── */
.laptop-wrap {
  position: relative;
  z-index: 1;
}

.laptop-frame {
  background: #1C2333;
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 64px rgba(0,0,0,0.55),
    0 4px 12px rgba(0,0,0,0.3);
}

.laptop-topbar {
  background: #141820;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.laptop-dots {
  display: flex;
  gap: 5px;
}

.laptop-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.laptop-dots span:nth-child(1) { background: #FF5F57; }
.laptop-dots span:nth-child(2) { background: #FEBC2E; }
.laptop-dots span:nth-child(3) { background: #28C840; }

.laptop-url {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 5px;
  font-family: monospace;
  letter-spacing: 0.02em;
}

/* ── Dashboard inside laptop ────────────────────────────────── */
.laptop-screen {
  display: flex;
  background: #F7F9FC;
  min-height: 300px;
}

.dash-sidebar {
  width: 42px;
  background: #0C1F3F;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 10px;
  flex-shrink: 0;
}

.dash-logo-mark {
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  display: flex;
  justify-content: center;
}

.dash-nav-item {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  cursor: default;
}

.dash-nav-active {
  background: rgba(0,184,150,0.18);
  color: #00B896;
}

.dash-main {
  flex: 1;
  padding: 14px 16px;
  overflow: hidden;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.dash-title {
  font-size: 14px;
  font-weight: 700;
  color: #0C1F3F;
  line-height: 1.2;
}

.dash-subtitle {
  font-size: 9px;
  color: #94A3B8;
  margin-top: 2px;
}

.dash-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-search {
  font-size: 9px;
  color: #94A3B8;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 4px 8px;
}

.dash-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #004CF2, #6319C3);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.dash-kpi {
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  border: 1px solid #E2E8F0;
}

.dash-kpi-label {
  font-size: 8px;
  color: #94A3B8;
  margin-bottom: 3px;
}

.dash-kpi-val {
  font-size: 15px;
  font-weight: 800;
  color: #0C1F3F;
  line-height: 1.1;
}

.dash-kpi-delta {
  font-size: 8px;
  margin-top: 2px;
}

.dash-kpi-delta.up { color: #00B896; }

.dash-table-wrap {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
}

.dash-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid #F1F5F9;
}

.dash-table-title {
  font-size: 10px;
  font-weight: 700;
  color: #0C1F3F;
}

.dash-table-actions {
  display: flex;
  gap: 6px;
}

.dash-tag {
  font-size: 8px;
  padding: 2px 7px;
  border-radius: 5px;
  background: #F1F5F9;
  color: #64748B;
}

.dash-tag-primary {
  background: #00B896;
  color: #fff;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 9px;
}

.dash-table thead tr {
  background: #F8FAFC;
}

.dash-table th {
  padding: 5px 10px;
  text-align: left;
  font-size: 8px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dash-table td {
  padding: 6px 10px;
  color: #334155;
  border-top: 1px solid #F1F5F9;
}

.dash-row-active {
  background: rgba(0,184,150,0.04);
}

.dash-badge {
  font-size: 7px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 99px;
}

.dash-badge-green { background: #E6F9F5; color: #00B896; }
.dash-badge-amber { background: #FEF3C7; color: #D97706; }

/* ── Laptop base/stand ──────────────────────────────────────── */
.laptop-base {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laptop-stand {
  width: 120px;
  height: 10px;
  background: linear-gradient(180deg, #1C2333 0%, #141820 100%);
  clip-path: trapezoid;
  position: relative;
}

.laptop-stand::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1C2333, #252D3E);
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.laptop-foot {
  width: 200px;
  height: 5px;
  background: linear-gradient(180deg, #252D3E, #1a2030);
  border-radius: 0 0 6px 6px;
}

/* ── Floating phone (recording) ────────────────────────────── */
.float-phone {
  position: absolute;
  bottom: -10px;
  right: -24px;
  width: 130px;
  background: #1C2333;
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 48px rgba(0,0,0,0.5);
  z-index: 3;
  overflow: hidden;
  padding: 3px;
}

.fp-notch {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 10px;
  background: #1C2333;
  border-radius: 0 0 8px 8px;
  z-index: 10;
}

.fp-inner {
  background: #fff;
  border-radius: 20px;
  padding: 18px 9px 9px;
  min-height: 220px;
}

.fp-rec-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
}

.fp-rec-dot {
  width: 7px;
  height: 7px;
  background: #EF4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-rec 1.4s ease-in-out infinite;
}

.fp-rec-title {
  font-size: 8px;
  font-weight: 700;
  color: #0C1F3F;
}

.fp-progress-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.fp-count {
  font-size: 14px;
  font-weight: 800;
  color: #0C1F3F;
  line-height: 1;
  flex-shrink: 0;
}

.fp-total {
  font-size: 8px;
  color: #9CA3AF;
  font-weight: 500;
}

.fp-bar {
  flex: 1;
  height: 4px;
  background: #E5E7EB;
  border-radius: 99px;
  overflow: hidden;
}

.fp-fill {
  width: 10%;
  height: 100%;
  background: #00B896;
  border-radius: 99px;
}

.fp-section {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9CA3AF;
  margin: 5px 0 3px;
}

.fp-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: #374151;
  padding: 2px 0;
}

.fp-done { color: #9CA3AF; }

.fp-check {
  width: 11px;
  height: 11px;
  background: #00B896;
  color: #fff;
  border-radius: 50%;
  font-size: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.fp-circle {
  width: 11px;
  height: 11px;
  border: 1.5px solid #CBD5E1;
  border-radius: 50%;
  flex-shrink: 0;
}

.fp-now {
  background: #E6F9F5;
  color: #009E80;
  font-weight: 700;
  border-radius: 5px;
  padding: 3px 4px;
  margin: 1px 0;
}

.fp-now .fp-circle {
  border-color: #00B896;
  background: rgba(0,184,150,0.15);
}

.fp-pending { color: #94A3B8; }

.fp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid #F0F0F0;
}

.fp-timer {
  font-size: 8px;
  font-weight: 700;
  color: #374151;
}

.fp-btn {
  background: #00B896;
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  padding: 4px 7px;
  border-radius: 6px;
}

/* ── Floating stat pill ─────────────────────────────────────── */
.float-stat {
  position: absolute;
  bottom: 30px;
  left: -16px;
  background: #fff;
  border-radius: 12px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
  z-index: 4;
  animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes pulse-rec {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.float-stat-icon { font-size: 20px; }

.float-stat-num {
  font-size: 15px;
  font-weight: 800;
  color: #0C1F3F;
  line-height: 1;
}

.float-stat-lbl {
  font-size: 9px;
  color: #6b7280;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO DEVICE SHOWCASE  (laptop + floating phone)
═══════════════════════════════════════════════════════════════ */

.device-showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding-bottom: 24px;
}

.laptop-wrap { position: relative; z-index: 1; }

.laptop-frame {
  background: #1C2333;
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 24px 64px rgba(0,0,0,0.55), 0 4px 12px rgba(0,0,0,0.3);
}

.laptop-topbar {
  background: #141820;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.laptop-dots { display: flex; gap: 5px; }
.laptop-dots span { width: 9px; height: 9px; border-radius: 50%; }
.laptop-dots span:nth-child(1) { background: #FF5F57; }
.laptop-dots span:nth-child(2) { background: #FEBC2E; }
.laptop-dots span:nth-child(3) { background: #28C840; }

.laptop-url {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 5px;
  font-family: monospace;
}

.laptop-screen { display: flex; background: #F7F9FC; min-height: 300px; }

.dash-sidebar {
  width: 42px;
  background: #0C1F3F;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 10px;
  flex-shrink: 0;
}

.dash-logo-mark {
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  display: flex;
  justify-content: center;
}

.dash-nav-item {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
}

.dash-nav-active { background: rgba(0,184,150,0.18); color: #00B896; }

.dash-main { flex: 1; padding: 14px 16px; overflow: hidden; }

.dash-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.dash-title { font-size: 14px; font-weight: 700; color: #0C1F3F; }
.dash-subtitle { font-size: 9px; color: #94A3B8; margin-top: 2px; }
.dash-header-right { display: flex; align-items: center; gap: 8px; }
.dash-search { font-size: 9px; color: #94A3B8; background: #fff; border: 1px solid #E2E8F0; border-radius: 6px; padding: 4px 8px; }
.dash-avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg,#004CF2,#6319C3); color:#fff; font-size:8px; font-weight:700; display:flex; align-items:center; justify-content:center; }

.dash-kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 12px; }
.dash-kpi { background: #fff; border-radius: 8px; padding: 8px 10px; border: 1px solid #E2E8F0; }
.dash-kpi-label { font-size: 8px; color: #94A3B8; margin-bottom: 3px; }
.dash-kpi-val { font-size: 15px; font-weight: 800; color: #0C1F3F; line-height: 1.1; }
.dash-kpi-delta { font-size: 8px; margin-top: 2px; }
.dash-kpi-delta.up { color: #00B896; }

.dash-table-wrap { background: #fff; border-radius: 8px; border: 1px solid #E2E8F0; overflow: hidden; }
.dash-table-header { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; border-bottom: 1px solid #F1F5F9; }
.dash-table-title { font-size: 10px; font-weight: 700; color: #0C1F3F; }
.dash-table-actions { display: flex; gap: 6px; }
.dash-tag { font-size: 8px; padding: 2px 7px; border-radius: 5px; background: #F1F5F9; color: #64748B; }
.dash-tag-primary { background: #00B896; color: #fff; }
.dash-table { width: 100%; border-collapse: collapse; font-size: 9px; }
.dash-table thead tr { background: #F8FAFC; }
.dash-table th { padding: 5px 10px; text-align: left; font-size: 8px; font-weight: 600; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.04em; }
.dash-table td { padding: 6px 10px; color: #334155; border-top: 1px solid #F1F5F9; }
.dash-row-active { background: rgba(0,184,150,0.04); }
.dash-badge { font-size: 7px; font-weight: 600; padding: 2px 7px; border-radius: 99px; }
.dash-badge-green { background: #E6F9F5; color: #00B896; }
.dash-badge-amber { background: #FEF3C7; color: #D97706; }

.laptop-base { display: flex; flex-direction: column; align-items: center; }
.laptop-stand { width: 0; height: 0; border-left: 60px solid transparent; border-right: 60px solid transparent; border-top: 10px solid #252D3E; }
.laptop-foot { width: 200px; height: 5px; background: linear-gradient(180deg,#252D3E,#1a2030); border-radius: 0 0 6px 6px; }

/* Floating phone */
.float-phone {
  position: absolute;
  bottom: -10px; right: -24px;
  width: 130px;
  background: #1C2333;
  border-radius: 22px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 20px 48px rgba(0,0,0,0.5);
  z-index: 3;
  overflow: hidden;
  padding: 3px;
}

.fp-notch {
  position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 10px;
  background: #1C2333;
  border-radius: 0 0 8px 8px;
  z-index: 10;
}

.fp-inner { background: #fff; border-radius: 20px; padding: 18px 9px 9px; min-height: 220px; }

.fp-rec-header { display: flex; align-items: center; gap: 5px; margin-bottom: 7px; }
.fp-rec-dot { width: 7px; height: 7px; background: #EF4444; border-radius: 50%; flex-shrink: 0; animation: pulse-rec 1.4s ease-in-out infinite; }
.fp-rec-title { font-size: 8px; font-weight: 700; color: #0C1F3F; }

.fp-progress-row { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.fp-count { font-size: 14px; font-weight: 800; color: #0C1F3F; line-height: 1; flex-shrink: 0; }
.fp-total { font-size: 8px; color: #9CA3AF; font-weight: 500; }
.fp-bar { flex: 1; height: 4px; background: #E5E7EB; border-radius: 99px; overflow: hidden; }
.fp-fill { width: 10%; height: 100%; background: #00B896; border-radius: 99px; }

.fp-section { font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #9CA3AF; margin: 5px 0 3px; }
.fp-item { display: flex; align-items: center; gap: 4px; font-size: 8px; color: #374151; padding: 2px 0; }
.fp-done { color: #9CA3AF; }
.fp-check { width: 11px; height: 11px; background: #00B896; color: #fff; border-radius: 50%; font-size: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; }
.fp-circle { width: 11px; height: 11px; border: 1.5px solid #CBD5E1; border-radius: 50%; flex-shrink: 0; }
.fp-now { background: #E6F9F5; color: #009E80; font-weight: 700; border-radius: 5px; padding: 3px 4px; margin: 1px 0; }
.fp-now .fp-circle { border-color: #00B896; background: rgba(0,184,150,0.15); }
.fp-pending { color: #94A3B8; }

.fp-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding-top: 6px; border-top: 1px solid #F0F0F0; }
.fp-timer { font-size: 8px; font-weight: 700; color: #374151; }
.fp-btn { background: #00B896; color: #fff; font-size: 7px; font-weight: 700; padding: 4px 7px; border-radius: 6px; }

/* Floating stat pill */
.float-stat {
  position: absolute;
  bottom: 30px; left: -16px;
  background: #fff;
  border-radius: 12px;
  padding: 9px 13px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
  z-index: 4;
  animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
@keyframes pulse-rec { 0%,100%{opacity:1} 50%{opacity:0.4} }

.float-stat-icon { font-size: 20px; }
.float-stat-num { font-size: 15px; font-weight: 800; color: #0C1F3F; line-height: 1; }
.float-stat-lbl { font-size: 9px; color: #6b7280; margin-top: 1px; }
