/* =====================
   VARIABLES & RESET
   ===================== */
:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-soft: #f0fdf4;
  --green-mid: #dcfce7;
  --dark: #0d1117;
  --dark-2: #161b22;
  --dark-3: #21262d;
  --text: #1a202c;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 72px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* =====================
   TYPOGRAPHY
   ===================== */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: rgba(255,255,255,.6); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  color: var(--dark);
}

.section-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 56px;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  padding: 11px 22px;
  border-radius: 8px;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 2px 12px rgba(34,197,94,.25);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(34,197,94,.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: border-color .18s, color .18s, background .18s;
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-soft);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  padding: 11px 22px;
  border-radius: 8px;
  border: 2px solid var(--green);
  transition: background .18s, color .18s;
}
.btn-outline:hover {
  background: var(--green);
  color: white;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  padding: 11px 22px;
  border-radius: 8px;
  transition: background .18s, transform .15s;
}
.btn-white:hover {
  background: var(--green-soft);
  transform: translateY(-1px);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  padding: 11px 22px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: border-color .18s, color .18s;
}
.btn-ghost-white:hover {
  border-color: white;
  color: white;
}

.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* =====================
   NAVIGATION
   ===================== */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.03em;
  flex-shrink: 0;
}
.logo-dot { color: var(--green); }
.footer-logo { color: white; }

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

.nav-links li {
  position: relative;
}

.nav-links li > span,
.nav-links li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-links li > span:hover,
.nav-links li > a:hover {
  color: var(--dark);
  background: var(--green-soft);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s, transform .18s;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: .875rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background .12s, color .12s;
}
.dropdown a:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s;
}

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  padding: 12px 16px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background .12s;
}
.mobile-menu a:hover { background: var(--green-soft); }
.mobile-cta {
  margin-top: 10px;
  text-align: center;
  justify-content: center;
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 100px);
  padding-bottom: 0;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,.15) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,.1) 0%, transparent 70%);
  bottom: 0; left: -80px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  border: 1px solid var(--green-mid);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  letter-spacing: .04em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.4); }
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: var(--dark);
  margin-bottom: 20px;
  max-width: 520px;
}
.hero-heading em {
  font-style: normal;
  color: var(--green-dark);
  position: relative;
}
.hero-heading em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  opacity: .4;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatars {
  display: flex;
}
.proof-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  object-fit: cover;
}
.proof-avatars img:first-child { margin-left: 0; }
.hero-social-proof p {
  font-size: .875rem;
  color: var(--text-muted);
}
.hero-social-proof strong { color: var(--dark); }

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 40px 80px;
}

.phone-mockup {
  width: 280px;
  background: #1a1a1a;
  border-radius: 50px;
  padding: 16px 10px 20px;
  position: relative;
  animation: float 4s ease-in-out infinite;
  /* Metallic frame effect */
  box-shadow:
    0 0 0 1.5px #3a3a3a,
    0 0 0 3px #111,
    0 0 0 4px #444,
    inset 0 1px 0 rgba(255,255,255,.08),
    0 40px 80px rgba(0,0,0,.5),
    0 10px 30px rgba(0,0,0,.3);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Side buttons */
.phone-btn {
  position: absolute;
  background: #2a2a2a;
  border-radius: 3px;
  box-shadow: -1px 0 0 #111, inset 0 1px 0 rgba(255,255,255,.06);
}
.phone-vol-up   { width: 3px; height: 28px; left: -4px; top: 90px; border-radius: 2px 0 0 2px; }
.phone-vol-down { width: 3px; height: 28px; left: -4px; top: 128px; border-radius: 2px 0 0 2px; }
.phone-silent   { width: 3px; height: 18px; left: -4px; top: 60px; border-radius: 2px 0 0 2px; }
.phone-power    { width: 3px; height: 38px; right: -4px; top: 100px; border-radius: 0 2px 2px 0;
  box-shadow: 1px 0 0 #111, inset 0 1px 0 rgba(255,255,255,.06); }

/* Dynamic Island */
.phone-dynamic-island {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 28px;
  background: #0a0a0a;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04);
}
.phone-di-camera {
  width: 10px; height: 10px;
  background: #1a1a1a;
  border-radius: 50%;
  border: 2px solid #111;
  box-shadow: 0 0 0 1.5px #333, inset 0 0 3px rgba(99,102,241,.4);
}

.phone-screen {
  background: #f8fafc;
  border-radius: 40px;
  overflow: hidden;
  height: 490px;
  display: flex;
  flex-direction: column;
  /* Inner screen edge shadow */
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}

/* Status bar */
.phone-status-bar {
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 4px;
  height: 44px;
}
.phone-time {
  font-size: .72rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-display);
  letter-spacing: -.02em;
}
.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dark);
}

