:root {
  --blue: #005a9c;
  --blue-dark: #004080;
  --blue-light: #b1d6f0;

  --green: #16a34a;

  --charcoal: #374151;

  --text: #374151;

  --border: #e5e7eb;

  --background: #ffffff;

  --section: #f8fafc;

  --shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

  --radius: 18px;

  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;

  /* Matches .nav-container's height so the sticky navbar never overlaps
     a section landed on via anchor scroll (native or :target). */
  scroll-padding-top: 82px;
}

body {
  font-family: Inter, sans-serif;

  color: var(--text);

  background: white;

  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
}

img {
  display: block;

  max-width: 100%;
}

section {
  padding: 100px 0;
}

.container {
  width: min(1400px, 92%);

  margin: auto;
}

/* ----------------------- */

.navbar {
  position: sticky;

  top: 0;

  background: white;

  border-bottom: 1px solid var(--border);

  z-index: 100;
}

.nav-container {
  height: 82px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.logo img {
  height: 100px;
}

.nav-toggle {
  display: none;

  width: 46px;

  height: 46px;

  border: 1px solid var(--border);

  border-radius: 10px;

  background: white;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;
}

.nav-toggle span {
  width: 20px;

  height: 2px;

  background: var(--charcoal);

  border-radius: 999px;

  transition:
    transform var(--transition),
    opacity var(--transition);
}

.navbar.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

.nav-links {
  display: flex;

  list-style: none;

  gap: 36px;
}

.nav-links a,
.footer-links a {
  text-decoration: none;

  font-weight: 500;

  color: var(--charcoal);

  transition: var(--transition);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.nav-links a.active {
  color: var(--blue);

  border-bottom: 2px solid var(--blue);
}

.button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 15px 28px;

  border-radius: 12px;

  font-weight: 600;

  text-decoration: none;

  transition: 0.25s;
}

.button-light {
  background: var(--blue-light);

  color: var(--charcoal);
}

.button-light:hover {
  background: var(--blue);

  color: white;

  transform: translateY(-2px);
}

.show-mobile {
  display: none;
}

.button-primary {
  background: var(--blue);

  color: white;
}

.button-primary:hover {
  background: var(--blue-dark);

  transform: translateY(-2px);
}

.button-secondary {
  background: white;

  border: 1px solid var(--border);

  color: var(--charcoal);
}

.button-secondary:hover {
  border-color: var(--blue);
}

/* ----------------------- */

.hero {
  padding: 100px 0;
}

.hero-grid {
  display: grid;

  grid-template-columns:
    1.05fr
    1fr;

  gap: 70px;

  align-items: center;
}

.eyebrow {
  display: inline-block;

  padding: 8px 14px;

  border-radius: 999px;

  background: #eef7fd;

  color: var(--blue);

  font-size: 0.9rem;

  font-weight: 600;

  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Hanuman", serif;

  font-size: 4rem;

  font-weight: 900;

  line-height: 1.08;

  margin-bottom: 28px;

  color: #111827;
}

.hero p {
  font-size: 1.2rem;

  max-width: 560px;

  margin-bottom: 38px;
}

.hero-buttons {
  display: flex;

  gap: 18px;

  margin-bottom: 42px;
}

.hero-trust ul {
  display: flex;

  gap: 28px;

  font-size: 0.95rem;

  color: #6b7280;

  list-style: none;
}

.hero-trust li {
  position: relative;
}

.hero-trust li:not(:last-child)::after {
  content: "";

  position: absolute;

  right: -15px;

  top: 50%;

  width: 4px;

  height: 4px;

  background: #cbd5e1;

  border-radius: 50%;

  transform: translateY(-50%);
}

.browser-frame {
  position: relative;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding-top: 42px; /* header height */
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

.browser-frame::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 42px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.browser-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 72px;
  right: 18px;
  height: 14px;
  border-radius: 999px;
  background: #e5e7eb;
}

.browser-frame::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow:
    18px 0 #febc2e,
    36px 0 #28c840;
}

