:root {
  --bg: #fafafa;
  --card: #ffffff;
  --navy: #234674;
  --mint: #8be1c1;
  --mint-strong: #4ad19b;
  --muted: #52606d;
  --border: #e4ece7;
  --shadow-soft: 0 20px 60px rgba(12, 54, 36, 0.08);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

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

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #fafafa;
  color: #0f1f2b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  background: #fafafa;
  overflow-x: hidden;
}

.page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 80px 0 64px;
}

main {
  scroll-snap-type: y proximity;
}

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

a {
  color: inherit;
}

.site-header {
  width: 100%;
  margin-bottom: 28px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fafafa;
  padding: 16px 0;
  box-shadow: 0 6px 16px rgba(15, 31, 43, 0.06);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 36px;
}

.logo.small {
  height: 28px;
}

.nav {
  display: flex;
  gap: 14px;
  font-weight: 700;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  color: var(--navy);
  background: rgba(142, 225, 193, 0.25);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  grid-template-areas: "text visual";
  gap: 120px;
  align-items: center;
  padding: 80px 40px 32px;
  border-radius: 0;
  overflow: visible;
  background: #fafafa;
  box-shadow: none;
  min-height: 90vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  max-width: 1280px;
  margin: 0 auto;
  justify-content: center;
}

.hero-bg .blob {
  position: absolute;
  inset: -40% auto auto 28%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(142, 225, 193, 0.4), transparent 55%);
  filter: blur(12px);
  animation: float 10s ease-in-out infinite;
  z-index: 0;
}

.hero-bg .blob.second {
  inset: auto -18% -32% auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(35, 70, 116, 0.14), transparent 60%);
  animation-duration: 12s;
}

.hero-bg {
  display: none;
}

.hero-text,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(165, 242, 206, 0.55), rgba(165, 242, 206, 0));
  filter: blur(80px);
  right: -80px;
  top: 140px;
  z-index: 0;
}

.hero-text {
  grid-area: text;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  margin: 0 0 6px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(165, 242, 206, 0.25);
  color: #2d5187;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: none;
}

.hero-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7cd9b2;
  box-shadow: 0 0 0 6px rgba(124, 217, 178, 0.3);
}

.hero-text h1 {
  font-size: clamp(2.9rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 28px 0 0;
  color: #2d5187;
}

.text-accent {
  color: #2fa16f;
}

.hero-subtitle {
  margin: 20px 0 0;
  color: #4b5563;
  max-width: 440px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 0;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: #2d5187;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(45, 81, 135, 0.25);
}

.btn.ghost {
  background: #ffffff;
  color: #2d5187;
  border: 2px solid #2d5187;
}

.hero-meta {
  display: none;
}

.chip,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(35, 70, 116, 0.05);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: center;
  grid-area: visual;
  position: relative;
}

.hero-proof {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
  color: #4b5563;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof-list li::before {
  content: "•";
  color: #2d5187;
  font-size: 1.15rem;
  line-height: 1;
}

.micro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px 10px;
  margin: 8px 0 10px;
}

.micro-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--navy);
  background: rgba(142, 225, 193, 0.35);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
}

