/* IntelliLeads site-wide design system — matches WebGL homepage language */
:root {
  --il-cyan: #22d3ee;
  --il-cyan-soft: #67e8f9;
  --il-emerald: #10b981;
  --il-blue: #3b82f6;
  --il-blue-deep: #1e40af;
  --il-ink: #09090b;
  --il-panel: rgba(24, 24, 27, 0.72);
  --il-panel-solid: #141416;
  --il-stroke: rgba(255, 255, 255, 0.1);
  --il-stroke-strong: rgba(34, 211, 238, 0.28);
  --il-glow: 0 0 40px rgba(34, 211, 238, 0.22);
  --il-text: #fafafa;
  --il-muted: #a1a1aa;
  --primary: #1e40af;
}

/* ── Base polish ─────────────────────────────────────────── */
body {
  background:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(30, 64, 175, 0.16), transparent 55%),
    #09090b;
  color: var(--il-text);
}

::selection {
  background: rgba(34, 211, 238, 0.35);
  color: #fff;
}

/* ── Typography helpers ──────────────────────────────────── */
.cyan-accent {
  color: #22d3ee !important;
}

.il-gradient-text,
.gradient-text {
  background: linear-gradient(120deg, #22d3ee 0%, #67e8f9 40%, #10b981 75%, #3b82f6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.il-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #e4e4e7;
}

.il-eyebrow .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--il-emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
  animation: il-pulse-ring 2s ease-out infinite;
}

