/* ============================================================
   BetaQuick — Main Stylesheet
   Dark Theme | Modern | SEO-ready
   ============================================================ */

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

/* ── Design Tokens ── */
:root {
  /* Background */
  --bg-base:    #08090e;
  --bg-raised:  #0d1018;
  --bg-card:    #12151f;
  --bg-card-hv: #171b28;
  --bg-input:   #0e1118;

  /* Text */
  --tx-primary:   #e8edf4;
  --tx-secondary: #8892a4;
  --tx-muted:     #505c6e;
  --tx-inverse:   #08090e;

  /* Brand */
  --cyan:  #00e5ff;
  --blue:  #0099e6;
  --grad:  linear-gradient(135deg, #00e5ff 0%, #0099e6 100%);
  --grad-h: linear-gradient(90deg, #00e5ff 0%, #0099e6 100%);

  /* Borders */
  --border:        rgba(255,255,255,0.06);
  --border-accent: rgba(0,229,255,0.25);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(0,153,230,0.15);

  /* Layout */
  --container: 1200px;
  --nav-h:     72px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Spacing scale */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 80px; --s8: 120px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--tx-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--tx-secondary); font-size: 1.0625rem; }

.lead { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--tx-secondary); max-width: 700px; }

/* Gradient text */
.grad-text {
  background: var(--grad-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s3);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
  background: rgba(0,229,255,0.06);
}

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s3);
}
.section { padding: var(--s8) 0; }
.section-sm { padding: var(--s7) 0; }
.section-lg { padding: 140px 0; }

.section-header { margin-bottom: var(--s6); }
.section-header.center { text-align: center; }
.section-header.center .lead { margin: var(--s2) auto 0; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }

/* Flex helpers */
.flex       { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: var(--s2); }
.gap-3 { gap: var(--s3); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(8,9,14,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(8,9,14,0.97); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s3);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s1);
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tx-secondary);
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--tx-primary); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--cyan); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tx-secondary);
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-dropdown-toggle:hover { color: var(--tx-primary); background: rgba(255,255,255,0.05); }
.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  transform: translateX(-50%) translateY(-8px);
  box-shadow: var(--shadow-md);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tx-secondary);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--cyan); background: rgba(0,229,255,0.06); }
.nav-dropdown-menu .menu-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bg-base);
  background: var(--grad-h);
  border-radius: 100px;
  padding: 2px 7px;
  margin-left: 6px;
  vertical-align: middle;
}
.nav-cta { margin-left: var(--s2); }
.nav-mobile-toggle { display: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: inherit;
  line-height: 1;
}
.btn-primary {
  background: var(--grad);
  color: var(--tx-inverse);
  box-shadow: 0 0 20px rgba(0,153,230,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 30px rgba(0,153,230,0.5);
  filter: brightness(1.08);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--tx-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border-accent);
}
.btn-outline:hover { background: rgba(0,229,255,0.08); }
.btn-ghost { background: transparent; color: var(--tx-secondary); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--tx-primary); }
.btn-lg { font-size: 1.0625rem; padding: 16px 36px; }
.btn-xl { font-size: 1.125rem; padding: 18px 44px; border-radius: 14px; }
.btn-sm { font-size: 0.8125rem; padding: 9px 18px; }
.btn-call {
  background: var(--grad);
  color: #000;
  font-size: 1.1875rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(0,229,255,0.3);
  letter-spacing: -0.01em;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 50px rgba(0,229,255,0.45); filter: brightness(1.05); }

/* ── Hero ── */
.hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: var(--s7);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0,153,230,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s3);
}
.hero-eyebrow span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 { max-width: 850px; margin-bottom: var(--s3); }
.hero .lead { margin-bottom: var(--s5); }
.hero-ctas { display: flex; align-items: center; gap: var(--s2); flex-wrap: wrap; }
.hero-secondary-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--tx-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.hero-secondary-link:hover { color: var(--cyan); }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s5);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.card-accent { border-top: 2px solid var(--cyan); }
.card-grad-border {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1px;
  background-clip: padding-box;
}
.card-grad-border::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background: var(--grad);
  z-index: -1;
}

/* Card icon */
.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,229,255,0.1);
  margin-bottom: var(--s3);
  font-size: 1.5rem;
}
.card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s1);
}
.card h3 { margin-bottom: var(--s2); }
.card p  { margin-bottom: var(--s3); }
.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--bg-card);
  padding: var(--s5) var(--s4);
  text-align: center;
  transition: background 0.2s;
}
.stat-item:hover { background: var(--bg-card-hv); }
.stat-number {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--grad-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--s1);
}
.stat-label {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--tx-primary);
  margin-bottom: var(--s2);
}
.stat-detail { font-size: 0.875rem; color: var(--tx-muted); }

