:root {
  --navy: #1d3557;
  --coral: #e76f51;
  --coral-dark: #d45a3d;
  --light: #f5f6fa;
  --body: #2b2d42;
  --muted: #64748b;
  --white: #ffffff;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html, body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
}

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

img { max-width: 100%; display: block; }

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--body);
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--coral);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
}

.btn-coral:hover {
  background: var(--coral-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.85);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: #152a45;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

/* ── Hero (Option B) ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(29,53,87,0.88) 0%, rgba(29,53,87,0.72) 45%, rgba(29,53,87,0.35) 100%),
    url('/hero-bg.jpg') center / cover no-repeat;
  color: var(--white);
}

.hero-content {
  padding: 4rem 0;
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 1.25rem 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.9rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  font-size: 1.2rem;
}

/* ── UI icons (SVG + BookAPT brand) ── */
.ui-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  flex-shrink: 0;
}

.ui-icon-wrap--brand {
  background: rgba(255, 255, 255, 0.95);
  padding: 2px;
}

.ui-icon-wrap--brand img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 6px;
}

.ui-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.ui-icon--sm {
  width: 1rem;
  height: 1rem;
}

.ui-icon-wrap--lg {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(29, 53, 87, 0.08);
  color: var(--navy);
  margin-bottom: 1rem;
}

.ui-icon-wrap--feature {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.08) 0%, rgba(231, 111, 81, 0.12) 100%);
  color: var(--navy);
  margin-bottom: 1rem;
}

.ui-icon-wrap--feature.ui-icon-wrap--brand {
  background: var(--white);
  border: 1px solid rgba(29, 53, 87, 0.08);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.ui-icon-wrap--feature.ui-icon-wrap--brand img {
  width: 32px;
  height: 32px;
}

.feature-card .feature-icon .ui-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* ── Sections ── */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--light);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── Feature cards ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ── Why switch (Option 2) ── */
.section-why-switch {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
  padding-top: 4rem;
}

.hero-eyebrow--dark {
  color: var(--coral);
}

.why-switch-header .section-sub {
  max-width: 640px;
}

.compare-quick-label {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.compare-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.compare-quick-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.compare-quick-link:hover {
  color: var(--coral);
}

.compare-quick-sep {
  color: var(--muted);
  user-select: none;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pillar-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.pillar-card strong {
  color: var(--navy);
}

.compare-block {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
  margin-bottom: 2rem;
}

.compare-tabs-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
}

.compare-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.compare-tab {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 53, 87, 0.2);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.compare-tab:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.compare-tab.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.compare-panel {
  display: none;
}

.compare-panel.is-active {
  display: block;
}

.compare-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-col {
  border-radius: 12px;
  padding: 1.5rem;
}

.compare-col--bookapt {
  background: linear-gradient(160deg, rgba(29, 53, 87, 0.06) 0%, rgba(231, 111, 81, 0.08) 100%);
  border: 1px solid rgba(231, 111, 81, 0.25);
}

.compare-col--other {
  background: var(--light);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.compare-col-head {
  margin-bottom: 1.25rem;
}

.compare-logo {
  border-radius: 10px;
  margin-bottom: 0.65rem;
}

.compare-col-head h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.compare-tagline {
  font-size: 0.9rem;
  color: var(--muted);
}

.compare-cost {
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.1rem;
}

.compare-cost--bookapt {
  background: #ecfdf5;
  border: 1px solid #22c55e;
}

.compare-cost--other {
  background: rgba(29, 53, 87, 0.06);
  border: 1px solid rgba(29, 53, 87, 0.12);
}

.compare-cost-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.compare-cost-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}

.compare-cost-value--green,
.compare-cost--bookapt .compare-cost-value {
  color: #15803d;
  font-weight: 600;
}

.compare-cost-line {
  display: inline;
  color: #15803d;
}

.compare-cost-line--muted {
  color: #166534;
  font-weight: 500;
}

.compare-block--lead {
  margin-top: 0.25rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
}

.compare-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.45;
}

.compare-list--muted li {
  color: var(--muted);
  padding-left: 0;
}