@keyframes il-pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ── Surfaces ────────────────────────────────────────────── */
.il-glass,
.glass {
  background: var(--il-panel);
  border: 1px solid var(--il-stroke);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.il-card {
  background: linear-gradient(165deg, rgba(24, 24, 27, 0.95), rgba(9, 9, 11, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.il-card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 28px rgba(34, 211, 238, 0.1);
  transform: translateY(-2px);
}

/* Elevate common page card patterns without editing every file */
main .bg-zinc-900.border.border-zinc-800,
main .bg-zinc-900.rounded-3xl,
main .bg-zinc-900.p-8,
main .bg-zinc-900.p-10,
main .bg-zinc-900.p-12,
main div.bg-zinc-900,
main .bg-zinc-900 {
  background: linear-gradient(165deg, rgba(24, 24, 27, 0.96), rgba(12, 12, 14, 0.98)) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

main .bg-zinc-900.border.border-zinc-800:hover,
main .hover\:border-cyan-400\/50:hover,
main .il-card:hover {
  border-color: rgba(34, 211, 238, 0.4) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 24px rgba(34, 211, 238, 0.1);
}

/* Results / special section tops that still use zinc slabs */
main > section.pt-32,
main > section#results {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 50% -20%, rgba(30, 64, 175, 0.45), transparent 60%),
    #09090b !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Page heroes — mesh + grid like homepage */
.il-page-hero,
main > section.pt-24.pb-16.bg-zinc-900,
main > section.bg-zinc-900.pt-24,
section.pt-24.pb-16.bg-zinc-900 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 50% -20%, rgba(30, 64, 175, 0.5), transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(16, 185, 129, 0.12), transparent 50%),
    radial-gradient(ellipse 35% 40% at 10% 70%, rgba(34, 211, 238, 0.1), transparent 50%),
    #09090b !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.il-page-hero::before,
main > section.pt-24.pb-16.bg-zinc-900::before,
section.pt-24.pb-16.bg-zinc-900::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 10%, transparent 75%);
  pointer-events: none;
}

.il-page-hero > *,
main > section.pt-24.pb-16.bg-zinc-900 > *,
section.pt-24.pb-16.bg-zinc-900 > * {
  position: relative;
  z-index: 1;
}

/* Body sections */
.il-section {
  position: relative;
  background: #09090b !important;
}

.il-section-alt,
main > section.py-24.bg-zinc-900,
main section.py-24.bg-zinc-900 {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(30, 64, 175, 0.16), transparent 60%),
    #0c0c0e !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

main > section.py-24.bg-zinc-950,
main section.py-24.bg-zinc-950 {
  background: #09090b !important;
}

/* Stronger card identity on restyled pages */
.il-card {
  position: relative;
  overflow: hidden;
}

.il-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* FAQ / prose blocks on dark pages */
.il-section details,
.il-section-alt details {
  background: linear-gradient(165deg, rgba(24, 24, 27, 0.95), rgba(9, 9, 11, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
}

/* Tables on pricing etc */
main table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

main thead {
  background: rgba(34, 211, 238, 0.08);
}

main th,
main td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary-il,
a.btn-primary-il,
button.btn-primary-il {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 1.15rem;
  font-weight: 600;
  color: #09090b !important;
  background: linear-gradient(135deg, #22d3ee 0%, #67e8f9 50%, #22d3ee 100%);
  background-size: 200% 200%;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.4s ease, filter 0.25s ease;
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Full-width variants used on pricing cards */
a.btn-primary-il.block,
button.btn-primary-il.block,
.stripe-checkout-btn.btn-primary-il {
  display: flex !important;
  width: 100%;
  text-align: center;
}

/* Amber pilot CTA keeps brand warmth */
.stripe-checkout-btn.bg-amber-500,
a.bg-amber-500.hover\:bg-amber-400 {
  background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
  color: #09090b !important;
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.28);
  border-radius: 1rem;
  font-weight: 600;
}

.btn-primary-il:hover {
  filter: brightness(1.05);
  box-shadow: 0 14px 36px rgba(34, 211, 238, 0.4);
  background-position: 100% 50%;
}

.btn-ghost-il,
a.btn-ghost-il,
button.btn-ghost-il {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.5rem;
  border-radius: 1.15rem;
  font-weight: 600;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.35);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-ghost-il:hover {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
}

/* Upgrade common cyan CTA classes sitewide */
main a.bg-cyan-400,
main button.bg-cyan-400,
main .bg-cyan-400.hover\:bg-cyan-300,
nav a.bg-cyan-400,
#mobile-menu a.bg-cyan-400,
.stripe-checkout-btn.bg-cyan-400 {
  background: linear-gradient(135deg, #22d3ee 0%, #67e8f9 55%, #22d3ee 100%) !important;
  background-size: 200% 200% !important;
  color: #09090b !important;
  border: none !important;
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: filter 0.25s ease, box-shadow 0.25s ease, background-position 0.35s ease, transform 0.25s ease !important;
}

main a.bg-cyan-400:hover,
main button.bg-cyan-400:hover,
main .bg-cyan-400.hover\:bg-cyan-300:hover,
nav a.bg-cyan-400:hover,
#mobile-menu a.bg-cyan-400:hover,
.stripe-checkout-btn.bg-cyan-400:hover {
  filter: brightness(1.06);
  background-position: 100% 50% !important;
  box-shadow: 0 14px 36px rgba(34, 211, 238, 0.38);
}

main a.bg-zinc-800,
main .bg-zinc-800.hover\:bg-zinc-700 {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(34, 211, 238, 0.28) !important;
  color: #fff !important;
}

main a.bg-zinc-800:hover,
main .bg-zinc-800.hover\:bg-zinc-700:hover {
  background: rgba(34, 211, 238, 0.08) !important;
  border-color: rgba(34, 211, 238, 0.55) !important;
}

/* ── Navigation (self-contained — do not rely on Tailwind gaps) ─ */
.il-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(9, 9, 11, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.il-nav.nav-scrolled {
  background: rgba(9, 9, 11, 0.94) !important;
  border-bottom-color: rgba(34, 211, 238, 0.14) !important;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}

.il-nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.il-brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.il-logo-mark {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #09090b;
  background: linear-gradient(135deg, #22d3ee, #67e8f9 55%, #10b981);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.35);
  flex-shrink: 0;
}

.il-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  background: linear-gradient(120deg, #fff 20%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.il-nav-links {
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem 1.15rem;
  margin-left: auto;
  margin-right: 1rem;
}

.il-nav-link,
.il-nav a.il-nav-link,
.il-nav-links a {
  display: inline-block;
  color: #d4d4d8 !important;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease;
  text-decoration: none !important;
  margin: 0 !important; /* override legacy main.css nav a margins */
  padding: 0.25rem 0;
}

.il-nav-link:hover,
.il-nav-links a:hover {
  color: #22d3ee !important;
}

.il-nav-link.is-accent,
.il-nav-links a.is-accent {
  color: #22d3ee !important;
  font-weight: 600;
}

.il-nav-cta {
  display: none;
  flex-shrink: 0;
  background: linear-gradient(135deg, #22d3ee, #67e8f9) !important;
  color: #09090b !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  border-radius: 0.9rem;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(34, 211, 238, 0.25);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  margin: 0 !important;
}

.il-nav-cta:hover {
  filter: brightness(1.06);
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.35);
  color: #09090b !important;
}

.il-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.45rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.7rem;
  cursor: pointer;
  flex-shrink: 0;
}

.il-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.il-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1.25rem 1.25rem;
  background: rgba(9, 9, 11, 0.98);
  border-top: 1px solid rgba(34, 211, 238, 0.12);
  backdrop-filter: blur(16px);
}

.il-mobile-menu.is-open,
.il-mobile-menu:not([hidden]) {
  display: flex;
}

.il-mobile-menu[hidden] {
  display: none !important;
}

.il-mobile-menu a.mobile-nav-link {
  display: block;
  color: #e4e4e7 !important;
  text-decoration: none !important;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.7rem 0.15rem;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.il-mobile-menu a.mobile-nav-link:hover,
.il-mobile-menu a.mobile-nav-link.is-accent {
  color: #22d3ee !important;
}

.il-nav-cta-mobile {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem !important;
  width: 100%;
  text-align: center;
}

.il-nav-spacer {
  height: 72px;
}

@media (min-width: 960px) {
  .il-nav-links {
    display: flex;
  }
  .il-nav-cta {
    display: inline-flex;
    align-items: center;
  }
  .il-burger {
    display: none;
  }
}

@media (min-width: 1100px) {
  .il-nav-links {
    gap: 0.4rem 1.4rem;
  }
  .il-nav-inner {
    padding: 0.95rem 1.5rem;
  }
}

/* Kill legacy main.css nav rules that stack / margin links */
nav.il-nav {
  background: rgba(9, 9, 11, 0.78);
  padding: 0;
  position: fixed;
}
nav.il-nav a {
  margin: 0;
}

/* ── Footer ──────────────────────────────────────────────── */
.il-footer {
  position: relative;
  padding: 3.5rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(34, 211, 238, 0.12);
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(30, 64, 175, 0.18), transparent 60%),
    #09090b;
  overflow: hidden;
}

.il-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(34, 211, 238, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to top, black, transparent 80%);
  pointer-events: none;
}

.il-footer > * {
  position: relative;
  z-index: 1;
}

.il-footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #ffffff, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.il-footer a {
  transition: color 0.2s ease;
}

.il-footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  padding: 0.5rem 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.il-footer-chip:hover {
  background: rgba(34, 211, 238, 0.06);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.12);
}

/* ── Forms (contact + modal shared) ──────────────────────── */
.il-input,
main input[type="text"],
main input[type="email"],
main input[type="tel"],
main textarea,
main select {
  background: rgba(9, 9, 11, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-radius: 1rem !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

main input:focus,
main textarea:focus,
main select:focus {
  border-color: rgba(34, 211, 238, 0.65) !important;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15) !important;
  outline: none !important;
}

/* ── Modal (dark glass, homepage-aligned) ──────────────────
   Critical: outer shell scrolls so submit is always reachable
   on short mobile viewports (no zoom-out required). */
.modal {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  height: 100dvh !important;
  background:
    radial-gradient(ellipse 50% 40% at 50% 40%, rgba(30, 64, 175, 0.25), transparent 60%),
    rgba(0, 0, 0, 0.78) !important;
  display: none;
  align-items: flex-start !important;
  justify-content: center !important;
  z-index: 9999 !important;
  padding: max(0.75rem, env(safe-area-inset-top)) 0.75rem max(0.75rem, env(safe-area-inset-bottom)) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* When JS sets display:flex, keep top-aligned scroll shell */
.modal[style*="display: flex"],
.modal[style*="display:flex"],
.modal.is-open {
  display: flex !important;
}

.modal-content {
  position: relative;
  background:
    linear-gradient(165deg, rgba(24, 24, 27, 0.98), rgba(9, 9, 11, 0.99)) !important;
  color: #fff !important;
  padding: 1.35rem 1.15rem 1.15rem !important;
  border-radius: 1.35rem !important;
  width: 100% !important;
  max-width: 460px !important;
  margin: auto !important; /* vertical center when short enough; still scrolls when tall */
  max-height: none !important; /* let outer .modal scroll — avoids clipped submit */
  overflow: visible !important;
  border: 1px solid rgba(34, 211, 238, 0.22) !important;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(34, 211, 238, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* Compact fields on short screens so less scrolling is needed */
@media (max-height: 760px) {
  .modal-content {
    padding: 1.1rem 1rem 1rem !important;
  }
  .modal-content h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.15rem !important;
  }
  .modal-content .modal-sub {
    margin-bottom: 0.85rem !important;
    font-size: 0.82rem !important;
  }
  .modal-content label {
    margin-bottom: 0.25rem !important;
    font-size: 0.8rem !important;
  }
  .modal-content input,
  .modal-content select {
    padding: 0.65rem 0.8rem !important;
    margin-bottom: 0.65rem !important;
    font-size: 0.92rem !important;
  }
  .modal-content button[type="submit"],
  .modal-content #submitBtn {
    padding: 0.85rem 1rem !important;
    position: sticky;
    bottom: 0;
    z-index: 2;
  }
}

@media (max-width: 480px) {
  .modal-content {
    border-radius: 1.15rem !important;
  }
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.7), transparent);
  pointer-events: none;
}

.modal-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  text-align: center;
}

.modal-content .modal-sub {
  text-align: center;
  color: #a1a1aa;
  font-size: 0.9rem;
  margin-bottom: 1.35rem;
}

.modal-content label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #d4d4d8;
}