.browser-frame img {
  display: block;
  width: 100%;
}

.hero-image {
  position: relative;

  min-height: 500px;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: var(--shadow);
}

.hero-image img {
  position: absolute;

  inset: 0;

  padding: 0 10px;

  width: 100%;

  height: 100%;

  object-fit: contain;
  object-position: center top;

  opacity: 0;

  border-radius: 18px;
}

.hero-slide-1 {
  animation: heroCrossfade 20s infinite 0s;
  animation-delay: 0s;
}

.hero-slide-2 {
  animation: heroCrossfade 20s infinite 5s;
  animation-delay: 5s;
}

.hero-slide-3 {
  animation: heroCrossfade 20s infinite 10s;
  animation-delay: 10s;
}

.hero-slide-4 {
  animation: heroCrossfade 20s infinite 15s;
  animation-delay: 15s;
}

@keyframes heroCrossfade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes featureHighlight {
  0% {
    opacity: 0.5;
    scale: 1;
  }
  10% {
    opacity: 1;
    scale: 1.1;
  }
  25% {
    opacity: 1;
    scale: 1.1;
  }
  35% {
    opacity: 0.5;
    scale: 1;
  }
  100% {
    opacity: 0.5;
    scale: 1;
  }
}

.credibility {
  padding: 70px 0;

  border-top: 1px solid var(--border);

  border-bottom: 1px solid var(--border);

  background: #fcfdfe;
}

.credibility-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 60px;
}

.credibility-item h3 {
  font-family: "Hanuman", serif;

  font-size: 1.3rem;

  margin-bottom: 12px;
}

.credibility-item p {
  color: #6b7280;
}

.problem {
  padding: 110px 0 70px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  font-family: "Hanuman", serif;

  font-size: 2.8rem;

  margin-bottom: 24px;

  line-height: 1.2;
}

.section-heading p {
  font-size: 1.15rem;

  color: #6b7280;
}

.comparison {
  padding: 90px 0;

  background: #f8fafc;
}

.comparison-grid {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  gap: 40px;

  align-items: center;
}

.comparison-card {
  padding: 40px;

  background: white;

  border-radius: 18px;

  border: 1px solid var(--border);
}

.comparison-card h3 {
  font-family: "Hanuman", serif;

  font-size: 1.45rem;

  margin-bottom: 18px;
}

.comparison-card ul {
  list-style: none;
}

.comparison-card li::before {
  content: "◼";

  font-weight: bold;

  margin-right: 16px;
}

.comparison-card.active li::before {
  content: "✓";

  color: var(--blue);

  font-weight: bold;
}

.comparison-card.active {
  border: solid var(--blue);
  border-width: 1px 1px 4px 4px;
}

.comparison-card ul {
  margin-top: 24px;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

.comparison-arrow {
  font-size: 3rem;

  color: var(--blue);

  font-weight: bold;
}

.workflow {
  padding: 120px 0;
}

.timeline {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 35px;

  margin-top: 70px;
}

.step {
  position: relative;
}

.step::after {
  content: "";

  position: absolute;

  top: 28px;

  left: 72px;

  width: 100%;

  height: 2px;

  background: #d9e6f2;
}

.step:last-child::after {
  display: none;
}

.number {
  width: 56px;

  height: 56px;

  border-radius: 50%;

  background: var(--blue);

  color: white;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: 700;

  margin-bottom: 22px;
}

.step h4 {
  margin-bottom: 12px;

  font-size: 1.1rem;
}

.step p {
  color: #6b7280;

  font-size: 0.95rem;
}

/* =====================================================
   OUTCOMES
===================================================== */

.outcomes {
  padding: 140px 0;

  background: #ffffff;
}

.section-heading.center {
  text-align: center;

  max-width: 760px;

  margin: 0 auto 70px;
}

.outcome-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 32px;
}

.outcome-card {
  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 18px;

  padding: 42px 34px;

  transition: 0.25s ease;

  position: relative;
}

