/* ============================================================
   JUDIFY — Landing Page Styles
   Mobile-first, Inter font, navy + green design system
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:          #1B2B6B;
  --navy-dark:     #101A45;
  --navy-light:    #2D3F8F;
  --indigo:        #4F63C8;
  --indigo-light:  #EEF1FA;
  --green:         #059669;
  --green-light:   #ECFDF5;
  --green-text:    #065F46;
  --amber:         #F59E0B;
  --surface:       #F8FAFC;
  --border:        #E2E8F0;
  --text:          #0F172A;
  --text-sec:      #475569;
  --text-muted:    #94A3B8;
  --white:         #FFFFFF;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);

  --t: 220ms ease;
  --container: 1200px;
  --pad: 1.25rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-text);
  background: var(--green-light);
  border: 1px solid rgba(5,150,105,.2);
  padding: .3rem .75rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
}
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: .75rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.3; }
.lead { font-size: 1.1rem; color: var(--text-sec); line-height: 1.7; }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: var(--r-pill);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,43,107,.3);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(27,43,107,.35); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--navy); background: var(--indigo-light); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,0,0,.2); }
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(5,150,105,.3);
}
.btn-green:hover { background: #047857; transform: translateY(-1px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* Play Store Button */
.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1.5rem;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 16px rgba(27,43,107,.3);
  transition: all var(--t);
  border: 2px solid transparent;
}
.btn-playstore:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,43,107,.35); }
.btn-playstore .ps-icon { width: 28px; height: 28px; flex-shrink: 0; }
.btn-playstore .ps-text { display: flex; flex-direction: column; line-height: 1.2; }
.btn-playstore .ps-text small { font-size: .7rem; font-weight: 400; opacity: .85; }
.btn-playstore .ps-text strong { font-size: 1.05rem; font-weight: 700; }