.modal-content input,
.modal-content select {
  display: block;
  width: 100%;
  background: rgba(9, 9, 11, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  padding: 0.8rem 0.95rem;
  border-radius: 0.85rem !important;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.modal-content input:focus,
.modal-content select:focus {
  border-color: rgba(34, 211, 238, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.16) !important;
  outline: none;
}

.modal-content select option {
  background: #18181b;
  color: #fff;
}

.modal-content button[type="submit"],
.modal-content #submitBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.95rem 1rem;
  border: none;
  border-radius: 0.95rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: #09090b !important;
  background: linear-gradient(135deg, #22d3ee, #67e8f9) !important;
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.28);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.modal-content button[type="submit"]:hover,
.modal-content #submitBtn:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 34px rgba(34, 211, 238, 0.38);
}

.modal-content .close {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  float: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #71717a;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.modal-content .close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

#successState .bg-zinc-800\/50 {
  background: rgba(34, 211, 238, 0.06) !important;
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 0.9rem;
}

/* ── Pricing highlight card ──────────────────────────────── */
main .border-cyan-400,
main .ring-cyan-400,
.pricing-featured {
  border-color: rgba(34, 211, 238, 0.55) !important;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.12), 0 16px 48px rgba(0, 0, 0, 0.3) !important;
}