.outcome-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);

  border-color: #d8e5f1;
}

.icon-wrapper {
  width: 62px;

  height: 62px;

  border-radius: 14px;

  background: #eef7fd;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--blue);

  margin-bottom: 28px;
}

.icon-wrapper svg {
  width: 30px;

  height: 30px;

  stroke-width: 1.8;
}

.outcome-card h3 {
  font-family: "Hanuman", serif;

  font-size: 1.45rem;

  margin-bottom: 18px;

  color: #111827;
}

.outcome-card p {
  color: #6b7280;

  line-height: 1.75;

  font-size: 0.98rem;
}

.platform {
  padding-top: 140px;
  padding-bottom: 0;
}

.feature {
  padding: 120px 0;
}

.feature-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;

  align-items: start;
}

.feature:nth-child(even) .feature-grid {
  direction: rtl;
}

.feature:nth-child(even) .feature-copy {
  direction: ltr;
}

.feature-label {
  display: inline-block;

  background: #eef7fd;

  color: var(--blue);

  padding: 8px 14px;

  border-radius: 999px;

  margin-bottom: 18px;

  font-weight: 600;

  font-size: 0.9rem;
}

.feature h2 {
  font-family: "Hanuman", serif;

  font-size: 2.5rem;

  margin-bottom: 24px;

  line-height: 1.2;
}

.feature p {
  color: #6b7280;

  margin-bottom: 28px;

  font-size: 1.05rem;
}

.feature-callouts {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;
}

.feature-callouts div {
  position: relative;

  padding-left: 24px;
}

.feature-callouts div::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--blue);

  font-weight: bold;
}

.feature-image {
  position: absolute;
  opacity: 0;
}

.feature-image img {
  border-radius: 18px;

  border: 1px solid var(--border);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.feature-image-container {
  position: relative;
  height: 500px;
}

.callout {
  position: absolute;

  background: white;

  padding: 12px 18px;

  border-radius: 12px;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);

  font-size: 0.9rem;

  font-weight: 600;
}

.callout.top {
  top: 30px;

  left: -20px;
}

.callout.bottom {
  bottom: 30px;

  right: -20px;
}

.feature-callout-1 {
  opacity: 0.5;
  animation: featureHighlight 20s infinite 0s;
  animation-delay: 0s;
}

.feature-callout-2 {
  opacity: 0.5;
  animation: featureHighlight 20s infinite 5s;
  animation-delay: 5s;
}

.feature-callout-3 {
  opacity: 0.5;
  animation: featureHighlight 20s infinite 10s;
  animation-delay: 10s;
}

.feature-callout-4 {
  opacity: 0.5;
  animation: featureHighlight 20s infinite 15s;
  animation-delay: 15s;
}

/* =======================================
   PROFESSIONAL OVERSIGHT
======================================= */

.oversight {
  padding: 140px 0;

  background: #f8fafc;
}

.oversight-intro {
  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;
}

.section-tag {
  display: inline-block;

  background: #eef7fd;

  color: var(--blue);

  padding: 8px 16px;

  border-radius: 999px;

  font-size: 0.9rem;

  font-weight: 600;

  margin-bottom: 20px;
}

.oversight-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 32px;
}

.oversight-card {
  background: white;

  border: 1px solid var(--border);

  border-radius: 18px;

  padding: 42px;

  transition: 0.25s;
}

.oversight-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.oversight-card h3 {
  font-family: "Hanuman", serif;

  margin-bottom: 22px;

  color: #111827;
}

.oversight-card ul {
  list-style: none;
}

.oversight-card li {
  margin-bottom: 18px;

  position: relative;

  padding-left: 28px;

  color: #4b5563;
}

.oversight-card li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--blue);

  font-weight: 700;
}

/* =======================================
   PLANS
======================================= */

.plans {
  padding: 150px 0;
}

