/* ===========================
   DOZZ.AI — MAIN STYLESHEET
   =========================== */

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

:root {
  --bg: #07111d;
  --surface: #0d1a2b;
  --surface2: #112236;
  --gold: #c9a227;
  --gold-dim: rgba(201,162,39,0.12);
  --gold-glow: rgba(201,162,39,0.18);
  --text: #eaf2fa;
  --muted: #6b8aaa;
  --border: rgba(107,138,170,0.15);
  --radius: 12px;
  --radius-lg: 18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILITIES ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--surface);
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 56px;
  color: var(--text);
}

.section-cta-row {
  text-align: center;
  margin-top: 48px;
}

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #07111d;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.3); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: transform 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-outline:hover { transform: translateY(-2px); border-color: var(--muted); }

.btn-lg { padding: 15px 36px; font-size: 16px; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7,17,29,0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon-wrap {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-ai { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

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

.nav-link-plain {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link-plain:hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  display: block;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(7,17,29,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-headline {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* ---- HERO MOCKUP ---- */
.hero-mockup {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.mockup-desktop {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}

.mockup-bar {
  background: var(--surface2);
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mockup-bar span:first-child { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #ffbd2e; }
.mockup-bar span:nth-child(3) { background: #28ca41; }

.mockup-screen {
  display: flex;
  height: 320px;
}

.mock-sidebar {
  width: 160px;
  background: #0a1728;
  border-right: 1px solid var(--border);
  padding: 16px 0;
  flex-shrink: 0;
}

.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 12px;
  color: var(--muted);
  cursor: default;
  position: relative;
}
.mock-nav-item.active {
  color: var(--gold);
  background: var(--gold-dim);
  border-left: 2px solid var(--gold);
}
.mock-nav-item i { font-size: 14px; }

.badge-gold {
  background: var(--gold);
  color: #07111d;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 100px;
  margin-left: auto;
}

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

.mock-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.mock-title { font-size: 13px; font-weight: 600; color: var(--text); }
.mock-date { font-size: 11px; color: var(--muted); }

.mock-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.mock-stat {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 10px 8px;
}
.mock-stat.gold { border-color: rgba(201,162,39,0.3); background: var(--gold-dim); }
.stat-num { font-size: 20px; font-weight: 700; color: var(--text); line-height: 1; }
.mock-stat.gold .stat-num { color: var(--gold); }
.stat-lbl { font-size: 10px; color: var(--muted); margin-top: 3px; }

.mock-table-head {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 0.8fr;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 6px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.mock-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 0.8fr;
  font-size: 11px;
  color: var(--text);
  padding: 7px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mock-row:hover { background: var(--surface2); }

.status-out { color: #f59e0b; font-weight: 500; }
.status-pend { color: var(--muted); font-weight: 500; }
.status-avail { color: #34d399; font-weight: 500; }

/* ---- PHONE MOCKUP ---- */
.mockup-phone {
  width: 220px;
  flex-shrink: 0;
}

.phone-screen {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px 16px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.phone-logo-small { font-size: 14px; font-weight: 700; color: var(--gold); }
.phone-user {
  width: 28px; height: 28px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
}

.scan-area {
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scan-frame {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.scan-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--gold);
  border-style: solid;
}
.scan-corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.scan-corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.scan-corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.scan-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.scan-line {
  position: absolute;
  top: 30%;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: scanAnim 2s ease-in-out infinite;
}

@keyframes scanAnim {
  0%,100% { top: 20%; opacity: 0.7; }
  50% { top: 70%; opacity: 1; }
}

.scan-label {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.phone-result {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.result-icon {
  width: 32px;
  height: 32px;
  background: rgba(52,211,153,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  font-size: 16px;
  flex-shrink: 0;
}

.result-name { font-size: 12px; font-weight: 600; color: var(--text); }
.result-dept { font-size: 10px; color: var(--muted); }

.phone-btn {
  width: 100%;
  background: var(--gold);
  color: #07111d;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 18px 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.trust-inner span { display: flex; align-items: center; gap: 6px; }
.trust-inner .divider { color: var(--border); font-size: 18px; }

/* ---- CARDS ---- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.card:hover { border-color: rgba(107,138,170,0.35); transform: translateY(-2px); }

.card-problem { background: var(--bg); }

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link:hover { border-color: rgba(201,162,39,0.3); }

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--surface2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 16px;
}
.card-icon.gold { background: var(--gold-dim); color: var(--gold); }

.card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.35;
}

.card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.card-arrow {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.2s;
}
.card-link:hover .card-arrow { transform: translateX(4px); }

/* ---- SOLUTION ---- */
.solution-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
}

.solution-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.step-content p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.step-connector {
  width: 1px;
  height: 32px;
  background: var(--border);
  margin-left: 17px;
}

.solution-visual { flex-shrink: 0; }

.flow-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 180px;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.flow-icon {
  width: 52px;
  height: 52px;
  background: var(--surface2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--muted);
}
.flow-icon.gold { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(201,162,39,0.2); }
.flow-label { font-size: 13px; font-weight: 600; color: var(--text); }

.flow-arrow { color: var(--border); font-size: 18px; }

.flow-footnote {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  width: 100%;
}

/* ---- TRIAL ---- */
.section-trial {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.trial-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.trial-inner {
  position: relative;
  z-index: 1;
}
.trial-inner h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 32px;
}

.trial-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
  margin-bottom: 40px;
}
.trial-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text);
}
.trial-list i { color: var(--gold); font-size: 16px; }

/* ---- TESTIMONIALS ---- */
.card-testimonial { flex-direction: column; }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.quote { font-size: 14px; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 20px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 38px;
  height: 38px;
  background: var(--surface2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  border: 1px solid rgba(201,162,39,0.2);
}
.author-name { font-size: 13px; font-weight: 600; color: var(--text); }
.author-role { font-size: 11px; color: var(--muted); }

.testimonials-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 32px;
  opacity: 0.6;
}

/* ---- FOOTER ---- */
.footer {
  background: #050d18;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

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

.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--muted);
}

.footer-domain { color: var(--gold); font-weight: 600; }

/* ---- INNER PAGE HERO ---- */
.page-hero {
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg-icon {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  pointer-events: none;
  font-size: 480px;
  color: var(--gold);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 760px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

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

.feature-block-content .section-eyebrow { margin-bottom: 12px; }
.feature-block-content h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; margin-bottom: 16px; }
.feature-block-content p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }

.feature-callout {
  background: var(--gold-dim);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-top: 20px;
  font-style: italic;
}

.feature-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.approval-chain { display: flex; flex-direction: column; gap: 8px; }
.chain-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
}
.chain-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201,162,39,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.chain-info { flex: 1; }
.chain-name { font-size: 13px; font-weight: 600; color: var(--text); }
.chain-role { font-size: 11px; color: var(--muted); }
.chain-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.status-approved { background: rgba(52,211,153,0.1); color: #34d399; }
.status-required { background: var(--gold-dim); color: var(--gold); }
.status-waiting { background: rgba(107,138,170,0.1); color: var(--muted); }

.chain-connector { width: 1px; height: 16px; background: var(--border); margin-left: 16px; }

/* ---- HOW IT WORKS ---- */
.timeline { display: flex; flex-direction: column; gap: 0; }

.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  position: relative;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid rgba(201,162,39,0.3);
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-line {
  flex: 1;
  width: 1px;
  background: var(--border);
  margin: 12px 0;
}

.timeline-right {
  padding-bottom: 48px;
}
.timeline-right h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; padding-top: 12px; }
.timeline-right p { font-size: 15px; color: var(--muted); line-height: 1.7; }

.time-estimates {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 12px;
  margin-top: 48px;
}

.time-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.time-val { font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.time-lbl { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* ---- USE CASES ---- */
.usecase-card {
  padding: 40px;
  margin-bottom: 20px;
}
.usecase-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.usecase-card p { font-size: 15px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  color: var(--muted);
}

.usecase-nonprofit {
  background: var(--gold-dim);
  border-color: rgba(201,162,39,0.25);
}
.usecase-nonprofit h3 { color: var(--gold); }

/* ---- PRICING ---- */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: center;
}
.toggle-label { font-size: 14px; font-weight: 500; color: var(--muted); }
.toggle-label.active { color: var(--text); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-card.featured {
  border-color: rgba(201,162,39,0.4);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(201,162,39,0.04) 100%);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #07111d;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.plan-price { font-size: 36px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; }
.plan-price span { font-size: 16px; font-weight: 500; color: var(--muted); }
.plan-period { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 20px; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
}
.plan-features li i { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.plan-cta { margin-top: 24px; }
.plan-cta .btn-gold, .plan-cta .btn-outline { width: 100%; text-align: center; }

.pricing-footnote {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 64px;
}

.pricing-section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-regional {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 64px;
}
.pricing-regional p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.hardware-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
}
.hw-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.hw-row:last-child { border-bottom: none; }
.hw-head { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); background: var(--surface2); }
.hw-desc { color: var(--text); font-weight: 500; }
.hw-price { color: var(--gold); font-weight: 600; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.service-price { font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.service-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---- CONTACT ---- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-icon { font-size: 28px; color: var(--gold); margin-bottom: 12px; }
.contact-purpose { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.contact-email { font-size: 15px; font-weight: 600; color: var(--gold); text-decoration: none; margin-bottom: 10px; display: block; }
.contact-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}
.faq-q i { color: var(--muted); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

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

  .cards-3 { grid-template-columns: 1fr; }
  .hero-mockup { flex-direction: column; }
  .mockup-phone { width: 100%; max-width: 280px; }
  .mockup-screen { flex-direction: column; height: auto; }
  .mock-sidebar { width: 100%; height: 48px; display: flex; overflow-x: auto; padding: 0 12px; gap: 4px; align-items: center; border-right: none; border-bottom: 1px solid var(--border); }
  .mock-nav-item { white-space: nowrap; padding: 6px 10px; }
  .mock-stats { grid-template-columns: repeat(2,1fr); }

  .solution-split { grid-template-columns: 1fr; gap: 32px; }
  .solution-visual { display: none; }

  .feature-block { grid-template-columns: 1fr; }
  .feature-block.reverse { direction: ltr; }

  .time-estimates { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1/-1; }

  .trust-inner { gap: 8px 12px; font-size: 12px; }
  .trust-inner .divider { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-ctas { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .time-estimates { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scan-line { animation: none; }
  .btn-gold:hover, .btn-outline:hover { transform: none; }
}

/* AI token tooltip trigger icon */
.ai-tip {
  cursor: help !important;
  color: var(--gold);
  opacity: .75;
  font-size: 14px;
  vertical-align: middle;
  user-select: none;
  display: inline-block;
  line-height: 1;
}
.ai-tip:hover { opacity: 1; }

/* JS-injected tooltip bubble */
#ai-tooltip {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 240px;
  background: #0d1a2b;
  border: 1px solid rgba(212,168,67,0.45);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 12px;
  line-height: 1.7;
  color: #c5d8ec;
  font-family: Inter, sans-serif;
  font-weight: 400;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  pointer-events: none;
}
#ai-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: rgba(212,168,67,0.45);
}