/* ── Blog / list cards ───────────────────────────────────── */
main img {
  border-radius: inherit;
}

/* ── CTA band utility for inner pages ────────────────────── */
.il-cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(30, 64, 175, 0.5), rgba(9, 9, 11, 0.92) 55%, rgba(16, 185, 129, 0.18)),
    #09090b;
  border: 1px solid rgba(34, 211, 238, 0.25);
  box-shadow: 0 0 60px rgba(30, 64, 175, 0.22);
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .il-eyebrow .dot,
  .live-dot,
  .live-dot-il {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   Sitewide UX alignment (shared with homepage language)
   ═══════════════════════════════════════════════════════════ */

/* Cursor glow — desktop only */
#cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 40;
  background: radial-gradient(circle, rgba(34,211,238,0.14) 0%, rgba(16,185,129,0.08) 35%, transparent 70%);
  mix-blend-mode: screen;
  will-change: transform;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  #cursor-glow { display: none !important; }
}

/* Animated mesh wash on page heroes */
.il-page-hero::after {
  content: '';
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.14), transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.28), transparent 46%),
    radial-gradient(circle at 60% 80%, rgba(16, 185, 129, 0.12), transparent 40%);
  animation: il-mesh-drift 14s ease-in-out infinite alternate;
  opacity: 0.9;
}
@keyframes il-mesh-drift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(3%, 2%, 0) scale(1.06); }
}
@media (max-width: 768px) {
  .il-page-hero::after {
    animation: none;
    opacity: 0.7;
  }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal="left"] { transform: translateX(-24px); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="scale"].is-visible { transform: none; }