.plan-compare {
  margin-top: 56px;

  border: 1px solid var(--border);

  border-radius: 22px;

  overflow-x: auto;

  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 45%), #ffffff;
}

.plan-compare-inner {
  min-width: 760px;
}

.plan-compare-row {
  display: grid;

  grid-template-columns: minmax(280px, 2fr) repeat(2, minmax(160px, 1fr));

  border-bottom: 1px solid var(--border);
}

.plan-compare-row:last-child {
  border-bottom: none;
}

.plan-compare-cell {
  padding: 18px 24px;

  text-align: center;

  border-right: 1px solid var(--border);
}

.plan-compare-cell.fill {
  background-color: var(--blue-light);
}

.plan-compare-cell:last-child {
  border-right: none;
}

.plan-compare-cell h4 {
  display: inline-block;
  margin-right: 1rem;
}

.plan-compare-feature {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
}
.plan-compare-feature h4 {
  line-height: 2rem;
  font-weight: 600;
  color: #111827;
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden; /* Hidden by default */
  width: 360px;
  background-color: var(--charcoal);
  color: #ffffff;
  text-align: left;
  padding: 6px;
  border-radius: 6px;
  position: absolute;
  z-index: 1; /* Ensure tooltip is displayed above content */
  transform: translateY(20px);
  z-index: 1;
  display: inline-block;
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip {
  position: static;
  display: inline-flex;

  align-items: center;

  cursor: help;

  color: #4b5563;
}

.tooltip svg {
  min-width: 2rem;
  min-height: 2rem;
  padding: 6px;

  stroke-width: 2;

  color: var(--blue);
}

.tooltip .tooltiptext {
  position: absolute;

  width: min(360px, 86vw);

  padding: 10px 12px;

  border: 1px solid #d7e6f4;

  border-radius: 10px;

  background: #ffffff;

  box-shadow: 0 14px 28px rgba(0, 43, 77, 0.16);

  font-size: 0.84rem;

  line-height: 1.45;

  color: #334155;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-4px);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;

  z-index: 20;
}

.tooltip:hover .tooltiptext,
.tooltip:focus-within .tooltiptext,
.tooltip:active .tooltiptext {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.plan-compare-head {
  background: #f0f7fc;
}

.plan-compare-head .plan-compare-cell {
  font-family: "Hanuman", serif;

  font-size: 1.25rem;

  font-weight: 700;
}

.plan-compare-premium {
  color: var(--blue);
}

.plan-pill {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 6px 12px;

  font-size: 0.85rem;

  font-weight: 700;
}

.plan-pill-yes,
.plan-pill-premium {
  color: var(--blue);
}

.plan-pill-no {
  color: #6b7280;
}

.plans-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 40px;

  margin-top: 70px;
}

.plan-card {
  background: white;

  border: 1px solid var(--text);

  border-radius: 22px;

  padding: 48px;

  position: relative;

  align-items: start;
  display: grid;
  gap: 24px;
}

.plan-card a {
  align-self: flex-end;
  justify-self: center;
}

#pricing {
  padding-top: 100px;
}

.featured {
  border: 2px solid var(--blue);

  box-shadow: 0 20px 50px rgba(0, 90, 156, 0.08);
}

.plan-badge {
  position: absolute;

  top: -15px;

  left: 40px;

  background: var(--blue);

  color: white;

  padding: 8px 18px;

  border-radius: 999px;

  font-size: 0.85rem;

  font-weight: 600;
}

.plan-card h3 {
  font-family: "Hanuman", serif;

  font-size: 2rem;
}

.plan-subtitle {
  color: #6b7280;
}

.plan-price {
  font-size: 2rem;

  font-weight: 700;
}

.featured .plan-price {
  color: var(--blue);
}

.plan-subprice {
  font-size: 0.9rem;
  color: #6b7280;
}

.pricing-faq-section {
  padding: 24px 0 60px;
}

.pricing-details-link {
  margin-top: 40px;
  text-align: center;
  color: #6b7280;
}

