:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --card-bg: #101529;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.65);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #111827 0, #020617 55%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAV (main Digiworx header) */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.logo-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #fed7aa, #f97316);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111827;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.4),
    0 10px 20px rgba(248, 113, 22, 0.35);
}

/* DESKTOP NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--text-muted);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text-main);
  border-bottom-color: rgba(148, 163, 184, 0.4);
}

.nav-links a.current {
  color: #e5e7eb;
  border-bottom-color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 22, 0.7);
  background: radial-gradient(circle at top left, #f97316, #b45309);
  color: #020617 !important;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 16px 32px rgba(248, 113, 22, 0.4);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.nav-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(248, 113, 22, 0.35);
}

/* HAMBURGER BUTTON – hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  transform-origin: center;
}

/* MOBILE NAV BEHAVIOUR */
@media (max-width: 880px) {
  .nav-inner {
    padding-inline: 1.1rem;
    position: relative;
  }

  /* hide full nav by default, show when .open */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.5rem;
    left: 1.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.97);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    z-index: 40;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.3rem 0;
  }

  .nav-toggle {
    display: flex;
  }
}

/* OPEN STATE: morph 3 bars into an X */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* SUBNAV (SmartQuote sections) */
.subnav {
  position: sticky;
  top: 60px; /* sits below main header */
  z-index: 25;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.subnav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem; /* row-gap, column-gap */
  white-space: normal;
  overflow: visible;
}

.subnav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.subnav a:hover {
  color: var(--text-main);
  border-bottom-color: rgba(148, 163, 184, 0.4);
}

.subnav a.active {
  color: #e5e7eb;
  border-bottom-color: var(--accent);
}

/* HERO */
.hero {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 3.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  scroll-margin-top: 180px; /* for anchored hero like #overview */
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2.5rem;
  }
}





