/*
  EnquiryFlow shared demo theme
  Tokens, typography, page structure, header, hero, CTA, and responsive layout.
*/

:root {
  --demo-navy-950: #081d2c;
  --demo-navy-900: #102d40;
  --demo-slate-700: #405869;
  --demo-slate-600: #5d7180;
  --demo-slate-500: #778894;
  --demo-blue-700: #075dba;
  --demo-blue-600: #0878df;
  --demo-blue-100: #e9f3ff;
  --demo-teal-700: #0b776f;
  --demo-teal-500: #18a397;
  --demo-teal-100: #e8f8f5;
  --demo-grey-50: #f8fafb;
  --demo-grey-100: #f2f5f6;
  --demo-white: #ffffff;
  --demo-border: #dce5e9;
  --demo-border-dark: #c6d4da;
  --demo-danger: #b42318;
  --demo-shadow-sm: 0 5px 16px rgba(8, 29, 44, 0.06);
  --demo-shadow-lg: 0 22px 55px rgba(8, 29, 44, 0.13);
  --demo-radius-lg: 18px;
  --demo-radius: 11px;
  --demo-radius-sm: 8px;
  --demo-max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--demo-slate-700);
  background: var(--demo-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--demo-navy-900);
  line-height: 1.15;
  letter-spacing: -0.022em;
}

h1 {
  max-width: 16ch;
  margin: 0 auto 1.1rem;
  font-size: clamp(2.55rem, 7vw, 4.5rem);
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.95rem, 4.5vw, 2.75rem);
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.demo-container {
  width: min(calc(100% - 2rem), var(--demo-max-width));
  margin-inline: auto;
}

.demo-section {
  padding: 4.5rem 0;
}

.demo-section-soft {
  background: var(--demo-grey-100);
  border-block: 1px solid #e1e9ec;
}

#how-it-works,
#services,
#demo,
#demo-preview,
#enquiryflow,
#contact {
  scroll-margin-top: 6.5rem;
}

.demo-skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.55rem 0.8rem;
  color: var(--demo-white);
  background: var(--demo-navy-950);
  border-radius: 6px;
  transform: translateY(-160%);
}

.demo-skip-link:focus {
  transform: translateY(0);
}

.demo-notice {
  padding: 0.55rem 1rem;
  color: #285c58;
  background: var(--demo-teal-100);
  border-bottom: 1px solid #cbeae5;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.demo-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--demo-border);
  backdrop-filter: blur(14px);
}

.demo-header-inner,
.demo-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.demo-header-inner {
  min-height: 4.5rem;
}

.demo-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  color: var(--demo-navy-900);
  text-decoration: none;
  line-height: 1.08;
}

.demo-brand-mark,
.demo-shell-logo {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--demo-white);
  background: linear-gradient(145deg, var(--demo-blue-600), var(--demo-teal-500));
  font-weight: 850;
}

.demo-brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
}

.demo-brand strong,
.demo-brand small {
  display: block;
}