/* Gradient text shimmer (shared) */
.il-gradient-text,
.gradient-text {
  animation: il-grad-shift 8s ease infinite;
}
@keyframes il-grad-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── ROI calculator (pricing) ─────────────────────────────── */
.il-roi {
  position: relative;
  border-radius: 1.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(165deg, rgba(24, 24, 27, 0.96), rgba(9, 9, 11, 0.98));
  border: 1px solid rgba(34, 211, 238, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(34, 211, 238, 0.08);
  overflow: hidden;
}
.il-roi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 90% 0%, rgba(34, 211, 238, 0.12), transparent 60%);
  pointer-events: none;
}
.il-roi-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .il-roi-grid { grid-template-columns: 1.1fr 0.9fr; gap: 1.75rem; }
}
.il-roi label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  color: #d4d4d8;
  margin-bottom: 0.4rem;
}
.il-roi input[type="range"] {
  width: 100%;
  accent-color: #22d3ee;
  margin-bottom: 1rem;
}
.il-roi select {
  width: 100%;
  background: rgba(9, 9, 11, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 0.85rem;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.5rem;
}
.il-roi-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.il-roi-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
}
.il-roi-stat span {
  display: block;
  font-size: 0.75rem;
  color: #a1a1aa;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.il-roi-stat strong {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}
.il-roi-stat strong.is-positive { color: #34d399; }
.il-roi-stat strong.is-negative { color: #f87171; }
.il-roi-stat.il-roi-stat--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(16, 185, 129, 0.08));
  border-color: rgba(34, 211, 238, 0.28);
}

/* ── Service selector ─────────────────────────────────────── */
.il-svc-selector {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .il-svc-selector { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
}
.il-svc-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.il-svc-tab {
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(24, 24, 27, 0.75);
  color: #e4e4e7;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.il-svc-tab:hover {
  border-color: rgba(34, 211, 238, 0.35);
}
.il-svc-tab.is-active {
  border-color: rgba(34, 211, 238, 0.55);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(9, 9, 11, 0.9));
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.12);
  color: #fff;
}
.il-svc-tab small {
  display: block;
  margin-top: 0.25rem;
  color: #a1a1aa;
  font-size: 0.8rem;
}
.il-svc-preview {
  position: relative;
  min-height: 280px;
  border-radius: 1.5rem;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(30, 64, 175, 0.35), transparent 55%),
    linear-gradient(165deg, rgba(24, 24, 27, 0.95), rgba(9, 9, 11, 0.98));
  padding: 1.5rem;
  overflow: hidden;
}
.il-svc-preview::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -40px;
  top: -40px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 70%);
  pointer-events: none;
}
.il-svc-panel { display: none; position: relative; z-index: 1; }
.il-svc-panel.is-active { display: block; animation: il-fade-up 0.35s ease; }
@keyframes il-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.il-svc-panel h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.il-svc-panel p { color: #a1a1aa; margin-bottom: 1rem; }
.il-svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.il-svc-chips span {
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.22);
  color: #a5f3fc;
}