h1 {
  font-size: clamp(2.25rem, 3vw + 1.2rem, 3.3rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
  letter-spacing: -0.04em;
}

h1 span.highlight {
  background: linear-gradient(to right, #f97316, #fb923c, #facc15);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.03rem;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-sub strong {
  color: #e5e7eb;
  font-weight: 500;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.btn-primary {
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  background: radial-gradient(circle at top left, #f97316, #b45309);
  color: #020617;
  box-shadow: 0 16px 32px rgba(248, 113, 22, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-primary span.icon {
  font-size: 1.1rem;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 0.78rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(209, 213, 219, 0.9);
}

.hero-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-meta strong {
  color: #e5e7eb;
}

/* HERO RIGHT: DEMO CARD */
.hero-right {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.demo-card {
  width: 100%;
  max-width: 410px;
  border-radius: 24px;
  padding: 1.1rem 1.2rem;
  background: radial-gradient(circle at top left, #111827, #020617);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.demo-header span.left {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.demo-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.demo-header span.right-pill {
  font-size: 0.7rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* --- SmartQuote demo responsive behaviour --- */

.demo-frame {
  position: relative;
  width: 100%;
  max-width: 480px;       /* nicer cap on desktop */
  height: 520px;
  margin: 0.2rem auto 0;
}

.demo-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #020617;
}

/* Desktop vs mobile helpers */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Mobile demo preview + button */
.demo-mobile {
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-mobile-thumb {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, #111827, #020617);
  padding: 0.7rem 0.8rem 0.9rem;
}

.demo-mobile-thumb-header {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.55rem;
}

.demo-mobile-thumb-header span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.6);
}

.demo-mobile-thumb-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.demo-mobile-pill {
  width: 60%;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.demo-mobile-line {
  height: 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

.demo-mobile-line.wide {
  width: 80%;
}

.demo-mobile-line.short {
  width: 45%;
}

.demo-launch-btn {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.92);
  color: #f9fafb;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.demo-launch-btn:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(209, 213, 219, 0.9);
}

.demo-mobile-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* On smaller screens: hide iframe, show mobile preview + button */
@media (max-width: 600px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  /* you can tweak height if you want a taller desktop iframe on very small screens */
  .demo-frame {
    max-width: 100%;
    height: 580px;
  }
}

/* GENERIC SECTIONS */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  scroll-margin-top: 200px; /* offset for sticky header(s) on anchor links */
}

.section-header {
  max-width: 1100px;
  margin-bottom: 1.6rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 0.3rem;
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: linear-gradient(135deg, var(--card-bg), #020617);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.2rem 1.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.65);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.65);
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

/* FEATURED PRODUCT GRID (index) */
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.7rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.smartquote-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(248, 113, 22, 0.7);
  font-size: 0.78rem;
  color: #fed7aa;
  margin-bottom: 0.6rem;
}

.smartquote-cta-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.btn-outline {
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

.mini-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* HOW WE WORK / STEPS (used on both) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.step-num {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* CTA PANEL (index) */
.cta-panel {
  margin-top: 1.8rem;
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #f97316, #7c2d12);
  color: #0b1020;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.cta-panel h3 {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
}

.cta-panel p {
  margin: 0;
  font-size: 0.9rem;
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cta-panel .btn-outline-dark {
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.8);
  background: rgba(15, 23, 42, 0.1);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

/* WHO IT'S FOR (SmartQuote) */
.persona-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

/* PRICING PANEL (SmartQuote) */
.pricing-panel {
  margin-top: 1.6rem;
  padding: 1.5rem 1.6rem;
  border-radius: 20px;
  background: radial-gradient(circle at top left, #f97316, #7c2d12);
  color: #0b1020;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .pricing-panel {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pricing-price {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.pricing-sub {
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.pricing-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.pricing-panel li {
  margin-bottom: 0.35rem;
}

.pricing-note {
  font-size: 0.78rem;
  opacity: 0.9;
  margin-top: 0.6rem;
}

.btn-outline-dark {
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.8);
  background: rgba(15, 23, 42, 0.1);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: rgba(15, 23, 42, 0.18);
}

/* FAQ (SmartQuote) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.faq-list details {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.7rem 0.9rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e5e7eb;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "＋";
  float: right;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* TESTIMONIAL (index, if you re-enable it) */
.testimonial {
  margin-top: 1.7rem;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "“";
  position: absolute;
  font-size: 4rem;
  opacity: 0.08;
  top: -1.4rem;
  left: 0.3rem;
}

.testimonial strong {
  color: #e5e7eb;
  font-weight: 500;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: #020617;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-main);
}


/* SmartQuote onboarding page layout & form styles */
html {
      scroll-behavior: smooth;
    }

    .onboarding-hero {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  /* match the form section layout */
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
  scroll-margin-top: 180px;
}

    @media (max-width: 880px) {
      .onboarding-hero {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 2.5rem;
      }
    }

    .hero-eyebrow {
      font-size: 0.8rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .hero-subtitle {
      font-size: 1.02rem;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 34rem;
      margin: 0.5rem 0 1.6rem;
    }

    .hero-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.8rem;
    }

    .checklist-card {
      background: linear-gradient(135deg, var(--card-bg), #020617);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
      padding: 1.3rem 1.3rem 1.4rem;
      font-size: 0.9rem;
    }

    .checklist-card h3 {
      margin: 0 0 0.6rem;
      font-size: 1.05rem;
    }

    .checklist-card ul {
      margin: 0;
      padding-left: 1.1rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ONBOARDING FORM SECTION */

    .onboarding-section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
      scroll-margin-top: 180px;
    }

    .onboarding-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: flex-start;
    }

    @media (max-width: 1000px) {
      .onboarding-layout {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .form-card {
      background: linear-gradient(135deg, var(--card-bg), #020617);
      border-radius: 22px;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
      padding: 1.4rem 1.5rem 1.6rem;
    }

    .form-section-title {
      font-size: 1rem;
      font-weight: 600;
      margin: 1.2rem 0 0.4rem;
    }

    .form-section-title:first-of-type {
      margin-top: 0;
    }

    .form-section-sub {
      font-size: 0.86rem;
      color: var(--text-muted);
      margin: 0 0 0.8rem;
    }

    .form-grid-two {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
    }

    @media (max-width: 700px) {
      .form-grid-two {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .form-field {
      margin-bottom: 0.9rem;
    }

    .form-field label {
      display: block;
      font-size: 0.86rem;
      margin-bottom: 0.3rem;
    }

    .field-hint {
      display: block;
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-top: 0.18rem;
    }

    .onboarding-input,
    .onboarding-textarea {
      width: 100%;
      border-radius: 12px;
      border: 1px solid var(--border-subtle);
      background: #020617;
      color: var(--text-main);
      padding: 0.55rem 0.7rem;
      font-family: var(--font-sans);
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.12s ease, box-shadow 0.12s ease,
        background-color 0.12s ease;
    }

    .onboarding-textarea {
      min-height: 70px;
      resize: vertical;
    }

    .onboarding-input:focus,
    .onboarding-textarea:focus {
      border-color: rgba(249, 115, 22, 0.8);
      box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.6);
      background: #020617;
    }

    .form-footer-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.7rem;
    }

    .support-panel {
      border-radius: 20px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: radial-gradient(circle at top left, #111827, #020617);
      padding: 1.2rem 1.3rem 1.3rem;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .support-panel h3 {
      margin: 0 0 0.4rem;
      font-size: 1.02rem;
      color: var(--text-main);
    }

    .support-panel p {
      margin: 0 0 0.7rem;
      line-height: 1.6;
    }

    .support-panel ul {
      margin: 0;
      padding-left: 1.1rem;
      line-height: 1.5;
    }
/* Inline-style replacements for better maintainability */
.smartquote-feature-heading {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.smartquote-feature-text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.smartquote-lab-intro {
  margin-bottom: 0.6rem;
}

.smartquote-lab-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.smartquote-lab-note {
  margin-top: 0.6rem;
}

.pricing-intro {
  font-size: 0.95rem;
  margin: 0 0 0.9rem;
}

/* Onboarding helpers */
.btn-emoji {
  font-size: 1.1rem;
}

.support-panel p.support-panel-spaced {
  margin-top: 0.7rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 1rem; /* added spacing below pill */
}

.pill-dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.22);
}

/* Mocked SmartQuote demo (no live iframe) */
.demo-mock {
  width: 100%;
  max-width: 480px;
  margin: 0.2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.demo-mock-chat {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, #020617, #020617);
  padding: 0.8rem 0.9rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.demo-bubble {
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 0.45rem 0.6rem;
  border-radius: 14px;
  max-width: 100%;
}

.demo-bubble-user {
  align-self: flex-end;
  background: rgba(248, 113, 22, 0.12);
  border: 1px solid rgba(248, 113, 22, 0.6);
}

.demo-bubble-bot {
  align-self: flex-start;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--text-muted);
}

.demo-bubble-small {
  font-size: 0.78rem;
}

.demo-mock-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, #020617, #020617);
}

@media (max-width: 600px) {
  .demo-mock-footer {
    grid-template-columns: minmax(0, 1fr);
  }
}

.demo-mock-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.demo-mock-value {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.demo-mock-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.demo-launch-btn {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.92);
  color: #f9fafb;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.demo-launch-btn:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(209, 213, 219, 0.9);
}

.demo-mobile-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* === SmartQuote demo – compact layout overrides === */

.hero-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.demo-wrapper {
  width: 100%;
  max-width: 380px;
}

.demo-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.45rem;
  opacity: 0.9;
}

/* More compact, more distinct demo card */
.demo-card {
  width: 100%;
  border-radius: 22px;
  padding: 0.85rem 1rem 1rem;
  background: radial-gradient(circle at top left, #111827, #020617);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(249, 115, 22, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-right .demo-card:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.85);
  border-color: var(--accent);
}

@media (max-width: 880px) {
  .hero-right {
    justify-content: center;
  }

  .demo-wrapper {
    max-width: 100%;
  }
}

/* Compact mock chat and footer */
.demo-mock {
  width: 100%;
  max-width: 380px;
  margin: 0.1rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.demo-mock-chat {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, #020617, #020617);
  padding: 0.7rem 0.75rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.demo-bubble {
  font-size: 0.8rem;
  line-height: 1.45;
  padding: 0.4rem 0.55rem;
  border-radius: 12px;
  max-width: 100%;
}

.demo-bubble-user {
  align-self: flex-end;
  background: rgba(248, 113, 22, 0.12);
  border: 1px solid rgba(248, 113, 22, 0.6);
}

.demo-bubble-bot {
  align-self: flex-start;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--text-muted);
}

.demo-bubble-small {
  font-size: 0.76rem;
}

.demo-mock-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.75rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, #020617, #020617);
}

@media (max-width: 600px) {
  .demo-mock-footer {
    grid-template-columns: minmax(0, 1fr);
  }
}

.demo-mock-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.18rem;
}

.demo-mock-value {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.demo-mock-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Slightly tighter CTA + note */
.demo-launch-btn {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border-radius: 13px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.92);
  color: #f9fafb;
  font-size: 0.93rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.demo-launch-btn:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(209, 213, 219, 0.9);
}

.demo-mobile-note {
  font-size: 0.76rem;
  color: var(--text-muted);
}


/* T&C's */

    .terms-field {
      margin-top: 1.5rem;
      padding: 1.25rem;
      background: rgba(139, 92, 246, 0.05);
      border: 1px solid rgba(139, 92, 246, 0.2);
      border-radius: 12px;
    }

    .terms-label {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      cursor: pointer;
      font-weight: 500;
      color: #ffffff;
    }

    .terms-label input[type="checkbox"] {
      margin-top: 0.25rem;
      width: 18px;
      height: 18px;
      accent-color: #ffffff;
      cursor: pointer;
    }

    .terms-text {
      flex: 1;
    }

    .terms-list {
      margin: 0.75rem 0 0 2rem;
      padding-left: 1rem;
      font-size: 0.9rem;
      color: #ffffff;
      line-height: 1.6;
    }

    .terms-list li {
      margin-bottom: 0.4rem;
    }

    .terms-list strong {
      color: #ffffff;
    }