.demo-brand strong {
  overflow: hidden;
  font-size: 0.94rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-brand small {
  margin-top: 0.2rem;
  color: var(--demo-slate-500);
  font-size: 0.72rem;
  font-weight: 650;
}

.demo-nav {
  display: none;
  align-items: center;
  gap: 1.4rem;
}

.demo-nav a {
  color: var(--demo-slate-600);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.demo-nav a:hover {
  color: var(--demo-blue-700);
}

.demo-button {
  display: inline-flex;
  min-height: 2.95rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.05rem;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease, transform 150ms ease;
}

.demo-button:hover {
  border-color: currentColor;
  box-shadow: 0 10px 24px rgba(8, 29, 44, 0.14);
  transform: translateY(-1px);
}

.demo-button-primary {
  color: var(--demo-white);
  background: var(--demo-blue-600);
  box-shadow: 0 7px 18px rgba(8, 120, 223, 0.22);
}

.demo-button-primary:hover {
  background: var(--demo-blue-700);
  box-shadow: 0 10px 26px rgba(8, 120, 223, 0.28);
}

.demo-button-secondary {
  color: var(--demo-navy-900);
  background: var(--demo-white);
  border-color: var(--demo-border-dark);
  box-shadow: var(--demo-shadow-sm);
}

.demo-button-secondary:hover,
.demo-button-quiet:hover {
  background: var(--demo-blue-100);
  border-color: #9db5bf;
}

.demo-button-quiet {
  color: var(--demo-slate-700);
  background: transparent;
  border-color: var(--demo-border);
}

.demo-button-light {
  color: var(--demo-navy-950);
  background: var(--demo-white);
  border-color: var(--demo-white);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.16);
}

.demo-button-light:hover {
  background: var(--demo-teal-100);
  border-color: var(--demo-teal-100);
}

.demo-button-large {
  min-height: 3.2rem;
  padding-inline: 1.25rem;
}

.demo-button[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.demo-button[disabled]:hover {
  border-color: transparent;
  box-shadow: none;
}

.demo-button:focus-visible,
.demo-brand:focus-visible,
.demo-nav a:focus-visible,
.demo-cta-actions a:focus-visible,
.demo-option input:focus-visible + span,
.demo-input:focus-visible {
  outline: 3px solid rgba(8, 120, 223, 0.28);
  outline-offset: 3px;
}

.demo-button:focus-visible {
  border-color: currentColor;
  box-shadow: 0 0 0 5px rgba(8, 120, 223, 0.12);
}

.demo-header-button {
  min-height: 2.5rem;
  padding: 0.5rem 0.78rem;
  font-size: 0.84rem;
}

.demo-hero {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 2.5rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f6fafb 100%);
  border-bottom: 1px solid #e6edef;
}

.demo-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(8, 120, 223, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 120, 223, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
  pointer-events: none;
}

.demo-hero-content {
  position: relative;
  text-align: center;
}

.demo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
  padding: 0.4rem 0.72rem;
  color: var(--demo-blue-700);
  background: rgba(233, 243, 255, 0.9);
  border: 1px solid #cfe3fb;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-status-dot {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 50%;
}

.demo-hero-content > p:not(.demo-hero-note) {
  max-width: 46rem;
  margin: 0 auto 1.45rem;
  color: var(--demo-slate-600);
  font-size: 1.1rem;
}

.demo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.demo-hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.9rem 0 0;
  color: var(--demo-slate-500);
  font-size: 0.86rem;
}

.demo-hero-note span {
  color: var(--demo-teal-700);
  font-weight: 900;
}

.demo-core-offer {
  max-width: 48rem;
  margin: 2.75rem auto 0;
  padding: 0.85rem 1rem;
  color: var(--demo-slate-600);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--demo-border);
  border-radius: 10px;
  box-shadow: var(--demo-shadow-sm);
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
}

.demo-section-heading {
  max-width: 46rem;
  margin-bottom: 1.85rem;
}

.demo-section-heading-centred {
  margin-inline: auto;
  text-align: center;
}

.demo-section-heading p {
  margin-bottom: 0;
  color: var(--demo-slate-600);
}

.demo-section-label,
.demo-panel-kicker,
.demo-cta-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--demo-blue-700);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-about-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.demo-about-copy p {
  color: var(--demo-slate-600);
}

.demo-about-copy p:last-child {
  margin-bottom: 0;
}

.demo-about-cards {
  display: grid;
  gap: 0.75rem;
}

.demo-about-card {
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--demo-grey-50);
  border: 1px solid var(--demo-border);
  border-radius: var(--demo-radius);
}

.demo-about-card .demo-icon {
  width: 2.35rem;
  height: 2.35rem;
}

.demo-about-card h3 {
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}

.demo-about-card p {
  margin: 0;
  color: var(--demo-slate-600);
  font-size: 0.88rem;
}