.hero-quote {
  margin-top: 32px;
  max-width: 520px;
  background: rgba(142, 225, 193, 0.35);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 22px;
  color: var(--muted);
  box-shadow: 0 12px 26px rgba(12, 54, 36, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.hero-quote p {
  margin: 0 0 6px;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.35;
}

.quote-cite {
  font-weight: 700;
  color: var(--navy);
}

.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2d5187;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.phone-frame {
  width: 100%;
  max-width: 390px;
  border-radius: 24px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(12, 54, 36, 0.14);
  border: 1px solid var(--border);
  animation: none;
  position: relative;
  z-index: 1;
}

.phone-frame img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #e8f7ef, #ffffff);
}

.mockup-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.section {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

main > section {
  background: #fafafa;
  min-height: 100vh;
}

main > section:nth-of-type(even) {
  background: #fafafa;
}

main > section > * {
  opacity: 1;
  transform: none;
  transition: transform 1s ease, opacity 1s ease;
}

body.anim-ready main > section > * {
  opacity: 0;
  transform: translateY(60px);
}

body.anim-ready main > section.active > * {
  opacity: 1;
  transform: translateY(0);
}

.how-timeline {
  background: #ffffff;
  min-height: auto;
  padding: 140px 0;
}

.how-timeline .section-header {
  max-width: 900px;
  padding: 0 40px;
}

.how-timeline .section-header h2 {
  font-size: 44px;
  color: #2d5187;
}

.how-timeline .section-header p {
  font-size: 18px;
  color: #4b5563;
  margin-top: 14px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.timeline-steps {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 64px;
  position: relative;
  flex-wrap: wrap;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.timeline-card {
  width: 360px;
  min-height: 340px;
  padding: 32px;
  background: rgba(165, 242, 206, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.step-badge.big {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  color: #2d5187;
  font-size: 28px;
}

.timeline-card h3 {
  margin: 0;
  color: #2d5187;
  font-size: 1.3rem;
}

.timeline-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.5;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mini-thumb {
  display: none;
}

.timeline-connector {
  display: none;
}

.timeline-item:last-child .timeline-connector {
  display: none;
}
.legal-page main {
  scroll-snap-type: none;
}

.legal-page main > section {
  min-height: auto;
  padding: 48px 18px 64px;
}

.legal-page .section {
  justify-content: flex-start;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 32px rgba(12, 54, 36, 0.05);
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  main {
    scroll-snap-type: none;
  }

  main > section {
    min-height: auto;
  }

  .site-header {
    padding: 12px 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 40px 18px 28px;
    min-height: auto;
  }

  .hero-visual {
    order: 1;
    max-width: 360px;
  }

  .hero-text {
    order: 0;
  }

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

  .section {
    min-height: auto;
    padding: 32px 0;
  }

  .section .section-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .features-grid,
  .faq-grid,
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plan-list.shared {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .cta-card .btn {
    width: 100%;
    justify-content: center;
  }
  .timeline-container {
    padding: 0 18px;
  }

  .timeline-steps {
    gap: 18px;
    margin-top: 32px;
  }

  .timeline-card {
    width: 100%;
    min-height: auto;
    align-items: flex-start;
    text-align: left;
  }

  .timeline-card p {
    min-height: auto;
    justify-content: flex-start;
    text-align: left;
  }

  .pricing-inner {
    padding: 80px 18px 100px;
  }

  .pricing-row {
    gap: 18px;
    flex-direction: column;
    align-items: center;
  }

  .plan-card,
  .plan-card.highlight,
  .plan-card.neutral {
    width: 100%;
    max-width: 420px;
  }

  .plan-badge {
    left: 16px;
  }

  .hero-visual::before {
    display: none;
  }

  /* keep extra breathing room reasonable on mobile */
  #pricing {
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  h2 {
    font-size: 16px;
  }

  section,
  .section {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* tighter hero title on small screens */
  .hero-text h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  /* scale all section titles/subtitles down for mobile */
  .section-header h2,
  #pricing .section-header h2,
  .how-timeline .section-header h2,
  .faq-section .section-header h2,
  .cta-card h2 {
    font-size: 22px !important;
    line-height: 1.25;
  }

  .section-header p,
  #pricing .section-header p,
  .how-timeline .section-header p,
  .faq-section .section-header p,
  .cta-card p {
    font-size: 15px !important;
  }

  /* tighten CTA on small screens */
  .cta-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    grid-template-columns: 1fr !important;
    padding: 24px 18px;
    text-align: center;
    gap: 16px;
  }

  .cta-actions {
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .cta-card .btn {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 12px 28px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 320px;
  }

  /* make hero CTAs full width on mobile */
  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-inner {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 12px;
    padding-right: 12px;
    max-width: 100%;
  }

  .pricing-row {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: stretch;
  }

  .plan-card,
  .plan-card.highlight,
  .plan-card.neutral {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    text-align: left;
    align-items: flex-start;
    gap: 12px;
  }

  .plan-card .btn {
    width: 100%;
    justify-content: center;
  }

  .plan-price {
    font-size: 28px;
  }

  .plan-card h3 {
    font-size: 18px;
  }

  .plan-badge {
    font-size: 12px;
    padding: 4px 10px;
    top: -8px;
    left: 12px;
  }

  .plan-badge.soft {
    top: -8px;
    left: 12px;
  }

  /* Pricing overrides per spec */
  .pricing-section {
    padding-top: 40px !important;
  }

  /* reduce anchor offset on very small screens */
#pricing,
  #faq,
  #how-it-works {
    scroll-margin-top: 90px;
  }

  .pricing-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .pricing-card,
  .pricing-card.highlight,
  .pricing-card.neutral,
  .plan-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px !important;
    margin: 0 auto !important;
    border-radius: 20px !important;
    text-align: center;
  }

  .pricing-card.yearly,
  .plan-card.yearly {
    margin-left: 0 !important;
  }

  .pricing-card .badge,
  .plan-card .badge,
  .plan-badge {
    font-size: 12px !important;
    padding: 4px 10px !important;
    top: -10px !important;
    left: 10px !important;
  }

  .pricing-card .price,
  .plan-price {
    font-size: 28px !important;
  }

  .pricing-card h3,
  .pricing-card .title,
  .plan-card h3 {
    font-size: 20px !important;
  }

  .pricing-card p,
  .plan-card p {
    font-size: 15px !important;
  }

  .pricing-card button,
  .plan-card .btn {
    width: 100% !important;
    height: 52px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
  }

  /* make pricing cards feel like the how-it-works cards on mobile */
  .plan-top {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    gap: 10px;
  }

  .timeline-container {
    padding: 0 12px !important;
  }

  .faq-list {
    padding: 0 12px !important;
  }

  .faq-section .section-header,
  #pricing .section-header {
    padding: 0 12px !important;
  }

  .plan-list.shared {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* constrain content width while keeping section backgrounds full width */
.hero,
.section .section-header,
.features-grid,
.faq-grid,
.plan-grid,
.plan-list.shared,
.cta-card {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  width: 100%;
  box-sizing: border-box;
}

.section-header {
  max-width: 680px;
  margin-bottom: 16px;
}

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

.section-header.center h2,
.section-header.center p {
  text-align: center;
}

.section-header h2 {
  margin: 0 0 6px;
  font-size: 1.8rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.screen-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.screen-card h3 {
  margin: 10px 0 4px;
}

.screen-card p {
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(12, 54, 36, 0.05);
}

.feature-card.pro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f1f7f3 100%);
  border: 1px solid rgba(35, 70, 116, 0.12);
  padding: 18px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card.pro::before {
  content: "";
  position: absolute;
  inset: -30% 50% auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(142, 225, 193, 0.35), transparent 60%);
  transform: rotate(12deg);
}

.feature-card.pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(12, 54, 36, 0.12);
  border-color: rgba(35, 70, 116, 0.2);
}

.feature-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(142, 225, 193, 0.35);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #0f1f2b;
  box-shadow: inset 0 0 0 1px rgba(35, 70, 116, 0.1);
}

.feature-icon.material {
  font-family: "Material Symbols Rounded", sans-serif;
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
  font-size: 20px;
}

.pop-target {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pop-target.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.pricing-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  max-width: 680px;
}

.pricing-subtitle {
  margin: 0 0 12px;
  color: var(--muted);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(12, 54, 36, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.plan-card .btn.full {
  margin-top: auto;
  padding: 16px;
  font-size: 1.1rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(45, 81, 135, 0.22);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(12, 54, 36, 0.14);
  border-color: rgba(35, 70, 116, 0.18);
}

.plan-card.highlight {
  background: linear-gradient(160deg, #8be1c1, #e8f7ef);
  border-color: rgba(35, 70, 116, 0.1);
  box-shadow: 0 18px 40px rgba(74, 209, 155, 0.3);
}

.plan-card.accent {
  background: #f5f7f5;
  border-color: rgba(35, 70, 116, 0.12);
}

.plan-card.plain {
  position: relative;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 16px;
  background: #f5f7f5;
  border-color: rgba(35, 70, 116, 0.12);
}

.plan-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  min-height: 150px;
  justify-content: flex-start;
  padding-top: 4px;
}

.plan-card.plain .plan-top {
  align-items: flex-start;
  text-align: left;
}
.plan-card.plain .plan-top::before {
  content: "";
  display: block;
  height: 28px; /* reserve space where a badge would sit */
}


.plan-top h3 {
  margin: 6px 0 4px;
}

.plan-price {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.plan-note {
  margin: 0;
  color: var(--muted);
}

.plan-subnote {
  margin: 0;
  color: #0f1f2b;
  font-weight: 700;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.plan-list.shared {
  max-width: 420px;
  margin: 0 auto 14px;
  padding: 12px 0 6px;
  grid-template-columns: 1fr;
  text-align: left;
}

.plan-list.shared li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  padding-right: 28px;
  width: 100%;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.plan-list li {
  position: relative;
  padding-left: 24px;
}

.plan-list li::before {
  content: "check_circle";
  font-family: "Material Symbols Rounded", sans-serif;
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
}

.plan-list.shared li::before {
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.btn.full {
  width: 100%;
  justify-content: center;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.pricing-list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
  margin-bottom: 6px;
}

.pricing-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--mint-strong);
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.pricing-note.center {
  text-align: center;
  padding-top: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 14px;
  border: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0 0 6px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: start;
}

.how-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f2f8f5 100%);
  box-shadow: 0 12px 28px rgba(12, 54, 36, 0.06);
}

.how-num {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #234674;
  color: #ffffff;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(35, 70, 116, 0.25);
}

.how-card h3 {
  margin: 0 0 4px;
  color: var(--navy);
}

.how-card p {
  margin: 0;
  color: var(--muted);
}

.cta {
  margin-top: 30px;
  padding: 60px 0 80px;
  min-height: auto;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px 28px;
  padding: 32px 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #a5f2ce 0%, #d9ffe9 100%);
  color: #0f1f2b;
  box-shadow: 0 10px 40px rgba(165, 242, 206, 0.4);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: -40% auto auto 60%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(45, 81, 135, 0.08), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.2;
}

.cta-copy p {
  margin: 0;
  color: #13452f;
  font-size: 17px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-card .btn {
  padding: 16px 28px;
  font-size: 1.1rem;
  border-radius: 14px;
  height: 52px;
  box-shadow: 0 6px 18px rgba(45, 81, 135, 0.22);
}

.cta-card .btn.ghost {
  border-width: 2px;
}

.plan-card .pill.badge {
  margin-bottom: 6px;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 38px;
  padding-top: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}

.legal-buttons {
  display: flex;
  gap: 10px;
}

.legal-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.legal-btn:hover {
  background: rgba(142, 225, 193, 0.2);
}

.footer-meta {
  margin: 0;
}

/* constrain footer content */
.site-footer .footer-top,
.site-footer .footer-meta {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}

/* Pricing redesign */
#pricing {
  background: #fafafa;
  min-height: auto;
  padding-bottom: 100px;
  scroll-margin-top: 120px;
}

#faq {
  background: #fafafa;
  min-height: auto;
  scroll-margin-top: 120px;
}

.faq-section {
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.faq-question,
.faq-answer {
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.faq-question span,
.faq-answer p {
  font: inherit;
}


.faq-section .section-header {
  max-width: 900px;
  padding: 0 40px;
}

.faq-section .section-header h2 {
  font-size: 42px;
  color: #2d5187;
}

.faq-section .section-header p {
  font-size: 18px;
  color: #4b5563;
  margin-top: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.faq-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: 0.2s ease;
}

.faq-card:hover {
  background: #f9fffc;
  border-color: #a5f2ce;
  box-shadow: 0 6px 16px rgba(165, 242, 206, 0.28);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 1.05rem;
  color: #1f2937;
  font-weight: 700;
  cursor: pointer;
}

.faq-question .chevron {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-question .chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%232d5187' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  background: #2d5187;
  opacity: 0.8;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.faq-card.active .chevron::before {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.faq-card.active .faq-answer {
  opacity: 1;
  max-height: 400px;
  margin-top: 12px;
}

.faq-answer p {
  margin: 0;
  color: #4b5563;
  line-height: 1.5;
}
.pricing-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 12px;
}

#pricing .section-header {
  max-width: 900px;
  padding: 0 40px;
}

#pricing .section-header h2 {
  font-size: 42px;
  color: #2d5187;
}

#pricing .section-header p {
  font-size: 18px;
  color: #4b5563;
  margin-top: 12px;
}

.pricing-benefits {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: #1f2937;
}

.benefit-row .material-symbols-rounded {
  color: rgba(45, 81, 135, 0.7);
  font-size: 18px;
}

.pricing-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  flex-wrap: nowrap;
}

.plan-card {
  width: auto;
  max-width: 320px;
  min-width: 300px;
  flex: 1 1 0;
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(45, 81, 135, 0.12);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-sizing: border-box;
}

.plan-card.highlight {
  width: 100%;
  max-width: 340px;
  padding: 42px;
  background: linear-gradient(135deg, #e0fff2, #a5f2ce);
  box-shadow: 0 16px 40px rgba(165, 242, 206, 0.3);
  border: none;
}

.plan-card.neutral {
  background: #ffffff;
}

.plan-badge {
  position: absolute;
  top: -4px;
  left: 24px;
  background: #2d5187;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.plan-badge.soft {
  position: absolute;
  top: -4px;
  left: 16px;
  background: #a5f2ce;
  color: #1f2937;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.plan-card h3 {
  margin: 0 0 6px;
  color: #1f2937;
  font-size: 1.25rem;
}

.plan-price {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d5187;
}

.plan-note {
  margin: 4px 0 0;
  color: #4b5563;
  font-size: 1rem;
}

.plan-subnote {
  margin: 4px 0 0;
  color: #1f2937;
  font-weight: 700;
}

.pricing-note.center {
  text-align: center;
  padding-top: 12px;
}

.trust-note {
  margin-top: 20px;
  color: #6b7280;
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatSlow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "visual";
    padding: 24px 18px;
  }

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

.screen-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .page {
    padding: 110px 14px 52px;
  }

  .phone-frame {
    max-width: 100%;
  }

  .pricing-card,
  .feature-card,
  .faq-item,
  .screen-card {
    padding: 14px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