.compare-check {
  display: inline-flex;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.compare-best {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.compare-best strong {
  color: var(--navy);
}

.why-switch-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.compare-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── Option 1 compare funnel ── */
.pricing-model-banner {
  font-size: 0.92rem;
  color: var(--body);
  background: var(--white);
  border: 1px solid rgba(231, 111, 81, 0.35);
  border-left: 4px solid var(--coral);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.compare-funnel {
  margin-bottom: 2rem;
}

.compare-step {
  margin-bottom: 1.75rem;
}

.compare-step-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 36rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .industry-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: none;
  }
}

.industry-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 5.5rem;
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  border: 2px solid rgba(29, 53, 87, 0.12);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  color: var(--navy);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.industry-chip:hover {
  border-color: var(--coral);
}

.industry-chip.is-active {
  border-color: var(--coral);
  background: rgba(231, 111, 81, 0.08);
  box-shadow: 0 4px 14px rgba(231, 111, 81, 0.2);
}

.industry-chip-icon {
  font-size: 1.65rem;
  line-height: 1;
}

.industry-chip-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.app-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.app-chip {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 53, 87, 0.2);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.app-chip:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.app-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.compare-context {
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.compare-panel-mount {
  min-height: 120px;
}

.compare-seo-summary {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.compare-seo-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.compare-seo-intro {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Website embed band ── */
.website-embed-band {
  margin: 2.5rem 0 2rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(135deg, var(--navy) 0%, #264a73 100%);
  border-radius: 16px;
  color: var(--white);
}

.website-embed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 52rem;
  margin: 0 auto;
}

.website-embed-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.website-embed-text {
  font-size: 0.95rem;
  opacity: 0.92;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.website-embed-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.website-embed-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.45;
}

.website-embed-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #86efac;
  font-weight: 700;
}

.website-embed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.website-embed-visual {
  text-align: center;
}

.website-embed-mock {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  max-width: 280px;
  margin: 0 auto 0.75rem;
}

.website-embed-mock-bar {
  height: 28px;
  background: #e8e4df;
}

.website-embed-mock-body {
  padding: 1.25rem 1rem 1.5rem;
}

.website-embed-mock-line {
  height: 8px;
  background: #e8e4df;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.website-embed-mock-line.short {
  width: 60%;
}

.website-embed-mock-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.65rem;
  border: none;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.website-embed-caption {
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.4;
}

.hero-eyebrow--on-dark {
  color: #fdba74;
}

@media (max-width: 768px) {
  .website-embed-inner {
    grid-template-columns: 1fr;
  }

  .website-embed-visual {
    order: -1;
  }
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Two-column ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.audience-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.25rem;
  border-left: 4px solid var(--coral);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.audience-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.audience-card ul {
  list-style: none;
  color: var(--muted);
}

.audience-card li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.audience-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #264a73 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 16px;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  opacity: 0.88;
  margin-bottom: 1.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Subpage hero ── */
.page-hero {
  background: var(--light);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ── Content pages ── */
.content-body {
  padding: 3rem 0 4rem;
}

.content-body h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.content-body p, .content-body li {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.content-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.contact-card {
  background: var(--light);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.contact-card a {
  color: var(--coral);
  font-weight: 600;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-brand span {
  font-weight: 600;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}

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

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.6;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ── Legal page overrides ── */
.legal-page .content-body h2 {
  border-bottom: 1px solid rgba(15,23,42,0.08);
  padding-bottom: 0.5rem;
}

.legal-page .content-body a {
  color: var(--coral);
  font-weight: 500;
}

.legal-page h3 {
  color: var(--navy);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.legal-highlight {
  background: #eef2ff;
  border-left: 4px solid var(--coral);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin: 1.25rem 0;
}

.legal-highlight p, .legal-highlight li {
  color: var(--body);
}

.legal-warning {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin: 1.25rem 0;
}

/* ── Demo request form ── */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.demo-copy .section-sub {
  margin-bottom: 1.5rem;
}

.demo-benefits {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.demo-benefits li {
  padding: 0.4rem 0 0.4rem 1.35rem;
  position: relative;
  color: var(--muted);
}

.demo-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

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

.demo-note a {
  color: var(--coral);
  font-weight: 600;
}

.demo-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.demo-form-row {
  margin-bottom: 1rem;
}

.demo-form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.demo-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.demo-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--body);
  background: var(--white);
}

.demo-input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.15);
}

.demo-textarea {
  resize: vertical;
  min-height: 110px;
}

.demo-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.demo-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.demo-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.demo-form-legal {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.demo-form-legal a {
  color: var(--coral);
}

.demo-form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.demo-form-status--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.demo-form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-form-row--half {
    grid-template-columns: 1fr;
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(15,23,42,0.1);
    gap: 1rem;
  }

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

  .site-header { position: relative; }

  .header-inner { position: relative; }

  .nav-toggle { display: block; }

  .header-cta { display: none; }

  .hero { min-height: 440px; }

  .two-col { grid-template-columns: 1fr; }

  .compare-columns { grid-template-columns: 1fr; }

  .compare-block { padding: 1.25rem; }

  .pillar-grid { grid-template-columns: 1fr; }

  .industry-grid {
    gap: 0.5rem;
  }

  .industry-chip {
    min-height: 4.75rem;
    padding: 0.6rem 0.35rem;
  }

  .industry-chip-icon {
    font-size: 1.4rem;
  }

  .industry-chip-label {
    font-size: 0.72rem;
  }

  .footer-inner { flex-direction: column; text-align: center; }
}
