/* ============================================================
   RightClaw — styles.css
   Brand: Dark Navy #1B2E51 | Blue #0C419E | Cyan #00D6FB
          Purple #8778FF | Pink #FC5B7F | Orange #FFAF00
   Fonts: Outfit (headings) + Inter (body) via Google Fonts
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --navy:    #1B2E51;
  --navy-dk: #131e37;
  --navy-lt: #223466;
  --blue:    #0C419E;
  --cyan:    #00D6FB;
  --cyan-dk: #00b8d9;
  --purple:  #8778FF;
  --pink:    #FC5B7F;
  --orange:  #FFAF00;
  --red:     #e03b3b;
  --slate:   #1a2a42;
  --slate-lt:#243352;
  --card-bg: #1f3260;
  --text:    #d4dff5;
  --text-lt: #f0f4ff;
  --text-muted: #7a91b8;
  --border:  rgba(0, 214, 251, 0.15);
  --radius:  12px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--text-lt);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--cyan); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; }

ul { list-style: none; }

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

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.text-cyan   { color: var(--cyan); }
.text-orange { color: var(--orange); }
.text-pink   { color: var(--pink); }
.text-purple { color: var(--purple); }
.text-muted  { color: var(--text-muted); }

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

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(19, 30, 55, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-lt);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--cyan); opacity: 1; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy-dk);
}
.btn-primary:hover {
  background: var(--cyan-dk);
  color: var(--navy-dk);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,214,251,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
}
.btn-outline:hover {
  background: rgba(0,214,251,0.08);
  opacity: 1;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  border-radius: var(--radius-sm);
}

.btn-dark {
  background: var(--navy-dk);
  color: var(--text-lt);
  border: 1.5px solid var(--border);
}
.btn-dark:hover { background: var(--navy-lt); opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy-dk);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224, 59, 59, 0.15);
  border: 1px solid rgba(224, 59, 59, 0.4);
  color: #f07070;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.hero h1 {
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-ctas .link-secondary {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.hero-ctas .link-secondary:hover { color: var(--cyan); }

.hero-trust {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Terminal visual */
.hero-terminal {
  position: relative;
}

.terminal-window {
  background: #0d1625;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(0,214,251,0.08);
}

.terminal-bar {
  background: #1a2840;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.terminal-dots {
  display: flex;
  gap: 0.4rem;
}

.terminal-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }

.terminal-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-left: auto;
  margin-right: auto;
}

.terminal-body {
  padding: 1.25rem 1.5rem;
  font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #a8c2e8;
  overflow-x: auto;
}

.terminal-body pre {
  white-space: pre;
  margin: 0;
}