/* ── Steps / How It Works ── */
.steps { display: flex; flex-direction: column; gap: var(--s3); }
.step {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  padding: var(--s4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}
.step:hover { border-color: var(--border-accent); }
.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad);
  color: #000;
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(0,229,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.step-content h4 { margin-bottom: 8px; font-size: 1.05rem; }
.step-content p  { font-size: 0.9375rem; margin: 0; }

/* ── Who We Serve columns ── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}
.serve-col {
  padding: var(--s5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.serve-col:hover { border-color: var(--border-accent); box-shadow: var(--shadow-glow); }
.serve-icon {
  font-size: 2rem;
  margin-bottom: var(--s3);
}
.serve-col h3 { margin-bottom: var(--s2); font-size: 1.2rem; }
.serve-col p  { font-size: 0.9375rem; }

/* ── Deployments ── */
.deployment-grid { display: flex; flex-direction: column; gap: var(--s3); }
.deployment-card {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: var(--s4);
  align-items: center;
  padding: var(--s4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}
.deployment-card:hover { border-color: var(--border-accent); }
.deployment-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}
.deployment-title { font-size: 1.05rem; font-weight: 600; }
.deployment-body { font-size: 0.9rem; color: var(--tx-secondary); }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.status-live {
  background: rgba(0,230,118,0.1);
  color: #00e676;
  border: 1px solid rgba(0,230,118,0.25);
}
.status-active {
  background: rgba(0,229,255,0.1);
  color: var(--cyan);
  border: 1px solid var(--border-accent);
}
.status-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}

/* ── Demo CTA Section ── */
.demo-section {
  position: relative;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.demo-section::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.demo-inner { position: relative; text-align: center; }
.demo-inner h2 { margin-bottom: var(--s3); }
.demo-inner .lead { margin: 0 auto var(--s5); }
.demo-phone {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  background: var(--grad-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--s4);
}
.demo-subtext { font-size: 0.9rem; color: var(--tx-muted); margin-top: var(--s3); }

/* ── Footer CTA ── */
.footer-cta {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding: var(--s8) 0;
}
.footer-cta-inner { text-align: center; }
.footer-cta-inner h2 { margin-bottom: var(--s3); }
.footer-cta-inner .lead { margin: 0 auto var(--s5); }
.footer-cta-btns { display: flex; gap: var(--s2); justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: var(--s7) 0 var(--s4);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--s6);
  margin-bottom: var(--s6);
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 32px; width: auto; margin-bottom: var(--s3); }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-contact { margin-top: var(--s3); }
.footer-contact a {
  display: block;
  font-size: 0.875rem;
  color: var(--tx-muted);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--cyan); }
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tx-muted);
  margin-bottom: var(--s2);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--tx-secondary);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cyan); }
.footer-phones .phone-row { display: flex; flex-direction: column; margin-bottom: 10px; }
.footer-phones .phone-label { font-size: 0.72rem; color: var(--tx-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-phones .phone-num { font-size: 0.9rem; color: var(--tx-secondary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
}
.footer-copy { font-size: 0.8125rem; color: var(--tx-muted); }
.footer-social { display: flex; gap: var(--s2); }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tx-muted);
  font-size: 0.9rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-link:hover { color: var(--cyan); border-color: var(--border-accent); background: rgba(0,229,255,0.06); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s5);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-glow); }
.pricing-card.featured {
  border-color: rgba(0,229,255,0.4);
  background: linear-gradient(135deg, rgba(0,229,255,0.05), rgba(0,153,230,0.05));
  position: relative;
}
.pricing-featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s2);
}
.pricing-name { font-size: 1.3rem; font-weight: 700; margin-bottom: var(--s2); }
.pricing-desc { font-size: 0.875rem; color: var(--tx-muted); margin-bottom: var(--s4); padding-bottom: var(--s4); border-bottom: 1px solid var(--border); }
.pricing-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--s2); }
.pricing-row-label { font-size: 0.875rem; color: var(--tx-secondary); }
.pricing-row-val { font-size: 0.875rem; font-weight: 600; color: var(--tx-primary); }
.pricing-monthly { font-size: 2rem; font-weight: 800; color: var(--tx-primary); margin: var(--s3) 0 4px; }
.pricing-monthly span { font-size: 0.9rem; font-weight: 400; color: var(--tx-muted); }
.pricing-note { font-size: 0.8125rem; color: var(--tx-muted); margin-bottom: var(--s4); }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: var(--s3) 0; }
.pricing-no-overage {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tx-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--s4);
}

