/* Instant Intake — marketing site
   Orange #f97316 · Navy #0b1f3a · Mobile-first */

:root {
  --teal: #f97316; /* accent orange */
  --teal-dark: #c2410c;
  --teal-soft: #ffedd5;
  --navy: #0b1f3a;
  --navy-mid: #132a4a;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #fff7ed;
  --bg-deep: #0b1f3a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.18);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --max: 1120px;
  --narrow: 680px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

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

.container.narrow {
  width: min(100% - 2rem, var(--narrow));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--teal), #fb923c);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.75rem;
  position: absolute;
  right: 1rem;
  top: calc(4rem + 0.35rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  border-radius: 8px;
}

.nav-menu a:hover {
  background: var(--bg-alt);
  color: var(--teal-dark);
}

.nav-menu .btn {
  text-align: center;
  margin-top: 0.35rem;
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    border: 0;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    background: transparent;
  }

  .nav-menu a {
    padding: 0.45rem 0.75rem;
    font-size: 0.95rem;
  }

  .nav-menu .btn {
    margin-top: 0;
    margin-left: 0.35rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 0.85rem 1.4rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: #fff;
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(13, 148, 136, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 80%, rgba(11, 31, 58, 0.08), transparent 50%),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-dark);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 36rem;
}

.sku-tagline {
  display: inline-block;
  font-weight: 700;
  color: var(--navy);
  background: var(--teal-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-proof-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-proof-list li {
  position: relative;
  padding-left: 1.1rem;
}

.hero-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

/* Phone / mini popup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(100%, 300px);
  background: var(--navy);
  border-radius: 28px;
  padding: 0.85rem 0.75rem 1.1rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.phone-notch {
  width: 36%;
  height: 8px;
  background: #071528;
  border-radius: 999px;
  margin: 0.15rem auto 0.85rem;
}

.mini-popup {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  color: var(--ink);
}

.mini-popup-head strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.mini-popup-head span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.mini-field {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

.mini-urgency {
  display: flex;
  gap: 0.35rem;
  margin: 0.65rem 0;
  flex-wrap: wrap;
}

.chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--muted);
}

.chip.active {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.mini-cta {
  background: var(--teal);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem;
  border-radius: 999px;
}

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

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

.section-head {
  margin-bottom: 2.25rem;
  max-width: 40rem;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.04);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Demo layout */
.demo-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .demo-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.demo-site-chrome {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.chrome-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.dot:nth-child(1) { background: #f87171; }
.dot:nth-child(2) { background: #fbbf24; }
.dot:nth-child(3) { background: #34d399; }

.chrome-url {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
  flex: 1;
}

.chrome-page {
  padding: 1.5rem;
  background: linear-gradient(160deg, #fff7ed, #f8fafc 60%);
  min-height: 240px;
}

.fake-hero-line {
  height: 14px;
  width: 70%;
  background: rgba(11, 31, 58, 0.15);
  border-radius: 6px;
  margin-bottom: 0.65rem;
}

.fake-hero-line.short {
  width: 45%;
  height: 10px;
  margin-bottom: 1.5rem;
}

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

.fake-card {
  height: 72px;
  border-radius: 10px;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.popup-demo {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: var(--shadow-lg);
}

.popup-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
}

.popup-close:hover {
  background: #f1f5f9;
  color: var(--navy);
}

.popup-demo h3 {
  margin: 0 0 0.25rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.popup-sub {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.popup-form .form-row,
.request-form .form-row {
  margin-bottom: 0.9rem;
}

.form-row label,
.form-row legend {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-row legend {
  padding: 0;
}

.req {
  color: var(--teal-dark);
}

.form-row input,
.form-row textarea,
.request-form input,
.request-form textarea {
  width: 100%;
  font: inherit;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}

.form-row input:focus,
.form-row textarea:focus,
.request-form input:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(13, 148, 136, 0.35);
  border-color: var(--teal);
}

.form-row.two-col {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.seg {
  cursor: pointer;
}

.seg input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.seg span {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
}

.seg input:checked + span {
  background: var(--teal-soft);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.seg input:focus-visible + span {
  outline: 2px solid rgba(13, 148, 136, 0.45);
  outline-offset: 2px;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.demo-note {
  text-align: center;
}

.demo-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.demo-success p {
  margin: 0 0 1rem;
  color: var(--navy);
}

/* Screenshots */
.shots-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .shots-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.shot {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(11, 31, 58, 0.08);
}

.shot img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: top center;
  background: #f1f5f9;
}

.shot figcaption {
  padding: 0.9rem 1rem 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.badge-demo {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  margin-right: 0.4rem;
  vertical-align: middle;
}

/* Niches */
.niche-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .niche-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.niche-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.04);
}

/* Pricing */
.pricing-card {
  display: grid;
  gap: 1.5rem;
  background: var(--navy);
  color: #e2e8f0;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 800px) {
  .pricing-card {
    grid-template-columns: 1.3fr 0.9fr;
    padding: 2.25rem;
    align-items: stretch;
  }
}

.pricing-sku {
  font-weight: 700;
  color: #fdba74;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.pricing-amounts {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.price {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.pricing-plus {
  font-size: 1.5rem;
  color: #64748b;
  align-self: center;
}

.pricing-includes {
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
  color: #cbd5e1;
}

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

.pricing-aside {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pricing-aside h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: 1.05rem;
}

.pricing-aside p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.pricing-aside a {
  color: #fdba74;
}

.pricing-contact {
  margin-bottom: 0 !important;
}

/* Request form */
.request-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: var(--teal-dark);
  font-weight: 600;
}

.form-status.is-error {
  color: #b91c1c;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.15rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  padding: 0.9rem 0;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-weight: 700;
}

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

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Footer */
.site-footer {
  background: var(--bg-deep);
  color: #94a3b8;
  padding: 2.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #fff;
}

.footer-brand p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 400;
}

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

.footer-links a {
  color: #fdba74;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.privacy-line {
  margin: 0;
  font-size: 0.88rem;
  max-width: 40rem;
  line-height: 1.5;
}

.privacy-line a {
  color: #fdba74;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 1rem;
}

/* Privacy page extras */
.privacy-page {
  padding: 3rem 0 4rem;
}

.privacy-page h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy);
  margin: 0 0 1rem;
}

.privacy-page p,
.privacy-page li {
  color: var(--muted);
}

.privacy-page ul {
  padding-left: 1.2rem;
}


/* Canada coverage strip under hero */
.canada-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.canada-strip li {
  position: relative;
}
.canada-strip li:not(:last-child)::after {
  content: "";
  display: none;
}
.niche-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}


/* Pricing grid: core + Instant Schedule add-on */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}
.pricing-grid .pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-badge {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.pricing-badge-addon {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}
.pricing-card-addon {
  border: 1px solid #fdba74;
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.08);
}
.pricing-addon-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.pricing-footnote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.pricing-footnote p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  line-height: 1.55;
}
.pricing-footnote p:last-child {
  margin-bottom: 0;
}
.step-optional .step-num {
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.check-row {
  margin-top: 0.25rem;
}
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
  cursor: pointer;
}
.check-label input {
  margin-top: 0.25rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--teal);
  flex-shrink: 0;
}


/* Polish: price under hero, pilot note, mobile CTA, niches */
.hero-price {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
}
.hero-price strong {
  color: var(--ink);
}
.hero-actions {
  flex-wrap: wrap;
}
.pilot-note {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.95rem;
  line-height: 1.45;
}
.niche-hot {
  border-color: #fdba74 !important;
  background: #fff7ed !important;
  font-weight: 600;
}
.request-top-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  justify-content: center;
}
.mobile-cta {
  display: none;
}
@media (max-width: 720px) {
  .mobile-cta {
    display: flex;
    gap: 0.5rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(11, 31, 58, 0.08);
  }
  .mobile-cta .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
    min-height: 2.75rem;
    font-size: 0.95rem;
  }
  body {
    padding-bottom: 4.5rem;
  }
  .hero-lead {
    font-size: 1.05rem;
  }
  h1 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    line-height: 1.15;
  }
  .sku-tagline {
    font-size: 0.95rem;
  }
  .btn-lg {
    min-height: 2.85rem;
    padding-inline: 1.1rem;
  }
}