.t-green  { color: #4ade80; }
.t-cyan   { color: #00D6FB; }
.t-yellow { color: #FFAF00; }
.t-dim    { color: #4a6080; }
.t-white  { color: #e8f0ff; }
.t-red    { color: #FC5B7F; }
.t-prompt { color: #8778FF; }

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.proof-strip {
  background: var(--slate);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.proof-strip-headline {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 600;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.proof-item {
  text-align: center;
}

.proof-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.proof-stat {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-lt);
  line-height: 1.3;
}

.proof-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background: var(--slate);
  border-left: none;
  position: relative;
}

.problem::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), transparent);
}

.problem h2 { margin-bottom: 1.5rem; }

.problem-intro {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 760px;
}

.big-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.big-num {
  padding: 2rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  border: 1px solid rgba(224,59,59,0.2);
}

.big-num-figure {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.big-num-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-lt);
  margin-bottom: 0.5rem;
}

.big-num-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.problem-close {
  font-size: 1rem;
  color: var(--text);
  max-width: 760px;
  line-height: 1.7;
}

/* ============================================================
   AGITATE
   ============================================================ */
.agitate {
  background: var(--navy-dk);
  border-top: 1px solid rgba(252,91,127,0.2);
}

.agitate h2 { margin-bottom: 0.75rem; }

.agitate-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 720px;
}

.agitate-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.agitate-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: rgba(252,91,127,0.06);
  border: 1px solid rgba(252,91,127,0.15);
  border-radius: var(--radius-sm);
}

.agitate-bullet {
  color: var(--pink);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.agitate-item strong {
  display: block;
  color: var(--text-lt);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.agitate-item span {
  font-size: 0.83rem;
  color: var(--text-muted);
}

.agitate-close {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.7;
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution { background: var(--navy); }

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.solution-intro h2 {
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.solution-intro p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,214,251,0.15);
  border: 1.5px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-text strong {
  display: block;
  color: var(--text-lt);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   VALUE STACK
   ============================================================ */
.value-stack {
  background: linear-gradient(180deg, var(--navy-dk) 0%, var(--slate) 100%);
}

.value-stack h2 { margin-bottom: 0.75rem; }
.value-stack-intro {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.value-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  padding: 1.75rem 2rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.value-item-info h4 {
  font-size: 1rem;
  color: var(--text-lt);
  margin-bottom: 0.4rem;
}

.value-item-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.value-market {
  text-align: right;
  min-width: 180px;
}

.value-market-cost {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.value-rightclaw {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
}

.value-total {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(0,214,251,0.05);
  border: 1.5px solid var(--cyan);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.value-total-market {
  font-size: 1rem;
  color: var(--text-muted);
}

.value-total-market strong {
  display: block;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: line-through;
  margin-top: 0.25rem;
}

.value-total-rc {
  text-align: right;
}

.value-total-rc span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.value-total-rc strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cyan);
  display: block;
}

.value-total-rc em {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ============================================================
   PERSONA PILLS
   ============================================================ */
.personas { background: var(--navy); }

.personas h2 { margin-bottom: 0.5rem; text-align: center; }
.personas-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.persona-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.persona-accent {
  height: 4px;
}

.persona-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.persona-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.persona-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.persona-features {
  margin: 1rem 0;
}

.persona-features li {
  font-size: 0.82rem;
  color: var(--text);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.persona-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.persona-card .btn {
  align-self: flex-start;
  width: 100%;
  margin-top: 0.5rem;
}

.enterprise-band {
  background: linear-gradient(135deg, var(--navy-lt), var(--blue));
  border-radius: var(--radius);
  border: 1px solid rgba(0,214,251,0.2);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.enterprise-band-text h3 { margin-bottom: 0.5rem; }
.enterprise-band-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0;
}

/* ============================================================
   API KEY SECTION
   ============================================================ */
.api-key {
  background: var(--slate);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.api-key-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.api-key-inner h2 { margin-bottom: 1rem; }
.api-key-inner > p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.api-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.api-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.api-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy-dk);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.api-point-text strong {
  display: block;
  color: var(--text-lt);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.api-point-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.api-close {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================================
   PRICING PREVIEW
   ============================================================ */
.pricing-preview { background: var(--navy); }

.pricing-preview h2 { text-align: center; margin-bottom: 0.75rem; }
.pricing-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 1.5rem; }

.promo-banner {
  background: linear-gradient(135deg, rgba(255,175,0,0.12), rgba(0,214,251,0.08));
  border: 1.5px solid rgba(255,175,0,0.4);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 0.92rem;
  color: var(--text-lt);
}

.promo-banner strong { color: var(--orange); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), var(--shadow);
  position: relative;
  transform: translateY(-8px);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
}

.popular-badge {
  background: var(--cyan);
  color: var(--navy-dk);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.4rem;
}

.pricing-card-head {
  padding: 1.75rem 1.75rem 1rem;
}

.pricing-card-head h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.price-main {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin: 0.5rem 0 0.1rem;
}

.price-main sup {
  font-size: 1.2rem;
  vertical-align: super;
  line-height: 0;
}

.price-main sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-first {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pricing-card-desc {
  padding: 0 1.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.pricing-card-features {
  padding: 1.25rem 1.75rem;
  flex: 1;
}

.pricing-card-features li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-card-features li:last-child { border-bottom: none; }

.pricing-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.pricing-card-features li.na {
  color: var(--text-muted);
}
.pricing-card-features li.na::before {
  content: '—';
  color: var(--text-muted);
}

.pricing-card-cta {
  padding: 1.25rem 1.75rem 1.75rem;
}

.pricing-card-cta .btn { width: 100%; }

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.pricing-note a { color: var(--cyan); }

/* ============================================================
   OBJECTION KILLER / FAQ ACCORDION
   ============================================================ */
.faq { background: var(--slate); }

.faq h2 { margin-bottom: 0.5rem; }
.faq-subtitle { color: var(--text-muted); margin-bottom: 2.5rem; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--text-lt);
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(0,214,251,0.04); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1;
}

.faq-item.open .faq-icon {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 800px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ============================================================
   TRUST BLOCK
   ============================================================ */
.trust { background: var(--navy); }

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.trust-left h2 { margin-bottom: 1rem; }
.trust-left p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
}

.trust-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-bullet {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.trust-bullet-icon {
  color: var(--cyan);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(180deg, var(--slate) 0%, var(--navy-dk) 100%);
  text-align: center;
  padding: 100px 0;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.final-cta-sub {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.final-cta .link-secondary {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.final-cta .link-secondary:hover { color: var(--cyan); }

.final-micro {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dk);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-lt);
  font-size: 1.1rem;
}

.footer-brand span { color: var(--cyan); }

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--cyan); }

.footer-row2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-micro {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
  background: var(--navy-dk);
  text-align: center;
  padding: 80px 0 60px;
}

.pricing-hero h1 { margin-bottom: 1rem; }
.pricing-hero p {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Comparison Table */
.compare { background: var(--navy); overflow-x: auto; }
.compare-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table th, .compare-table td {
  padding: 0.85rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-size: 0.85rem;
  color: var(--text);
}

.compare-table thead tr:first-child th {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: var(--navy-dk);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.compare-table thead tr:first-child th.col-managed {
  background: rgba(0,214,251,0.08);
  border-left: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.col-managed {
  background: rgba(0,214,251,0.04);
  border-left: 2px solid rgba(0,214,251,0.2);
  border-right: 2px solid rgba(0,214,251,0.2);
}

.compare-table .section-header td {
  background: rgba(0,0,0,0.25);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: left;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.compare-table .section-header td.col-managed {
  background: rgba(0,214,251,0.06);
}

.check { color: var(--cyan); font-weight: 700; font-size: 1rem; }
.dash  { color: var(--text-muted); }

.plan-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-lt);
  display: block;
}

.plan-price-tag {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan);
  display: block;
  margin: 0.25rem 0;
}

.plan-first-tag {
  display: block;
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.most-popular-tag {
  display: inline-block;
  background: var(--cyan);
  color: var(--navy-dk);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.table-cta-row td { padding: 1.5rem 1.25rem; border-bottom: none; }
.table-cta-row td.col-managed {
  background: rgba(0,214,251,0.05);
  border-left: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
}

/* Which plan */
.which-plan { background: var(--slate); }
.which-plan h2 { margin-bottom: 0.5rem; }
.which-plan-sub { color: var(--text-muted); margin-bottom: 2.5rem; }

.which-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.which-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.which-persona {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.which-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.which-rec {
  font-weight: 700;
  color: var(--text-lt);
  font-size: 0.92rem;
}

.which-rec span { color: var(--cyan); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-terminal { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .big-numbers { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .agitate-list { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: 1fr; }
  .enterprise-band { flex-direction: column; text-align: center; }
  .trust-inner { grid-template-columns: 1fr; }
  .value-item { grid-template-columns: 1fr; }
  .value-market { text-align: left; min-width: 0; }
  .value-total { grid-template-columns: 1fr; }
  .value-total-rc { text-align: left; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .which-grid { grid-template-columns: 1fr; }
  .footer-row1, .footer-row2 { flex-direction: column; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 60px 0; }
  .hero { padding: 70px 0 60px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .nav-links .btn { display: none; }
  .nav-mobile-cta { display: block; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .final-cta { padding: 70px 0; }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left { animation: fadeUp 0.6s ease 0.1s both; }