.demo-cta {
  padding: 4rem 0;
  color: #d9e5ea;
  background:
    radial-gradient(circle at 85% 0%, rgba(24, 163, 151, 0.17), transparent 34%),
    var(--demo-navy-950);
}

.demo-cta-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

.demo-cta-label {
  color: #72d5ca;
}

.demo-cta h2 {
  max-width: 21ch;
  color: var(--demo-white);
}

.demo-cta p {
  max-width: 44rem;
  margin-bottom: 0;
}

.demo-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.demo-cta-contact-card {
  width: 100%;
  max-width: 29rem;
  padding: 1rem;
  color: var(--demo-slate-700);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.demo-cta-contact-card h3 {
  margin-bottom: 0.25rem;
  color: var(--demo-navy-900);
  font-size: 0.94rem;
}

.demo-cta-fallback {
  margin: 0 0 0.75rem;
  color: var(--demo-slate-600);
  font-size: 0.86rem;
  line-height: 1.4;
}

.demo-cta-contact-row {
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr) 4.7rem;
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem 0;
  border-top: 1px solid var(--demo-border);
}

.demo-cta-contact-label {
  color: var(--demo-slate-500);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-cta-contact-link {
  min-width: 0;
  color: var(--demo-navy-900);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2rem;
}

.demo-copy-email-button,
.demo-cta-contact-action {
  display: inline-flex;
  min-height: 2.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.58rem;
  color: var(--demo-blue-700);
  background: var(--demo-blue-100);
  border: 1px solid #cfe3fb;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.demo-copy-email-button:hover,
.demo-cta-contact-action:hover {
  background: var(--demo-teal-100);
  border-color: #a7dcd5;
  box-shadow: 0 5px 14px rgba(8, 29, 44, 0.08);
}

.demo-copy-email-button:focus-visible,
.demo-cta-contact-action:focus-visible {
  outline: 3px solid rgba(8, 120, 223, 0.22);
  outline-offset: 3px;
}

.demo-copy-confirmation {
  display: block;
  min-height: 1.15rem;
  margin-top: 0.35rem;
  color: var(--demo-teal-700);
  font-size: 0.82rem;
  font-weight: 800;
}

.demo-cta-contact-link:hover {
  color: var(--demo-blue-700);
}

.demo-footer {
  padding: 1.15rem 0;
  color: #718994;
  background: #061824;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.demo-footer-inner {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.15rem;
}

.demo-footer p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 35.98rem) {
  .demo-cta-contact-card {
    padding: 0.9rem;
  }

  .demo-cta-contact-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    align-items: stretch;
  }

  .demo-copy-email-button,
  .demo-cta-contact-action {
    width: 100%;
  }
}

@media (min-width: 36rem) {
  .demo-container {
    width: min(calc(100% - 3rem), var(--demo-max-width));
  }

  .demo-about-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-about-card {
    grid-template-columns: 1fr;
  }

  .demo-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.9rem;
  }

  .demo-cta-actions .demo-button {
    width: 100%;
  }

  .demo-cta-fallback {
    width: 100%;
  }
}

@media (min-width: 50rem) {
  .demo-section {
    padding: 5rem 0;
  }

  .demo-nav {
    display: flex;
  }

  .demo-hero {
    padding-top: 6rem;
  }

  .demo-about-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 4rem;
  }

  .demo-cta-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3rem;
  }

  .demo-cta-actions {
    max-width: 26rem;
    justify-content: flex-end;
  }

  .demo-cta-actions .demo-button {
    width: 100%;
  }

  .demo-cta-fallback {
    width: 100%;
  }

  .demo-footer-inner {
    align-items: center;
    flex-direction: row;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Premium dental demo layer */
:root {
  --demo-page-bg: #fbfdff;
  --demo-card-bg: rgba(255, 255, 255, 0.92);
  --demo-ink: #071d2c;
  --demo-muted-panel: #f6fafc;
  --demo-shadow-xl: 0 28px 80px rgba(8, 29, 44, 0.16);
}

body {
  background: var(--demo-page-bg);
}

#problem,
#solution,
#trust,
#packages,
#faq {
  scroll-margin-top: 6.5rem;
}