/* Simpler pricing layout */
.pricing-grid-simple {
  gap: 1rem;
}
.pricing-card-addon {
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.pricing-card-addon .pricing-sku,
.pricing-sku-dark {
  color: var(--navy) !important;
}
.pricing-card-addon .pricing-addon-lead {
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}
.pricing-card-addon .btn-on-light,
.btn-on-light {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.pricing-card .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  background: transparent;
}
.pricing-footnote {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
}
.pricing-footnote p {
  margin: 0;
  font-size: 0.95rem;
}
@media (max-width: 720px) {
  .pricing-card {
    padding: 1.25rem;
  }
  .pricing-includes {
    margin-bottom: 1rem;
  }
  .hero-actions .btn-lg {
    width: 100%;
  }
}


/* Ghost buttons on navy pricing card — white text */
.pricing-card .btn-ghost,
.pricing-card .btn-ghost-on-dark,
.btn-ghost-on-dark {
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  background: transparent !important;
}
.pricing-card .btn-ghost:hover,
.pricing-card .btn-ghost-on-dark:hover,
.btn-ghost-on-dark:hover {
  color: #0b1f3a !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}
.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.pricing-actions .btn {
  margin: 0;
}


/* === Contrast fixes: all text visible === */
.btn-ghost {
  color: var(--navy);
  border-color: #94a3b8;
  background: #fff;
}
.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: #f8fafc;
}

/* Ghost / secondary CTAs sitting on navy */
.pricing-card .btn-ghost,
.pricing-card .btn-ghost-on-dark,
.btn-ghost-on-dark,
.site-footer .btn-ghost,
.hero-visual .btn-ghost {
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  background: transparent !important;
}
.pricing-card .btn-ghost:hover,
.pricing-card .btn-ghost-on-dark:hover,
.btn-ghost-on-dark:hover {
  color: #0b1f3a !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.pricing-card {
  color: #f1f5f9;
}
.pricing-card .pricing-sku {
  color: #fdba74 !important;
}
.pricing-card .pricing-includes,
.pricing-card .pricing-includes li,
.pricing-card .pricing-addon-lead,
.pricing-card .price-label,
.pricing-card .pricing-plus {
  color: #e2e8f0 !important;
}
.pricing-card .price {
  color: #ffffff !important;
}

/* Light add-on card stays dark text */
.pricing-card-addon {
  background: #ffffff !important;
  color: #0f172a !important;
}
.pricing-card-addon .pricing-sku,
.pricing-card-addon .pricing-sku-dark {
  color: #0b1f3a !important;
}
.pricing-card-addon .pricing-addon-lead,
.pricing-card-addon .pricing-includes,
.pricing-card-addon .pricing-includes li {
  color: #475569 !important;
}
.pricing-card-addon .btn-ghost,
.pricing-card-addon .btn-ghost-on-dark {
  color: #0b1f3a !important;
  border: 2px solid #cbd5e1 !important;
  background: #fff !important;
}
.pricing-card-addon .btn-primary,
.pricing-card-addon .btn-on-light {
  color: #fff !important;
}

.mobile-cta .btn-ghost {
  color: var(--navy) !important;
  border: 2px solid #cbd5e1 !important;
  background: #fff !important;
}