/* ── Ranking journey (results) ────────────────────────────── */
.il-journey {
  border-radius: 1.75rem;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(30, 64, 175, 0.35), transparent 60%),
    linear-gradient(165deg, rgba(24, 24, 27, 0.96), rgba(9, 9, 11, 0.99));
  padding: clamp(1.15rem, 3vw, 2rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(34, 211, 238, 0.08);
}
.il-journey-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}
.il-journey-rank {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #22d3ee, #67e8f9 45%, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.il-journey-card {
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 9, 11, 0.65);
  padding: 1rem 1.15rem;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.il-journey-card.is-win {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.22);
  animation: il-win-pulse 1.8s ease-in-out infinite;
}
@keyframes il-win-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(34, 211, 238, 0.15); }
  50% { box-shadow: 0 0 42px rgba(34, 211, 238, 0.35); }
}
.il-journey-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin: 1rem 0 1.25rem;
}
.il-journey-bar > i {
  display: block;
  height: 100%;
  width: 10%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ef4444, #f59e0b 40%, #22d3ee 75%, #10b981);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.il-journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 640px) {
  .il-journey-steps { grid-template-columns: repeat(2, 1fr); }
}
.il-journey-step {
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.7rem 0.75rem;
  text-align: left;
  color: #a1a1aa;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.il-journey-step.is-active {
  border-color: rgba(34, 211, 238, 0.45);
  color: #fff;
  background: rgba(34, 211, 238, 0.1);
}
.il-journey-step strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}
.il-journey-step span { font-size: 0.75rem; }
.il-pack-mock {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.75rem;
}
.il-pack-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  transition: border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.il-pack-row .rank-badge {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: #d4d4d8;
  flex-shrink: 0;
}
.il-pack-row.is-you {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.12);
}
.il-pack-row.is-you .rank-badge {
  background: linear-gradient(135deg, #22d3ee, #10b981);
  color: #09090b;
}
.il-pack-row.is-dim { opacity: 0.45; }

/* Before/after interactive */
.il-ba {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: #0c0c0e;
  min-height: 220px;
}
.il-ba-panes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
}
@media (max-width: 640px) {
  .il-ba-panes { grid-template-columns: 1fr; }
}
.il-ba-pane {
  padding: 1.35rem 1.25rem;
}
.il-ba-pane.before {
  background: linear-gradient(165deg, rgba(127, 29, 29, 0.25), rgba(9, 9, 11, 0.95));
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.il-ba-pane.after {
  background: linear-gradient(165deg, rgba(8, 51, 68, 0.45), rgba(9, 9, 11, 0.95));
}
.il-ba-pane .num {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin: 0.35rem 0;
}
.il-ba-pane.before .num { color: #f87171; }
.il-ba-pane.after .num { color: #22d3ee; }
.il-ba-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}
.il-ba-controls input[type="range"] {
  flex: 1;
  min-width: 140px;
  accent-color: #22d3ee;
}
.il-ba-controls button {
  font-size: 0.8rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #e4e4e7;
  cursor: pointer;
}
.il-ba-controls button:hover {
  border-color: rgba(34, 211, 238, 0.4);
  color: #fff;
}

/* Live metrics strip */
.il-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 640px) {
  .il-metrics { grid-template-columns: 1fr; }
}
.il-metric {
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(24, 24, 27, 0.8);
  padding: 1rem 1.1rem;
}
.il-metric .label {
  font-size: 0.75rem;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.il-metric .value {
  font-size: 1.6rem;
  font-weight: 750;
  color: #fff;
}
.il-metric svg {
  width: 100%;
  height: 36px;
  margin-top: 0.5rem;
  overflow: visible;
}
.il-metric path {
  fill: none;
  stroke: #22d3ee;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: il-draw 1.6s ease forwards 0.2s;
}
@keyframes il-draw {
  to { stroke-dashoffset: 0; }
}

/* Mobile polish */
@media (max-width: 768px) {
  .il-card:hover { transform: none; }
  [data-magnetic] { transform: none !important; }
  .il-journey-card.is-win { animation: none; box-shadow: 0 0 24px rgba(34, 211, 238, 0.18); }
}

@media (prefers-reduced-motion: reduce) {
  .il-page-hero::after,
  .il-gradient-text,
  .gradient-text,
  .il-journey-card.is-win,
  .il-metric path {
    animation: none !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .il-metric path { stroke-dashoffset: 0; }
}

/* ═══ Round 2: BA emphasis, compare widget, cadence, misc ═══ */

/* Before/after emphasis (opacity crossfade + position marker) */
.il-ba { position: relative; }
.il-ba-pane { transition: opacity 0.3s ease; }
.il-ba::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 64px;
  left: var(--ba-pos, 0%);
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(34, 211, 238, 0.6), transparent);
  pointer-events: none;
  transition: left 0.15s ease;
}
.il-ba[data-state="before"] .ba-before { box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.4); }
.il-ba[data-state="after"] .ba-after { box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.5); }