.demo-notice {
  color: #125f58;
  background: #effbf8;
  border-bottom-color: #d6f1ec;
}

.demo-header {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 0 rgba(8, 29, 44, 0.03);
}

.demo-brand-mark,
.demo-shell-logo {
  background: var(--demo-navy-900);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.demo-nav {
  gap: 1.2rem;
}

.demo-nav a {
  color: #526979;
}

.demo-button {
  border-radius: 999px;
}

.demo-button-primary {
  background: #056fdb;
  box-shadow: 0 12px 28px rgba(5, 111, 219, 0.24);
}

.demo-button-primary:hover {
  background: #075dba;
}

.demo-button-secondary {
  background: rgba(255, 255, 255, 0.8);
}

.demo-hero {
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 163, 151, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.demo-hero-grid {
  opacity: 0.38;
  background-size: 42px 42px;
}

.demo-hero-content {
  display: grid;
  gap: 2.4rem;
  align-items: center;
  text-align: left;
}

.demo-hero-copy {
  max-width: 44rem;
}

.demo-hero h1 {
  max-width: 12.5ch;
  margin: 0 0 1.15rem;
  color: var(--demo-ink);
  font-size: clamp(3rem, 7vw, 5.7rem);
  letter-spacing: -0.04em;
}

.demo-hero-content > p:not(.demo-hero-note),
.demo-hero-copy > p:not(.demo-hero-note) {
  max-width: 43rem;
  margin: 0 0 1.45rem;
  color: #526979;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.demo-hero-badge {
  margin-bottom: 1rem;
  color: #0d6861;
  background: #eefbf8;
  border-color: #d7f0ec;
}

.demo-hero-actions {
  justify-content: flex-start;
}

.demo-hero-note {
  justify-content: flex-start;
}

.demo-core-offer {
  max-width: 42rem;
  margin: 1rem 0 0;
  padding: 0;
  color: #526979;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
}

.demo-hero-visual {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(198, 212, 218, 0.82);
  border-radius: 24px;
  box-shadow: var(--demo-shadow-xl);
  backdrop-filter: blur(18px);
}

.demo-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: #f8fbfd;
  border-bottom: 1px solid var(--demo-border);
}

.demo-visual-header span {
  color: var(--demo-navy-900);
  font-weight: 850;
}

.demo-visual-header strong {
  color: var(--demo-teal-700);
  background: var(--demo-teal-100);
  border: 1px solid #cfe9e5;
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
  font-size: 0.74rem;
  white-space: nowrap;
}

.demo-chat-preview {
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.demo-chat-preview p {
  max-width: 86%;
  margin: 0;
  padding: 0.75rem 0.85rem;
  color: var(--demo-navy-900);
  background: var(--demo-blue-100);
  border: 1px solid #d2e5fb;
  border-radius: 14px;
  font-size: 0.9rem;
}

.demo-chat-preview p + p {
  justify-self: end;
  background: var(--demo-white);
}

.demo-chat-preview span,
.demo-visual-summary span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--demo-slate-500);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-visual-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 1px solid var(--demo-border);
}

.demo-visual-details div {
  min-width: 0;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--demo-border);
}

.demo-visual-details div:nth-child(odd) {
  border-right: 1px solid var(--demo-border);
}