.btn-ios {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #1a1a1a;
  color: var(--white);
  padding: .75rem 1.5rem;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: all var(--t);
  border: 2px solid transparent;
}
.btn-ios:hover { background: #333; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.btn-ios .ps-icon { width: 28px; height: 28px; flex-shrink: 0; }
.btn-ios .ps-text { display: flex; flex-direction: column; line-height: 1.2; }
.btn-ios .ps-text small { font-size: .7rem; font-weight: 400; opacity: .85; }
.btn-ios .ps-text strong { font-size: 1.05rem; font-weight: 700; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 680px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  font-size: .875rem;
  line-height: 1.5;
  transition: transform .4s ease, opacity .4s ease;
}
.cookie-banner.hidden { transform: translateX(-50%) translateY(160%); opacity: 0; pointer-events: none; }
.cookie-banner a { color: #93C5FD; text-decoration: underline; }
.cookie-banner .cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-btn-accept { background: var(--green); color: var(--white); padding: .45rem 1rem; border-radius: var(--r-pill); font-size: .8rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background var(--t); }
.cookie-btn-accept:hover { background: #047857; }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,.6); padding: .45rem .75rem; border-radius: var(--r-pill); font-size: .8rem; font-weight: 500; cursor: pointer; white-space: nowrap; }
.cookie-btn-decline:hover { color: var(--white); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: background var(--t), box-shadow var(--t);
  padding: 1rem 0;
}
.header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: .65rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img { height: 32px; width: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-sec);
  padding: .45rem .8rem;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--indigo-light); }
.nav-cta { display: none; }
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--t);
}
.nav-hamburger:hover { background: var(--surface); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 490;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: .5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  padding: .8rem 1rem;
  border-radius: var(--r-md);
  transition: background var(--t);
}
.mobile-menu a:hover { background: var(--surface); }
.mobile-menu .btn { margin-top: 1rem; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(160deg, #F0F4FF 0%, var(--white) 50%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,99,200,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text {}
.hero-text h1 { color: var(--navy); margin-bottom: 1.25rem; }
.hero-text h1 em { font-style: normal; color: var(--indigo); }
.h1-accent { color: var(--indigo); }
.hero-text .lead { margin-bottom: 2rem; max-width: 520px; }
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-sec);
  background: var(--white);
  border: 1px solid var(--border);
  padding: .35rem .75rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.trust-pill svg { color: var(--green); }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 240px;
  height: 480px;
  flex-shrink: 0;
}
.phone-frame {
  width: 100%;
  height: 100%;
  background: var(--navy-dark);
  border-radius: 36px;
  border: 3px solid rgba(255,255,255,.15);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(27,43,107,.35), inset 0 1px 0 rgba(255,255,255,.1);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--navy-dark);
  border-radius: 0 0 16px 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.phone-notch::before {
  content: '';
  width: 8px; height: 8px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
}
.phone-notch::after {
  content: '';
  width: 40px; height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
}
.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  gap: 1rem;
}
.phone-status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: .5rem 1.25rem 0;
  font-size: .6rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.phone-app-title {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* Protection ring animation */
.ring-container {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring-pulse {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: ring-expand 2.4s ease-out infinite;
}
.ring-pulse:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; }
.ring-pulse:nth-child(2) { width: 80%; height: 80%; animation-delay: .8s; }
.ring-pulse:nth-child(3) { width: 60%; height: 60%; animation-delay: 1.6s; }
@keyframes ring-expand {
  0%   { transform: scale(.8); opacity: .7; }
  100% { transform: scale(1.2); opacity: 0; }
}
.ring-base {
  position: absolute;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: rgba(5,150,105,.15);
  border: 2.5px solid var(--green);
}
.ring-core {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(5,150,105,.5);
}
.protection-label {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  text-align: center;
  line-height: 1.4;
}
.protection-status {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(5,150,105,.2);
  border: 1px solid rgba(5,150,105,.4);
  padding: .3rem .75rem;
  border-radius: var(--r-pill);
  font-size: .6rem;
  font-weight: 600;
  color: #34D399;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #34D399;
  border-radius: 50%;
  animation: dot-pulse 1.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.phone-bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 1rem;
}
.phone-nav-item {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(255,255,255,.12);
}
.phone-nav-item.active {
  background: rgba(5,150,105,.4);
}

@media (min-width: 768px) {
  .hero-ctas { flex-direction: row; }
  .phone-mockup { width: 270px; height: 540px; }
  .ring-container { width: 160px; height: 160px; }
}
@media (min-width: 1024px) {
  .hero { padding: 9rem 0 6rem; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .hero-visual { justify-content: flex-end; }
  .phone-mockup { width: 280px; height: 560px; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy-dark);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .4rem;
  display: block;
}
.stat-number.green { color: #34D399; }
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  line-height: 1.4;
}
.stat-source {
  font-size: .65rem;
  color: rgba(255,255,255,.3);
  margin-top: .25rem;
  display: block;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 2.8rem; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 5rem 0;
  background: var(--surface);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { color: var(--navy); margin-bottom: .75rem; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.step-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-size: 5rem;
  font-weight: 800;
  color: var(--indigo-light);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.step-card h3 { color: var(--navy); margin-bottom: .6rem; }
.step-card p { color: var(--text-sec); font-size: .95rem; }
.step-tip {
  display: inline-block;
  margin-top: .75rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-text);
  background: var(--green-light);
  padding: .2rem .6rem;
  border-radius: var(--r-pill);
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 5rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.feature-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: all var(--t);
}
.feature-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--indigo-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
}
.feature-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .35rem; }
.feature-card p { font-size: .875rem; color: var(--text-sec); line-height: 1.5; }
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .7rem;
  font-weight: 600;
  background: #FEF3C7;
  color: #92400E;
  padding: .15rem .5rem;
  border-radius: var(--r-pill);
  margin-top: .4rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   PRIVACY TRUST
   ============================================================ */
.privacy-trust {
  background: var(--green-light);
  border-top: 1px solid rgba(5,150,105,.15);
  border-bottom: 1px solid rgba(5,150,105,.15);
  padding: 5rem 0;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.privacy-text h2 { color: var(--navy); margin-bottom: 1rem; }
.privacy-text .lead { margin-bottom: 1.5rem; color: var(--text-sec); }
.privacy-does-not h4,
.privacy-does h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.privacy-does-not h4 { color: #DC2626; }
.privacy-does h4 { color: var(--green-text); }
.privacy-list { display: flex; flex-direction: column; gap: .65rem; }
.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  line-height: 1.5;
}
.privacy-list li .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
  font-size: .8rem;
  font-weight: 700;
}
.icon-no { background: #FEE2E2; color: #DC2626; }
.icon-yes { background: var(--green-light); color: var(--green); border: 1px solid rgba(5,150,105,.3); }
.privacy-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.privacy-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(5,150,105,.15);
}
.privacy-card h4 { color: var(--navy); margin-bottom: .5rem; font-size: .95rem; }
.privacy-card p { color: var(--text-sec); font-size: .875rem; }
@media (min-width: 1024px) {
  .privacy-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ============================================================
   USE CASES
   ============================================================ */
.use-cases { padding: 5rem 0; background: var(--surface); }
.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.use-case-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--indigo) 100%);
}
.case-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.case-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--indigo-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.case-meta {}
.case-meta .name { font-weight: 600; color: var(--navy); font-size: .95rem; }
.case-meta .role { font-size: .8rem; color: var(--text-muted); }
.use-case-card .quote {
  font-size: .95rem;
  color: var(--text-sec);
  line-height: 1.65;
  font-style: italic;
  border-left: 3px solid var(--green);
  padding-left: 1rem;
  margin-bottom: 1.25rem;
}
.case-outcome {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-text);
  background: var(--green-light);
  padding: .5rem .9rem;
  border-radius: var(--r-pill);
  width: fit-content;
}
@media (min-width: 768px) { .use-cases-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   B2B SECTION
   ============================================================ */
.b2b-section {
  background: var(--navy-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.b2b-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,99,200,.15) 0%, transparent 70%);
  pointer-events: none;
}
.b2b-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.b2b-header h2 { color: var(--white); margin-bottom: .75rem; }
.b2b-header .lead { color: rgba(255,255,255,.65); }
.b2b-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.b2b-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all var(--t);
}
.b2b-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.b2b-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  background: rgba(79,99,200,.3);
  border: 1px solid rgba(79,99,200,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #93C5FD;
}
.b2b-card h3 { color: var(--white); margin-bottom: .75rem; font-size: 1.2rem; }
.b2b-card .lead { color: rgba(255,255,255,.65); font-size: .95rem; margin-bottom: 1.25rem; }
.b2b-highlights {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.b2b-highlight {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.b2b-highlight::before {
  content: '✓';
  flex-shrink: 0;
  color: #34D399;
  font-weight: 700;
  margin-top: .05rem;
}
.b2b-stat {
  background: rgba(5,150,105,.15);
  border: 1px solid rgba(5,150,105,.3);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  margin-bottom: 1.5rem;
}
.b2b-stat-number { font-size: 1.5rem; font-weight: 800; color: #34D399; }
.b2b-stat-label { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.4; }
@media (min-width: 768px) { .b2b-cards { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 5rem 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.pricing-card .btn { margin-top: auto; }
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--navy);
  box-shadow: 0 8px 40px rgba(27,43,107,.15);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pricing-header { margin-bottom: 1.5rem; }
.pricing-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.pricing-price { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .5rem; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; }
.price-period { font-size: .85rem; color: var(--text-muted); }
.pricing-desc { font-size: .875rem; color: var(--text-sec); }
.pricing-features { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-sec);
}
.pricing-features li .check { color: var(--green); flex-shrink: 0; }
.pricing-features li .cross { color: var(--text-muted); flex-shrink: 0; }
.pricing-features li.dim { opacity: .5; }
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .875rem;
  color: var(--text-sec);
}
.pricing-note a { color: var(--navy); font-weight: 600; text-decoration: underline; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   NEWSLETTER / EARLY ACCESS
   ============================================================ */
.newsletter {
  background: var(--indigo-light);
  border-top: 1px solid rgba(79,99,200,.15);
  border-bottom: 1px solid rgba(79,99,200,.15);
  padding: 4rem 0;
  text-align: center;
}
.newsletter h2 { color: var(--navy); margin-bottom: .75rem; }
.newsletter .lead { color: var(--text-sec); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 440px;
  margin: 0 auto 1rem;
}
.form-input {
  width: 100%;
  padding: .85rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--text);
  font-size: .95rem;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,43,107,.1);
}
.form-input::placeholder { color: var(--text-muted); }
.newsletter-note { font-size: .8rem; color: var(--text-muted); }
.newsletter-note a { color: var(--navy); text-decoration: underline; }
.form-success {
  display: none;
  background: var(--green-light);
  border: 1px solid rgba(5,150,105,.3);
  border-radius: var(--r-lg);
  padding: 1rem 1.5rem;
  color: var(--green-text);
  font-weight: 500;
  font-size: .95rem;
  text-align: center;
}
@media (min-width: 640px) {
  .newsletter-form { flex-direction: row; }
  .newsletter-form .form-input { flex: 1; }
  .newsletter-form .btn { white-space: nowrap; flex-shrink: 0; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 5rem 0; background: var(--surface); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: var(--navy); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--t);
  user-select: none;
}
.faq-question:hover { color: var(--navy); }
.faq-item.open .faq-question { color: var(--navy); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), transform var(--t);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-sec);
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--text-sec);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner a { color: var(--navy); font-weight: 500; text-decoration: underline; }
.faq-source {
  display: inline-block;
  margin-top: .5rem;
  font-size: .75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   B2B CONTACT FORM
   ============================================================ */
.contact-pro { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-text h2 { color: var(--navy); margin-bottom: 1rem; }
.contact-text .lead { margin-bottom: 1.5rem; }
.contact-promise { display: flex; flex-direction: column; gap: .75rem; }
.contact-promise-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-sec);
}
.contact-promise-item .icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .75rem;
  font-weight: 700;
}
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.form-select {
  width: 100%;
  padding: .85rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,43,107,.1); }
.form-textarea {
  width: 100%;
  padding: .85rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  resize: vertical;
  min-height: 110px;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,43,107,.1); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-top: .25rem;
}
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: .15rem; accent-color: var(--navy); }
.form-check label { font-size: .82rem; color: var(--text-sec); line-height: 1.5; }
.form-check label a { color: var(--navy); font-weight: 500; text-decoration: underline; }
.form-error { font-size: .78rem; color: #DC2626; margin-top: .3rem; display: none; }
.form-error.visible { display: block; }
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; color: var(--white); }
.footer-logo-icon { color: white; }
.footer-logo-name { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 240px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--t);
  font-size: .8rem;
  font-weight: 700;
}
.footer-social a:hover { background: rgba(255,255,255,.15); color: var(--white); }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.4); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t);
  z-index: 400;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.divider { height: 1px; background: var(--border); margin: 0; }
.spacer-sm { height: .75rem; }
.spacer-md { height: 1.5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.grecaptcha-badge { visibility: hidden; }