.pricing-details-link a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.pricing-details-link a:hover {
  text-decoration: underline;
}

.pricing-faq-card {
  margin: 56px auto 0;

  padding: 34px 36px;

  background:
    radial-gradient(
      circle at top right,
      rgba(0, 90, 156, 0.08),
      transparent 40%
    ),
    #f8fbff;

  border: 1px solid #d7e6f4;

  border-radius: 18px;

  box-shadow: 0 14px 34px rgba(0, 43, 77, 0.06);
}

.pricing-faq-eyebrow {
  display: inline-block;

  margin-bottom: 16px;

  padding: 8px 14px;

  border-radius: 999px;

  font-size: 0.85rem;

  font-weight: 600;

  color: var(--blue);

  background: #eef7fd;
}

.pricing-faq-card ul {
  list-style: none;

  padding-left: 0;

  display: grid;

  gap: 14px;
}

.pricing-faq-card li {
  position: relative;

  padding: 14px 14px 14px 48px;

  border-radius: 12px;

  border: 1px solid #e2edf7;

  background: #ffffff;

  color: #4b5563;

  line-height: 1.6;
}

.pricing-faq-card li::before {
  content: "!";

  position: absolute;

  top: 14px;

  left: 14px;

  width: 22px;

  height: 22px;

  border-radius: 50%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  color: var(--blue);

  font-size: 0.8rem;

  font-weight: 700;

  background: #e6f2fb;
}

/* =======================================
   FINAL CTA
======================================= */

.cta {
  padding: 50px 0;
}