.demo-visual-details dt {
  color: var(--demo-slate-500);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-visual-details dd {
  margin: 0.15rem 0 0;
  color: var(--demo-navy-900);
  font-size: 0.96rem;
  font-weight: 850;
}

.demo-visual-summary {
  margin: 1.1rem;
  padding: 0.9rem;
  background: var(--demo-teal-100);
  border: 1px solid #d0ebe7;
  border-radius: 14px;
}

.demo-visual-summary p {
  margin: 0;
  color: #2d5962;
  font-size: 0.9rem;
}

.demo-section {
  padding: 5rem 0;
}

.demo-section-soft {
  background: #f5f9fb;
}

.demo-section-heading p {
  max-width: 43rem;
  color: #5b7180;
  font-size: 1.02rem;
}

.demo-problem-grid,
.demo-pricing-grid {
  display: grid;
  gap: 0.9rem;
}

.demo-problem-card,
.demo-pricing-card,
.demo-faq-list details {
  background: var(--demo-card-bg);
  border: 1px solid var(--demo-border);
  border-radius: 18px;
  box-shadow: var(--demo-shadow-sm);
}

.demo-problem-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
}

.demo-problem-card .demo-icon,
.demo-step-card .demo-icon,
.demo-service-card .demo-icon,
.demo-about-card .demo-icon {
  display: grid;
  color: #076ecf;
  background: #edf6ff;
  border-radius: 12px;
}

.demo-problem-card h3 {
  margin-bottom: 0.25rem;
  color: var(--demo-navy-900);
}

.demo-problem-card p {
  margin: 0;
  color: #5b7180;
  font-size: 0.95rem;
}

.demo-about-copy p {
  font-size: 1.02rem;
}

.demo-pricing-grid {
  align-items: stretch;
}

.demo-pricing-card {
  position: relative;
  padding: 1.25rem;
}

.demo-pricing-card.is-featured {
  border-color: #9dcdf9;
  box-shadow: 0 22px 52px rgba(8, 120, 223, 0.16);
}

.demo-package-badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.58rem;
  color: var(--demo-teal-700);
  background: var(--demo-teal-100);
  border: 1px solid #cfe9e5;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

.demo-pricing-card h3 {
  font-size: 1.2rem;
}

.demo-pricing-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--demo-navy-900);
  font-size: 1.45rem;
  line-height: 1.15;
}

.demo-pricing-card p,
.demo-pricing-note {
  color: #5b7180;
}

.demo-pricing-card ul {
  display: grid;
  gap: 0.42rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--demo-slate-700);
}

.demo-pricing-note {
  max-width: 48rem;
  margin: 1rem auto 0;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.demo-faq-grid {
  display: grid;
  gap: 1.5rem;
}

.demo-faq-list {
  display: grid;
  gap: 0.75rem;
}

.demo-faq-list details {
  overflow: hidden;
}

.demo-faq-list summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--demo-navy-900);
  font-weight: 850;
}

.demo-faq-list summary:focus-visible {
  outline: 3px solid rgba(8, 120, 223, 0.28);
  outline-offset: 3px;
}

.demo-faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #5b7180;
}

.demo-cta {
  padding: 5rem 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(24, 163, 151, 0.14), transparent 28%),
    #071d2c;
}

@media (max-width: 35.98rem) {
  .demo-hero {
    padding-top: 4.2rem;
  }

  .demo-hero h1 {
    font-size: clamp(2.65rem, 14vw, 3.7rem);
  }

  .demo-hero-actions .demo-button,
  .demo-cta-actions .demo-button {
    width: 100%;
  }

  .demo-visual-details {
    grid-template-columns: 1fr;
  }

  .demo-visual-details div:nth-child(odd) {
    border-right: 0;
  }
}

@media (min-width: 36rem) {
  .demo-problem-grid,
  .demo-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 50rem) {
  .demo-hero-content {
    grid-template-columns: minmax(0, 1.03fr) minmax(22rem, 0.97fr);
    gap: 3.5rem;
  }

  .demo-problem-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .demo-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-faq-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
  }
}

/* Readability and premium polish pass */
body {
  font-size: 17px;
  line-height: 1.62;
}

p,
li,
dd {
  line-height: 1.6;
}

.demo-section-heading p,
.demo-services-heading > p,
.demo-assistant-heading > p,
.demo-about-copy p {
  color: #526a79;
  font-size: 1.06rem;
  line-height: 1.68;
}