/* ── ROI Block ── */
.roi-block {
  background: linear-gradient(135deg, rgba(0,229,255,0.06) 0%, rgba(0,153,230,0.06) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: var(--s6);
}
.roi-block h2 { margin-bottom: var(--s3); }
.roi-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s5);
}
.roi-num { text-align: center; }
.roi-num-val {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--grad-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.roi-num-label { font-size: 0.85rem; color: var(--tx-muted); margin-top: 4px; }

/* ── Government ── */
.contract-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s5);
}
.contract-block h3 { margin-bottom: var(--s3); }
.contract-item {
  display: flex;
  gap: var(--s2);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--border);
}
.contract-item:last-child { border-bottom: none; padding-bottom: 0; }
.contract-bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  margin-top: 8px;
}
.contract-text { font-size: 0.9375rem; color: var(--tx-secondary); }
.contract-text strong { color: var(--tx-primary); }

/* ── About ── */
.founder-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: start;
}
.founder-info h1 { margin-bottom: var(--s3); }
.founder-info .lead { margin-bottom: var(--s4); }
.founder-info p { margin-bottom: var(--s3); font-size: 1.0625rem; }
.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s5);
}
.founder-card h3 { margin-bottom: 4px; font-size: 1.3rem; }
.founder-card .founder-title { color: var(--cyan); font-size: 0.875rem; font-weight: 600; margin-bottom: var(--s3); }
.founder-card-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--tx-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.founder-card-links a:last-child { border-bottom: none; }
.founder-card-links a:hover { color: var(--cyan); }
.certifications {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-top: var(--s4);
}
.cert-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 12px 16px;
  background: rgba(0,229,255,0.04);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--tx-secondary);
}
.cert-item .cert-icon { font-size: 1rem; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s5);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-glow); }
.contact-icon { font-size: 2.5rem; margin-bottom: var(--s3); }
.contact-card h3 { margin-bottom: var(--s2); font-size: 1.2rem; }
.contact-card p { font-size: 0.9375rem; margin-bottom: var(--s3); }
.contact-card a.contact-action {
  display: block;
  font-weight: 700;
  color: var(--cyan);
  font-size: 1.05rem;
  transition: opacity 0.2s;
}
.contact-card a.contact-action:hover { opacity: 0.8; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: var(--s6);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,153,230,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,229,255,0.08);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s3);
}
.page-hero h1 { max-width: 800px; margin-bottom: var(--s3); }
.page-hero .lead { margin-bottom: var(--s5); max-width: 680px; }
.page-hero-ctas { display: flex; gap: var(--s2); flex-wrap: wrap; }

/* ── Features List ── */
.feature-list { display: flex; flex-direction: column; gap: var(--s3); }
.feature-item {
  display: flex;
  gap: var(--s3);
  padding: var(--s4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}
.feature-item:hover { border-color: var(--border-accent); }
.feature-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-content h4 { font-size: 1rem; margin-bottom: 6px; }
.feature-content p { font-size: 0.9175rem; margin: 0; }

/* ── Dividers & helpers ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.text-center { text-align: center; }
.text-cyan { color: var(--cyan); }
.mt-2 { margin-top: var(--s2); }
.mt-3 { margin-top: var(--s3); }
.mt-4 { margin-top: var(--s4); }
.mb-2 { margin-bottom: var(--s2); }
.mb-3 { margin-bottom: var(--s3); }
.mb-4 { margin-bottom: var(--s4); }

/* ── Mobile ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --s8: 80px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 1px; }
  .serve-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .deployment-card { grid-template-columns: 1fr; }
  .deployment-card .status-badge { width: fit-content; }
  .founder-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .roi-numbers { grid-template-columns: 1fr; }
  .footer-cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: var(--s4); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* Mobile nav */
.nav-mobile-toggle {
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--tx-primary);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,9,14,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: var(--s3);
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--tx-secondary);
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: block;
}
.mobile-menu a:hover, .mobile-menu button:hover { color: var(--cyan); background: rgba(0,229,255,0.06); }
.mobile-menu .mobile-cta {
  margin-top: var(--s2);
  background: var(--grad);
  color: #000;
  font-weight: 700;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
}
.mobile-menu .mobile-cta:hover { filter: brightness(1.08); color: #000; background: var(--grad); }
.mobile-submenu { padding-left: var(--s3); }

/* ── Smooth reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