.chat-header {
  background: white;
  padding: 10px 14px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #f1f5f9;
}
.chat-back {
  color: var(--green-dark);
  padding: 2px 4px;
  margin-right: 2px;
  display: flex;
  align-items: center;
}
.chat-avatar {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--green), #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: .85rem;
  font-family: var(--font-display);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(34,197,94,.3);
}
.chat-name {
  font-size: .76rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.chat-status {
  font-size: .64rem;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}
.status-dot {
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
.chat-badge {
  margin-left: auto;
  font-size: .6rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: .05em;
}
.ai-badge {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

.chat-messages {
  flex: 1;
  padding: 14px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  background: #f8fafc;
}

.msg { display: flex; flex-direction: column; gap: 3px; }
.msg-in { align-items: flex-start; }
.msg-out { align-items: flex-end; }

.msg-bubble {
  padding: 9px 13px;
  border-radius: 18px;
  font-size: .73rem;
  line-height: 1.5;
  max-width: 195px;
}
.msg-in .msg-bubble {
  background: white;
  color: var(--dark);
  border-bottom-left-radius: 5px;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}
.msg-out .msg-bubble {
  background: var(--green);
  color: white;
  border-bottom-right-radius: 5px;
  box-shadow: 0 2px 8px rgba(34,197,94,.25);
}
.msg-time {
  font-size: .6rem;
  color: var(--text-light);
}
.msg-ai-tag {
  font-size: .58rem;
  color: #8b5cf6;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: .04em;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: white;
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  width: fit-content;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}
.typing-indicator span {
  width: 5px; height: 5px;
  background: var(--text-light);
  border-radius: 50%;
  animation: typingDot 1.4s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: .2s; }
.typing-indicator span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%, 80%, 100% { opacity: .3; transform: scale(.8); }
  40% { opacity: 1; transform: scale(1); }
}

.chat-input-bar {
  background: white;
  border-top: 1px solid #f1f5f9;
  padding: 10px 12px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-input-mock {
  flex: 1;
  font-size: .7rem;
  color: var(--text-light);
  background: #f1f5f9;
  border-radius: 99px;
  padding: 8px 14px;
}
.send-btn {
  width: 30px; height: 30px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(34,197,94,.35);
}

/* Home indicator */
.phone-home-bar {
  height: 22px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-home-bar::after {
  content: '';
  width: 100px; height: 4px;
  background: var(--dark);
  border-radius: 99px;
  opacity: .18;
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}
.card-1 { bottom: 200px; left: -110px; animation-delay: .5s; }
.card-2 { top: 60px; right: -110px; animation-delay: 1s; }
.card-3 { bottom: 60px; right: -100px; animation-delay: 1.5s; }

.fc-icon { font-size: 1.4rem; }
.fc-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.fc-label {
  font-size: .7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Trusted bar */
.trusted-bar {
  background: var(--dark);
  padding: 24px 0;
  margin-top: 0;
}
.trusted-bar .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trusted-label {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  font-family: var(--font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trusted-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}
.logo-pill {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 99px;
  letter-spacing: .04em;
  transition: color .15s, border-color .15s;
}
.logo-pill:hover {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.3);
}

/* =====================
   STATS STRIP
   ===================== */
.stats-strip {
  padding: 88px 0;
  background: var(--green-soft);
  border-top: 1px solid var(--green-mid);
  border-bottom: 1px solid var(--green-mid);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span {
  color: var(--green);
  font-size: 2rem;
}
.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  max-width: 160px;
  margin: 0 auto;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* =====================
   FEATURES
   ===================== */
.features {
  padding: 120px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.feature-large {
  grid-column: span 2;
}

.feature-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--green);
}

.feature-card.feature-dark {
  background: var(--dark);
  border-color: var(--dark-3);
  color: white;
}
.feature-card.feature-dark h3 { color: white; }
.feature-card.feature-dark p { color: rgba(255,255,255,.6); }
.feature-card.feature-dark:hover { border-color: var(--green); }

.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.feature-list li {
  font-size: .85rem;
  color: var(--text-muted);
}

.security-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.sec-badge {
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .05em;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.15);
}

/* =====================
   USE CASES
   ===================== */
.use-cases {
  padding: 120px 0;
  background: #fafafa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.use-cases-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 48px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  width: fit-content;
}
.uc-tab {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  color: var(--text-muted);
  transition: background .15s, color .15s;
}
.uc-tab.active {
  background: var(--green);
  color: white;
}
.uc-tab:hover:not(.active) {
  background: var(--green-soft);
  color: var(--green-dark);
}

.uc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.uc-panel.active { display: grid; }

.uc-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.uc-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.uc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.uc-list li {
  font-size: .9rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.uc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.uc-visual {
  display: flex;
  justify-content: center;
}
.uc-card-stack {
  position: relative;
  width: 280px;
  height: 220px;
}
.uc-stat-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
  position: absolute;
  box-shadow: var(--shadow-md);
}
.uc-stat-card:first-child {
  top: 0; left: 0;
  z-index: 2;
}
.usc-offset {
  bottom: 0; right: 0;
  z-index: 1;
}
.usc-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.usc-label {
  font-size: .8rem;
  color: var(--text-muted);
  max-width: 120px;
  line-height: 1.3;
}

/* =====================
   AI SECTION
   ===================== */
.ai-section {
  background: var(--dark);
  padding: 120px 0;
  color: white;
  overflow: hidden;
  position: relative;
}
.ai-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,.08) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ai-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  color: white;
}
.ai-text > p {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 40px;
}

.ai-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.ai-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ai-feat-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-feat strong {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.ai-feat p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* AI Visual */
.ai-card-main {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}
.ai-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ai-chip {
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(99,102,241,.2);
  color: #a5b4fc;
  padding: 5px 12px;
  border-radius: 99px;
}
.ai-live {
  font-size: .72rem;
  color: var(--green);
  font-weight: 600;
}

.ai-conversation {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.ai-msg-in {
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.ai-msg-in strong { color: rgba(255,255,255,.5); font-size: .7rem; }

.ai-analyzing {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(99,102,241,.1);
}
.ai-analyze-bar {
  height: 3px;
  flex: 1;
  background: rgba(99,102,241,.2);
  border-radius: 99px;
  position: relative;
  overflow: hidden;
}
.ai-analyze-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, #818cf8, transparent);
  animation: scan 1.8s infinite;
}
@keyframes scan {
  to { left: 200%; }
}
.ai-analyzing span {
  font-size: .72rem;
  color: #818cf8;
  white-space: nowrap;
  font-family: var(--font-display);
}

.ai-draft-block {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 12px;
  padding: 14px;
}
.ai-draft-label {
  font-size: .65rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--green);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ai-draft-text {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  margin-bottom: 12px;
}
.ai-draft-actions {
  display: flex;
  gap: 8px;
}
.ai-btn-approve {
  background: var(--green);
  color: white;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 7px;
  transition: background .15s;
}
.ai-btn-approve:hover { background: var(--green-dark); }
.ai-btn-edit {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 7px;
  transition: background .15s;
}
.ai-btn-edit:hover { background: rgba(255,255,255,.14); }

.ai-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
}
.ai-metric {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ai-metric:last-child { border-right: none; }
.ai-m-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.ai-m-label {
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  font-family: var(--font-display);
  letter-spacing: .04em;
}

/* =====================
   CASE STUDIES
   ===================== */
.case-studies {
  padding: 120px 0;
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cs-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  background: white;
  transition: box-shadow .2s, transform .2s;
}
.cs-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.cs-card-featured {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.cs-logo {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.cs-card-featured .cs-logo { color: rgba(255,255,255,.4); }

.cs-card blockquote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.cs-card-featured blockquote { color: rgba(255,255,255,.8); }

.cs-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.cs-person img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.cs-person strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-display);
}
.cs-card-featured .cs-person strong { color: white; }
.cs-person span {
  font-size: .775rem;
  color: var(--text-muted);
}
.cs-card-featured .cs-person span { color: rgba(255,255,255,.5); }

.cs-metrics {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.cs-card-featured .cs-metrics { border-color: rgba(255,255,255,.1); }
.cs-metric {
  font-size: .8rem;
  color: var(--text-muted);
}
.cs-card-featured .cs-metric { color: rgba(255,255,255,.5); }
.cs-metric span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 2px;
}
.cs-card-featured .cs-metric span { color: var(--green); }

/* =====================
   INTEGRATIONS
   ===================== */
.integrations {
  padding: 120px 0;
  background: #fafafa;
  border-top: 1px solid var(--border);
}
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.int-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.int-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--green);
}
.int-logo {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.int-logo.salesforce { background: #00a1e0; }
.int-logo.slack { background: #4a154b; }
.int-logo.hubspot { background: #ff7a59; }
.int-logo.zapier { background: #ff4a00; }
.int-logo.teams { background: #6264a7; }
.int-logo.okta { background: #007dc1; }

.int-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.int-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.integrations-cta { text-align: center; }

/* =====================
   PRICING
   ===================== */
.pricing {
  padding: 120px 0;
}
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
  justify-content: center;
}
.pt-label {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toggle-btn {
  width: 48px; height: 26px;
  background: var(--border);
  border-radius: 99px;
  position: relative;
  transition: background .2s;
}
.toggle-btn.active { background: var(--green); }
.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.toggle-btn.active .toggle-knob { transform: translateX(22px); }

.save-badge {
  font-size: .7rem;
  font-weight: 700;
  background: var(--green);
  color: white;
  padding: 3px 8px;
  border-radius: 99px;
  font-family: var(--font-display);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  background: white;
  position: relative;
}
.price-featured {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-mid), var(--shadow-lg);
}
.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 99px;
  white-space: nowrap;
}
.price-tier {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 10px;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  align-self: flex-start;
  padding-top: 8px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  transition: opacity .2s;
}
.price-period {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.price-desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-features li {
  font-size: .875rem;
  color: var(--text);
}
.price-btn {
  width: 100%;
  justify-content: center;
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
  background: var(--green-dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =====================
   CONTACT FORM
   ===================== */
.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.form-group-full {
  grid-column: span 2;
}
.form-group label {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group label .req {
  color: var(--green-dark);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: #f9fafb;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  display: none;
}
.checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
  margin-top: 1px;
}
.checkmark::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
  transition: opacity .15s;
}
.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--green);
  border-color: var(--green);
}
.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}
.checkbox-label a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkbox-label a:hover {
  color: var(--green);
}
.checkbox-label .req {
  color: var(--green-dark);
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.form-success {
  display: none;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  padding: 12px;
  background: var(--green-soft);
  border-radius: var(--radius-sm);
}
.form-success.visible {
  display: block;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.5);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 60px;
}
.footer-brand p {
  font-size: .875rem;
  line-height: 1.65;
  margin-top: 12px;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  transition: background .15s, color .15s;
}
.footer-socials a:hover {
  background: rgba(255,255,255,.12);
  color: white;
}

.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-links-group a {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  padding: 4px 0;
  transition: color .15s;
}
.footer-links-group a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  transition: color .15s;
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }

  .uc-panel.active { grid-template-columns: 1fr; }
  .uc-visual { display: none; }

  .ai-inner { grid-template-columns: 1fr; }

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

  .integrations-grid { grid-template-columns: repeat(2, 1fr); }

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

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .stats-grid { justify-content: center; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .integrations-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .trusted-bar .container { flex-direction: column; align-items: flex-start; }
  .use-cases-tabs { flex-wrap: wrap; }
}

/* =====================
   ENTRY ANIMATIONS
   ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge { animation: fadeUp .5s ease both; }
.hero-heading { animation: fadeUp .5s .1s ease both; }
.hero-sub { animation: fadeUp .5s .2s ease both; }
.hero-ctas { animation: fadeUp .5s .3s ease both; }
.hero-social-proof { animation: fadeUp .5s .4s ease both; }
.hero-visual { animation: fadeUp .6s .2s ease both; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