.demo-problem-card,
.demo-pricing-card,
.demo-about-card,
.demo-cta-contact-card {
  padding: 1.25rem;
}

.demo-problem-card p,
.demo-about-card p,
.demo-pricing-card p,
.demo-pricing-card li,
.demo-pricing-note,
.demo-cta-fallback,
.demo-visual-summary p,
.demo-chat-preview p {
  font-size: 1rem;
  line-height: 1.58;
}

.demo-pricing-card h3 {
  font-size: 1.28rem;
}

.demo-pricing-card strong {
  font-size: 1.52rem;
}

.demo-pricing-card ul {
  gap: 0.52rem;
}

.demo-faq-list summary {
  padding: 1.05rem 1.1rem;
  font-size: 1.02rem;
  line-height: 1.45;
}

.demo-faq-list p {
  padding: 0 1.1rem 1.1rem;
  font-size: 1rem;
  line-height: 1.65;
}

.demo-cta-contact-card h3 {
  font-size: 1.05rem;
}

.demo-cta-contact-label,
.demo-package-badge,
.demo-visual-header strong,
.demo-chat-preview span,
.demo-visual-summary span,
.demo-visual-details dt {
  font-size: 0.78rem;
}

.demo-cta-contact-link {
  font-size: 1.04rem;
  line-height: 1.35;
}

.demo-copy-email-button,
.demo-cta-contact-action {
  font-size: 0.86rem;
}

.demo-copy-confirmation {
  font-size: 0.9rem;
}

.demo-footer {
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 35.98rem) {
  body {
    font-size: 16.5px;
  }

  .demo-problem-card,
  .demo-pricing-card,
  .demo-about-card,
  .demo-cta-contact-card {
    padding: 1.05rem;
  }

  .demo-section-heading p,
  .demo-services-heading > p,
  .demo-assistant-heading > p {
    font-size: 1rem;
  }
}

/* Final typography confidence pass */
body {
  font-size: 17.5px;
  line-height: 1.64;
}

.demo-section-heading p,
.demo-services-heading > p,
.demo-assistant-heading > p,
.demo-about-copy p {
  font-size: 1.09rem;
  line-height: 1.7;
}

.demo-problem-card p,
.demo-about-card p,
.demo-pricing-card p,
.demo-pricing-card li,
.demo-pricing-note,
.demo-cta-fallback,
.demo-visual-summary p,
.demo-chat-preview p {
  font-size: 1.04rem;
  line-height: 1.62;
}

.demo-pricing-card {
  padding: 1.35rem;
}

.demo-pricing-card ul {
  gap: 0.58rem;
}

.demo-faq-list summary {
  font-size: 1.07rem;
  line-height: 1.48;
}

.demo-faq-list p {
  font-size: 1.04rem;
  line-height: 1.68;
}

.demo-cta-contact-card {
  padding: 1.35rem;
}

.demo-cta-contact-card h3 {
  font-size: 1.1rem;
}

.demo-cta-contact-link {
  font-size: 1.08rem;
}

.demo-copy-email-button,
.demo-cta-contact-action {
  font-size: 0.9rem;
}

.demo-cta-contact-label,
.demo-package-badge,
.demo-visual-header strong,
.demo-chat-preview span,
.demo-visual-summary span,
.demo-visual-details dt {
  font-size: 0.82rem;
}

.demo-footer {
  font-size: 0.9rem;
}

@media (max-width: 35.98rem) {
  body {
    font-size: 16.75px;
  }

  .demo-section-heading p,
  .demo-services-heading > p,
  .demo-assistant-heading > p,
  .demo-problem-card p,
  .demo-about-card p,
  .demo-pricing-card p,
  .demo-pricing-card li,
  .demo-faq-list p {
    font-size: 1rem;
  }

  .demo-pricing-card,
  .demo-cta-contact-card {
    padding: 1.1rem;
  }
}