.cta-box {
  margin: auto;

  text-align: center;

  padding: 90px 70px;

  background: white;

  border: 1px solid var(--border);

  border-radius: 26px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.cta-box h2 {
  font-family: "Hanuman", serif;

  font-size: 3rem;

  line-height: 1.15;

  margin-bottom: 26px;

  color: #111827;
}

.cta-box p {
  max-width: 650px;

  margin: 0 auto 40px;

  font-size: 1.1rem;

  color: #6b7280;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  margin-bottom: 32px;
}

.cta-note {
  font-size: 0.92rem;

  color: #9ca3af;
}

/* ----------------------- */

footer {
  padding: 20px 0;

  border-top: 1px solid var(--border);

  margin-top: 120px;

  font-size: 0.9rem;

  color: #6b7280;
  text-align: center;
}

.footer-copyright {
  margin-top: 24px;
}

.footer-logo {
  height: 140px;

  margin-right: 12px;
}
.footer-links {
  display: flex;

  justify-content: space-evenly;

  gap: 24px;

  align-items: center;
}

.footer-links ul {
  list-style: none;

  gap: 18px;
  text-align: left;
}

.reveal {
  opacity: 0;

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

.reveal-up {
  transform: translateY(40px);
}

.outcome-card:nth-child(1) {
  transition-delay: 0.2s;
}

.outcome-card:nth-child(2) {
  transition-delay: 0.4s;
}

.outcome-card:nth-child(3) {
  transition-delay: 0.6s;
}

.outcome-card:nth-child(4) {
  transition-delay: 0.8s;
}

/* ----------------------- */

@media (max-width: 1000px) {
  .nav-container {
    position: relative;
  }

  .hide-mobile {
    display: none;
  }

  .show-mobile {
    display: inline-block;
  }

  .nav-toggle {
    display: inline-flex;
  }

  #primary-nav {
    position: absolute;

    top: calc(100% + 1px);

    right: 0;

    display: none;

    background: white;

    border-bottom: 1px solid var(--border);

    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  }

  .navbar.menu-open #primary-nav {
    display: block;
  }

  .nav-links {
    flex-direction: column;

    gap: 0;

    padding: 12px 0;
  }

  .nav-links a {
    display: block;

    padding: 14px 18px;
  }

  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-image {
    min-height: 300px;
  }

  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-image-container {
    height: 700px;
  }

  .feature-callouts {
    display: block;
    margin: auto;
    position: relative;
    width: 100%;
  }

  .feature-callouts div {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: none;
    white-space: nowrap;
    text-align: left;
  }

  .feature-callout-1 {
    opacity: 0;
    animation: heroCrossfade 20s infinite 0s;
    animation-delay: 0s;
  }

  .feature-callout-2 {
    opacity: 0;
    animation: heroCrossfade 20s infinite 5s;
    animation-delay: 5s;
  }

  .feature-callout-3 {
    opacity: 0;
    animation: heroCrossfade 20s infinite 10s;
    animation-delay: 10s;
  }

  .feature-callout-4 {
    opacity: 0;
    animation: heroCrossfade 20s infinite 15s;
    animation-delay: 15s;
  }

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

  .plan-compare {
    margin-top: 38px;

    border-radius: 16px;

    overflow: visible;

    border: none;

    background: transparent;
  }

  .plan-compare-inner {
    min-width: 0;

    display: grid;

    gap: 12px;
  }

  .plan-compare-head {
    display: none;
  }

  .plan-compare-row {
    grid-template-columns: 1fr;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: #ffffff;

    padding: 14px;
  }

  .plan-compare-cell {
    padding: 8px 0;

    border-right: none;

    text-align: left;
  }

  .plan-compare-cell.fill {
    background-color: transparent;
  }

  .plan-pill-yes {
    background-color: var(--blue-light);
    border-radius: 999px;
  }

  .plan-compare-feature {
    margin-bottom: 6px;

    padding-bottom: 10px;

    border-bottom: 1px dashed var(--border);
  }

  .plan-compare-row .plan-compare-cell:nth-child(2),
  .plan-compare-row .plan-compare-cell:nth-child(3) {
    display: flex;

    align-items: center;

    justify-content: space-between;
  }

  .plan-compare-row .plan-compare-cell:nth-child(2)::before,
  .plan-compare-row .plan-compare-cell:nth-child(3)::before {
    font-size: 0.82rem;

    font-weight: 700;

    letter-spacing: 0.03em;

    text-transform: uppercase;

    color: #6b7280;
  }

  .plan-compare-row .plan-compare-cell:nth-child(2)::before {
    content: "Base";
  }

  .plan-compare-row .plan-compare-cell:nth-child(3)::before {
    content: "Premium";
  }

  .tooltip .tooltiptext {
    left: auto;

    right: 0;

    width: min(320px, 88vw);
  }

  .plan-pill {
    min-width: 2rem;

    justify-content: center;
  }

  .plan-compare-head .plan-compare-cell {
    font-size: 1.1rem;
  }
}

@media (max-width: 700px) {
  .feature,
  .outcomes,
  .oversight,
  .platform,
  .plans {
    padding: 50px 0;
  }

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

  .section-heading.center {
    margin-bottom: 50px;
  }

  .hide-mobile {
    display: none;
  }

  .hero-trust {
    display: none;
  }

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

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

  .comparison-arrow {
    margin: auto;
    rotate: 90deg;
  }

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

  .step .number {
    display: inline-grid;
  }
  .step h4 {
    display: inline;
    margin-left: 12px;
  }

  .step::after {
    display: none;
  }

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

  .feature-image-container {
    height: 400px;
  }

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

  .pricing-faq-section {
    padding: 12px 0 44px;
  }

  .pricing-faq-card h3 {
    font-size: 1.7rem;
  }

  .pricing-faq-card {
    margin-top: 38px;

    padding: 24px 18px;

    border-radius: 14px;
  }

  .pricing-faq-card li {
    padding: 12px 12px 12px 44px;
  }

  .pricing-faq-card li::before {
    top: 12px;
    left: 12px;
  }

  .cta .container {
    margin: 0;
    width: 100%;
  }

  .cta-box {
    padding: 40px 30px;
    text-align: left;
    border-radius: 0;
  }

  footer {
    margin-top: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image img {
    animation: none;
    opacity: 0;
  }

  .hero-slide-1 {
    opacity: 1;
  }
}