/* Two-plan compare widget */
.il-compare {
  border-radius: 1.75rem;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: linear-gradient(165deg, rgba(24, 24, 27, 0.96), rgba(9, 9, 11, 0.98));
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.il-compare-selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 560px) {
  .il-compare-selects { grid-template-columns: 1fr; }
}
.il-compare select {
  width: 100%;
  background: rgba(9, 9, 11, 0.9);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: #fff;
  border-radius: 0.85rem;
  padding: 0.8rem 0.9rem;
  font-weight: 600;
}
.il-compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a1a1aa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.il-compare-head strong { color: #22d3ee; }
.il-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.7rem 0.75rem;
  font-size: 0.9rem;
  color: #d4d4d8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}
.il-compare-row:last-child { border-bottom: none; }
.il-compare-row.is-diff .cmp-val-a,
.il-compare-row.is-diff .cmp-val-b { color: #fff; }
.il-compare-row.is-diff { background: rgba(34, 211, 238, 0.04); border-radius: 0.6rem; }
.il-compare-row .cmp-f { color: #a1a1aa; font-size: 0.82rem; }
@media (max-width: 560px) {
  .il-compare-row { font-size: 0.82rem; }
}

/* LocalSpark cadence strip */
.il-cadence {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  max-width: 560px;
  margin: 0 auto;
}
.il-cadence-day {
  aspect-ratio: 1;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: #52525b;
  position: relative;
}
.il-cadence-day.is-post {
  border-color: rgba(34, 211, 238, 0.4);
  color: #a5f3fc;
}
.il-cadence-day.is-post::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  bottom: 5px;
  background: #22d3ee;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.7);
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.il-cadence-day.is-post.is-on::after { opacity: 1; transform: scale(1); }
.il-cadence-day.is-post.is-on {
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.12);
}

/* Contact method row + copy buttons */
.il-contact-methods {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .il-contact-methods { grid-template-columns: 1fr 1fr; }
}
.il-contact-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(24, 24, 27, 0.8);
}
.il-contact-method a { color: #22d3ee; font-weight: 600; text-decoration: none; }
.il-copy-btn {
  font-size: 0.72rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.06);
  color: #a5f3fc;
  cursor: pointer;
  white-space: nowrap;
}
.il-copy-btn:hover { border-color: rgba(34, 211, 238, 0.6); }
.il-copy-btn.is-copied { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.5); color: #6ee7b7; }

/* Contact form focus glow */
#contactForm input:focus,
#contactForm textarea:focus {
  border-color: rgba(34, 211, 238, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.14), 0 0 20px rgba(34, 211, 238, 0.08);
}

/* Blog card polish */
.il-blog-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.il-blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35), 0 0 24px rgba(34, 211, 238, 0.1);
}
.il-blog-card img { transition: transform 0.4s ease; }
.il-blog-card:hover img { transform: scale(1.03); }
@media (max-width: 768px) {
  .il-blog-card:hover { transform: none; }
  .il-blog-card:hover img { transform: none; }
}

/* ═══ Round 3: footer nav spacing + Talk-to-Eve brand pass ═══ */

/* Footer nav — explicit gaps (Tailwind gap utils purge in local build) */
.il-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 0.5rem;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  max-width: 60rem;
}
.il-footer-nav a {
  display: inline-block;
  color: #a1a1aa;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  margin: 0;
  border-radius: 0.65rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.il-footer-nav a:hover {
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.07);
  border-color: rgba(34, 211, 238, 0.22);
}

/* Talk to Eve — brand alignment */
.voice-container.il-page-hero {
  min-height: 100vh;
  padding-top: 7rem;
}
.voice-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, rgba(24, 24, 27, 0.92), rgba(9, 9, 11, 0.97)) !important;
  border: 1px solid rgba(34, 211, 238, 0.22) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 48px rgba(34, 211, 238, 0.08) !important;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.voice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.65), transparent);
  pointer-events: none;
}
.mic-button {
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 55%, #1e40af 100%) !important;
  box-shadow: 0 4px 24px rgba(34, 211, 238, 0.35) !important;
}
.mic-button:hover:not(:disabled) {
  box-shadow: 0 6px 34px rgba(34, 211, 238, 0.55) !important;
}
.question-chip {
  background: rgba(34, 211, 238, 0.08) !important;
  border-color: rgba(34, 211, 238, 0.28) !important;
  color: #67e8f9 !important;
}
.question-chip:hover {
  background: rgba(34, 211, 238, 0.16) !important;
  border-color: rgba(34, 211, 238, 0.6) !important;
  color: #a5f3fc !important;
}
.transcript-container {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(9, 9, 11, 0.55) !important;
}
@media (prefers-reduced-motion: reduce) {
  .waveform-ring,
  .eve-avatar-ring.pulsing,
  .eve-avatar-ring.speaking,
  .mic-button.listening {
    animation: none !important;
  }
}
