:root {
  --ww-bg: #f2f5f8;
  --ww-ink: #123a63;
  --ww-navy: #0a4e87;
  --ww-accent: #129aa3;
  --ww-teal: #0f7f92;
  --ww-muted: #3f454b;
  --ww-card: #ffffff;
  --ww-aurora: #d6f1f3;
  --ww-line: #d8e1ea;
  --ww-shadow: 0 16px 34px rgba(13, 46, 74, 0.1);
  --ww-tile-w: 12.6rem;
  --ww-tile-h: 15.8rem;
}

html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 4%, #e8f6ff 0%, transparent 24%),
    radial-gradient(circle at 90% 2%, #e2f4ff 0%, transparent 22%),
    linear-gradient(180deg, #f7fafc 0%, var(--ww-bg) 34%, #edf2f7 100%);
  color: var(--ww-ink);
}

h1, h2, h3, h4, .navbar-brand {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

a {
  color: var(--ww-navy);
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(10, 31, 48, 0.1);
  border-bottom: 1px solid var(--ww-line);
  overflow: visible;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  padding: 0;
  position: relative;
  z-index: 2;
  margin-right: 0.9rem;
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(200px, 28vw, 380px);
  height: auto;
  display: block;
}

.navbar .nav-link {
  color: var(--ww-teal);
  font-weight: 600;
  border-radius: 999px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--ww-navy);
  background: rgba(19, 123, 128, 0.08);
}

.navbar .nav-link.active {
  color: var(--ww-navy);
  background: rgba(19, 123, 128, 0.12);
}

.main-shell {
  padding-top: 2.25rem;
  padding-bottom: 2.5rem;
}

.hero-panel {
  background: linear-gradient(145deg, #0e4778, #11618a 58%, #128e98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.35rem;
  color: #fff;
  padding: 2.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ww-shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(27, 135, 146, 0.2);
  right: -52px;
  bottom: -52px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: #c8dbf1;
  font-weight: 800;
}

.hero-panel .lead {
  color: #e2edf9;
}

.hero-panel-note {
  color: #e2e8f0;
}

.hero-panel h1,
.page-hero h1 {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.offer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(177, 231, 238, 0.2);
  border: 1px solid rgba(177, 231, 238, 0.55);
  color: #d9f7ff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn-accent {
  background: var(--ww-accent);
  border: 1px solid var(--ww-accent);
  color: #ffffff;
  font-weight: 800;
  border-radius: 0.75rem;
  box-shadow: 0 8px 16px rgba(27, 135, 146, 0.3);
}

.btn-accent-soft {
  box-shadow: none;
  border-color: #2a96a2;
  background: #2a96a2;
}

.btn-accent:hover {
  background: #146f78;
  border-color: #146f78;
  color: #ffffff;
  transform: translateY(-1px);
}

.stat-stack {
  display: grid;
  gap: 0.75rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  backdrop-filter: blur(2px);
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.9rem;
  color: #e7eef8;
}

.section-head h2,
.page-hero h1 {
  margin-bottom: 0.35rem;
}

.section-head p,
.page-hero p {
  color: var(--ww-muted);
  max-width: 70ch;
}

.proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.proof-card {
  background: #ffffff;
  border: 1px solid var(--ww-line);
  border-radius: 1rem;
  padding: 1.15rem;
  box-shadow: 0 12px 20px rgba(11, 24, 35, 0.05);
}

.proof-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.proof-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ww-teal);
  margin-bottom: 0.45rem;
}

.proof-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--ww-muted);
}

