:root {
  --bs-primary: #1b3a6b;
  --accent: #f5a623;
  --surface: #f8f9fb;
  --text-main: #1a1a2e;
  --text-muted: #6b7280;
  --white: #ffffff;
  --deep-navy: #0f2147;
  --border-soft: #e5e7eb;
  --surface-tint: #f3f5f9;
  --accent-soft: #fff4df;
  --shadow-soft: 0 12px 30px rgba(15, 33, 71, 0.08);
  --shadow-hover: 0 18px 36px rgba(15, 33, 71, 0.14);
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 6rem;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
  padding-top: 76px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: var(--deep-navy);
  padding: 0.75rem 1rem;
  font-weight: 700;
}

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

.navbar {
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-shadow {
  box-shadow: 0 12px 28px rgba(15, 33, 71, 0.18);
}

.navbar-brand {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.55rem 0.85rem;
  border-radius: 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-text {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.98rem;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
}

.nav-cta {
  width: 100%;
}

.btn {
  font-weight: 800;
  border-radius: 0.75rem;
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--deep-navy);
}

.btn-accent:hover,
.btn-accent:focus {
  background: #ebb038;
  border-color: #ebb038;
  color: var(--deep-navy);
}

.btn-outline-light {
  border-width: 2px;
}

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

.surface-section {
  background: var(--surface);
}

.navy-section {
  background: var(--bs-primary);
}

.hero-section {
  background: var(--bs-primary);
}

.eyebrow-pill {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--deep-navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.display-heading {
  font-size: clamp(2.3rem, 7vw, 4.4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 10.2ch;
  margin-bottom: 0;
}

.lead-copy {
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
}

.support-copy,
.contact-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  max-width: 34rem;
}

.section-heading h2,
.contact-heading {
  font-size: clamp(1.9rem, 4.8vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}

.section-heading {
  max-width: 44rem;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.hero-image,
.content-image {
  min-height: 18rem;
}

.img-placeholder {
  background: #e5e7eb;
  border: 1px solid #d1d5db;
  border-radius: 1rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1.5rem;
  gap: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.placeholder-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #7c8798;
  letter-spacing: 0.06em;
}

.placeholder-text {
  font-size: 0.95rem;
  color: #8b93a3;
  line-height: 1.5;
}

.pain-grid {
  display: grid;
  gap: 0.9rem;
}

.pain-card {
  background: #f9fafb;
  border: 1px solid var(--border-soft);
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 1px 0 rgba(15, 33, 71, 0.02);
}

.pain-card h3,
.timeline-body h3,
.feature-card h3,
.audience-item h3,
.teaser-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0;
}

.callout-box {
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  padding: 1.25rem 1.25rem 1.1rem;
  border-radius: 0.9rem;
}

.callout-text {
  color: #4b5563;
}

.callout-strong {
  font-weight: 800;
  color: var(--bs-primary);
  margin-top: 0.6rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 3rem;
  bottom: -0.75rem;
  width: 2px;
  background: #dbe2ef;
}

.timeline-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--bs-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.timeline-item:hover .timeline-number {
  background: var(--accent);
  color: var(--deep-navy);
}

.timeline-body h3 {
  color: var(--bs-primary);
}

.timeline-body p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.sms-card {
  background: #0e1628;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.sms-card-wide {
  padding: 1.75rem;
  border-radius: 1.4rem;
}

.sms-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.sms-message {
  background: #182235;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  color: #f9fafb;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.sms-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}

.sms-subtitle {
  color: rgba(255, 255, 255, 0.75);
  max-width: 44rem;
  margin: 0 auto;
}

.sms-flow-layout {
  display: grid;
  gap: 1.15rem;
}

.sms-side {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.2rem;
}

.sms-side h4 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.85rem;
}

.sms-flow-stage h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}

.sms-flow-grid {
  display: grid;
  gap: 0.85rem;
}

.sms-recipient {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sms-phone {
  background: #d9dee7;
  border: 1px solid #b8c0cf;
  border-radius: 1.85rem;
  padding: 0.85rem;
  max-width: 20rem;
  margin: 0 auto;
  box-shadow: 0 18px 34px rgba(15, 33, 71, 0.28);
}

.sms-phone-top {
  width: 4.6rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #a4adbb;
  margin: 0 auto 0.8rem;
}

.sms-phone-screen {
  background: #0f172a;
  color: #fff;
  border-radius: 1.25rem;
  padding: 1rem;
  min-height: 22rem;
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.sms-phone-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.62);
}

.sms-phone-bubble {
  background: #1e293b;
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  color: #f8fafc;
  font-size: 0.95rem;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sms-phone-bubble-light {
  background: #263449;
}

.feature-card {
  background: #fff;
  color: var(--text-main);
  border-radius: 1rem;
  padding: 1.35rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--bs-primary);
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--bs-primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.audience-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.audience-item {
  background: var(--accent-soft);
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid #f4d39a;
}

.audience-item h3 {
  color: var(--bs-primary);
}

.teaser-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.teaser-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--deep-navy);
  font-weight: 800;
  font-size: 0.8rem;
  white-space: nowrap;
}

.faq-accordion {
  max-width: 42rem;
}

.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--border-soft);
  border-radius: 0;
}

.faq-accordion .accordion-button {
  padding: 1.1rem 0;
  font-weight: 800;
  color: var(--text-main);
  background: transparent;
  box-shadow: none;
  font-size: 1.05rem;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: "Open";
  width: auto;
  height: auto;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--bs-primary);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "Close";
  color: var(--bs-primary);
}

.faq-accordion .accordion-body {
  padding: 0 0 1.1rem;
  color: var(--text-muted);
}

.site-footer {
  background: var(--deep-navy);
  color: #fff;
}

.footer-brand,
.footer-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-text,
.footer-links a,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
}

.footer-bottom {
  background: #0b1832;
}

.footer-bottom p {
  font-size: 0.92rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0 0.5rem;
  }

  .nav-link {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 576px) {
  .nav-cta {
    width: auto;
  }
}

@media (min-width: 992px) {
  .section-pad {
    padding: 5.5rem 0;
  }

  .display-heading {
    max-width: 12ch;
  }

  .hero-image,
  .content-image {
    min-height: 26rem;
  }

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

  .pain-card:last-child {
    grid-column: 1 / -1;
  }

  .sms-flow-layout {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 18rem) minmax(0, 1fr);
    align-items: start;
  }

  .sms-card-wide {
    padding: 2.25rem 2.25rem 2rem;
  }
}