.proof-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.proof-pill-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.proof-pill {
  border: 1px solid #d2deea;
  background: #f8fcff;
  border-radius: 0.9rem;
  padding: 0.85rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.proof-pill strong {
  color: var(--ww-ink);
  font-size: 0.95rem;
}

.proof-pill span {
  color: var(--ww-muted);
}

.feature-card,
.content-card,
.faq-item,
.price-card,
.mini-panel {
  background: var(--ww-card);
  border: 1px solid var(--ww-line);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 14px 24px rgba(11, 24, 35, 0.05);
}

.feature-card h3,
.content-card h2,
.price-card h2,
.faq-item h2 {
  font-size: 1.2rem;
}

.feature-card p,
.content-card p,
.faq-item p,
.price-card p,
.mini-panel p {
  color: var(--ww-muted);
}

.timeline-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.timeline-item {
  border-left: 4px solid var(--ww-teal);
  background: #fff;
  border-radius: 0.7rem;
  padding: 1rem;
  box-shadow: 0 8px 16px rgba(15, 32, 44, 0.05);
}

.timeline-item span {
  font-weight: 800;
  color: var(--ww-teal);
  display: block;
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin: 0.25rem 0 0.45rem;
}

.timeline-item p {
  color: var(--ww-muted);
}

.cta-strip {
  background: linear-gradient(135deg, #143a59, #1f7173);
  color: #fff;
  border-radius: 1rem;
  padding: 1.35rem;
  box-shadow: var(--ww-shadow);
}

.cta-strip p {
  color: #d9e8f5;
}

.page-hero {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--ww-line);
  border-radius: 1rem;
  padding: 1.35rem;
  box-shadow: 0 10px 22px rgba(12, 29, 42, 0.04);
}

.benefits-shell {
  background: linear-gradient(140deg, #ffffff, #eff7fb);
  border: 1px solid var(--ww-line);
  border-radius: 1rem;
  padding: 1.2rem;
  overflow: hidden;
}

.home-benefits-shell {
  overflow: hidden;
}

.home-benefits-shell .kicker {
  color: #d6e2f3;
}

.benefit-card--dark {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: none;
}

.benefit-card--dark h3,
.hero-service-tile h3 {
  color: var(--ww-ink);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.benefit-card--dark p,
.hero-service-tile p {
  color: var(--ww-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.hero-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.hero-service-tile {
  background: #ffffff;
  border: 1px solid #c7d7e8;
  border-radius: 1rem;
  position: relative;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  box-shadow: 0 14px 22px rgba(6, 22, 36, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  color: var(--ww-ink);
}

.hero-service-tile::after {
  content: "\2713";
  position: absolute;
  top: -11px;
  right: -11px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fae4b;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 16px rgba(13, 86, 38, 0.35);
}

.hero-service-tile h3 {
  margin: 0;
}

.hero-service-tile p {
  margin: 0;
}

.hero-service-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 32px rgba(6, 22, 36, 0.24);
  border-color: #9bb6d0;
}

.hero-service-tile--spotlight {
  background: #ffffff;
  border-color: #8eadd1;
  box-shadow: 0 20px 34px rgba(15, 59, 95, 0.28);
}

.hero-service-tile--spotlight h3 {
  color: var(--ww-ink);
}

.hero-service-tile--spotlight p {
  color: var(--ww-muted);
}

.hero-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f0f6fb;
  border: 1px solid #c7d6e6;
  color: var(--ww-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-service-icon svg {
  width: 28px;
  height: 28px;
}



.benefit-icon--dark {
  background: #e9f8fb;
  border-color: rgba(27, 135, 146, 0.32);
  color: var(--ww-accent);
}

.benefits-nav--dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.benefits-nav--dark:hover {
  background: rgba(255,255,255,0.22);
}

.benefits-intro h2 {
  font-size: 2rem;
  margin-bottom: 0.65rem;
}

.benefits-intro p {
  color: var(--ww-muted);
}

.benefits-scroller {
  position: relative;
}

.benefits-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--ww-tile-w);
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.benefits-track::-webkit-scrollbar {
  display: none;
}

.benefit-card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--ww-line);
  border-radius: 1rem;
  width: var(--ww-tile-w);
  padding: 1.25rem 1rem;
  min-height: var(--ww-tile-h);
  height: auto;
  box-shadow: 0 8px 15px rgba(9, 24, 37, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  text-align: center;
}

.benefit-card h3 {
  margin: 0;
  line-height: 1.28;
  padding-bottom: 0;
}

.benefit-card p {
  color: var(--ww-muted);
  margin: 0;
  overflow: visible;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid #c7d6e6;
  color: var(--ww-navy);
  background: #f0f6fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  margin-inline: auto;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefits-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.benefits-nav {
  border: 1px solid #bfd0e1;
  background: #f7fbff;
  color: var(--ww-navy);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
}

.benefits-nav:hover {
  background: #ebf4ff;
}

.benefits-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.benefits-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #bfcde0;
  padding: 0;
  cursor: pointer;
}

.benefits-dots .dot.is-active {
  background: var(--ww-accent);
}

.content-card ul,
.price-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ww-muted);
}

.price-card {
  position: relative;
}

.price-card:hover,
.feature-card:hover,
.content-card:hover,
.mini-panel:hover {
  transform: translateY(-2px);
  transition: transform 220ms ease;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ww-navy);
  margin-bottom: 0.35rem;
}

.price span {
  font-size: 1rem;
  color: var(--ww-muted);
}

.badge-top {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #146947;
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 0.65rem;
}

.price-card.highlight {
  border-color: #146947;
  box-shadow: 0 18px 30px rgba(20, 105, 71, 0.12);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.table-responsive {
  border: 1px solid var(--ww-line);
  border-radius: 0.9rem;
  overflow: hidden;
  background: #fff;
}

.table {
  margin-bottom: 0;
}

.table thead th {
  background: #edf4fb;
  border-bottom: 1px solid #d0deec;
  color: #1f3652;
  font-weight: 700;
}

.table tbody tr:nth-child(even) {
  background: #f9fcff;
}

.form-control,
.form-select {
  border: 1px solid #c9d7e5;
  border-radius: 0.65rem;
  padding: 0.6rem 0.7rem;
}

.form-control::placeholder,
.form-select::placeholder {
  color: #7a8796;
}

.form-label {
  font-weight: 700;
  color: #243648;
}

.form-check-input {
  border-color: #9cb2c8;
}

.form-check-input:checked {
  background-color: var(--ww-teal);
  border-color: var(--ww-teal);
}

.alert {
  border-radius: 0.8rem;
  border-width: 1px;
}

.text-bg-primary {
  background-color: #184c70 !important;
}

.footer {
  background: linear-gradient(120deg, #101f31, #11324a 46%, #145457);
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer a {
  text-decoration: none;
  color: #e9f2ff;
}

.footer a:hover,
.footer a:focus {
  color: #fff;
  text-decoration: underline;
}

.footer-brand {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem rgba(19, 123, 128, 0.35);
  border-color: #68aeb2;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel {
    padding: 2.35rem;
  }

  .benefits-track {
    grid-auto-columns: var(--ww-tile-w);
  }

  .proof-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .brand-logo {
    width: clamp(160px, 55vw, 260px);
  }

  .navbar .nav-link {
    border-radius: 0.6rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-accent:hover,
  .price-card:hover,
  .feature-card:hover,
  .content-card:hover,
  .mini-panel:hover {
    transform: none;
  }
}