:root {
  --navy: #0f1b33;
  --navy-soft: #24365c;
  --accent: #2f6df6;
  --accent-soft: #e8f0ff;
  --gray: #5b6472;
  --bg: #f6f8fc;
  --border: #e4e8f0;
  --shadow-sm: 0 1px 2px rgba(15, 27, 51, 0.04), 0 4px 12px rgba(15, 27, 51, 0.05);
  --shadow-md: 0 2px 4px rgba(15, 27, 51, 0.04), 0 12px 32px rgba(15, 27, 51, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: #1c2330;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- nav ---------- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

.nav .logo {
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.nav .logo::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent) 0%, #7aa2ff 100%);
  box-shadow: 0 2px 8px rgba(47, 109, 246, 0.35);
}

.nav .links a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--gray);
  font-size: 15px;
  transition: color 0.15s ease;
}

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

.nav .cta {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav .cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ---------- hero ---------- */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px 70px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 460px;
  max-width: 120%;
  background: radial-gradient(ellipse at center, rgba(47, 109, 246, 0.09) 0%, rgba(47, 109, 246, 0) 68%);
  pointer-events: none;
  z-index: -1;
}

/* floating review cards behind the hero */

.hero-decor,
.cta-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.rcard {
  position: absolute;
  width: 186px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(15, 27, 51, 0.07);
  opacity: 0.85;
  animation: floaty 9s ease-in-out infinite;
}

.rcard .rstars {
  color: #f5b301;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 9px;
}

.rcard .rstars.dim { color: #cfd6e2; }

.rline {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: #eef1f6;
  margin-bottom: 6px;
}

.rline:last-child { margin-bottom: 0; }
.rline.w1 { width: 100%; }
.rline.w2 { width: 72%; }
.rline.w3 { width: 86%; }

.rcard .reply {
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
}

.rcard .reply::before {
  content: "";
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
  margin-top: -3px;
}

.rcard-1 { top: 12%; left: 2%; transform: rotate(-5deg); animation-delay: 0s; }
.rcard-2 { bottom: 12%; left: 7%; transform: rotate(4deg); animation-delay: 1.6s; }
.rcard-3 { top: 16%; right: 2%; transform: rotate(5deg); animation-delay: 0.8s; }
.rcard-4 { bottom: 10%; right: 7%; transform: rotate(-4deg); animation-delay: 2.4s; }

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}

@media (prefers-reduced-motion: reduce) {
  .rcard { animation: none; }
}

/* dotted grid texture */

.dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(47, 109, 246, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
  pointer-events: none;
}

/* closing CTA band */

.section.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcff 0%, #eef4ff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
  padding: 84px 40px;
  text-align: left;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.cta-copy h2 { text-align: left; font-size: 35px; margin-bottom: 14px; }

.cta-copy p {
  color: var(--gray);
  font-size: 17px;
  margin: 0 0 28px;
  max-width: 460px;
}

.cta-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.cta-points li {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 7px;
}

.cta-points li::before {
  content: "";
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
  margin-top: -4px;
  flex-shrink: 0;
}

/* sample audit card */

.audit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15, 27, 51, 0.1);
  overflow: hidden;
}

.audit-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, #fafbfe 100%);
}

.audit-head .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.audit-head .name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 3px;
}

.audit-rows { padding: 6px 22px 14px; }

.arow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid #f0f3f8;
  font-size: 14.5px;
}

.arow:last-child { border-bottom: none; }
.arow .k { color: var(--gray); }
.arow .v { font-weight: 700; color: var(--navy); font-size: 16px; }
.arow .v.warn { color: #d9534f; }

.audit-foot {
  padding: 15px 22px 20px;
  border-top: 1px solid var(--border);
  background: #fafbfe;
}

.audit-foot .lbl {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
}

.chips { display: flex; flex-wrap: wrap; gap: 7px; }

.chips span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--navy-soft);
  background: var(--accent-soft);
  border-radius: 100px;
  padding: 5px 12px;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(47, 109, 246, 0.14), rgba(47, 109, 246, 0) 70%);
  animation: floaty 11s ease-in-out infinite;
}

.bubble-1 { width: 260px; height: 260px; top: -70px; left: 4%; }
.bubble-2 { width: 180px; height: 180px; bottom: -50px; right: 8%; animation-delay: 2s; }
.bubble-3 { width: 120px; height: 120px; top: 30%; right: 26%; animation-delay: 4s; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 800px;
  margin: 0 auto 24px;
  color: var(--navy);
}

.hero p.sub {
  font-size: 19px;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 38px;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  display: inline-block;
  color: var(--navy);
  text-decoration: none;
  padding: 15px 26px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: 9px;
  margin-left: 10px;
  background: #fff;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.btn-secondary:hover {
  border-color: var(--navy-soft);
  transform: translateY(-2px);
}

/* ---------- sections ---------- */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 76px 40px;
}

.section-alt {
  background: var(--bg);
  max-width: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-alt > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

.section h2 {
  font-size: 33px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy);
  letter-spacing: -0.025em;
}

.section p.center-sub {
  text-align: center;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 52px;
  font-size: 17px;
}

/* ---------- cards ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #6f9bff 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
  box-shadow: 0 3px 10px rgba(47, 109, 246, 0.3);
}

.step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.step p { color: var(--gray); margin: 0; font-size: 15px; }

/* ---------- stats ---------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: center;
}

.stat-grid > div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
}

.stat-grid .stat-num {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat-grid .stat-label {
  color: var(--gray);
  font-size: 14px;
  margin-top: 10px;
}

/* ---------- pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.plan.featured {
  border: 2px solid var(--accent);
  position: relative;
  box-shadow: var(--shadow-md);
}

.plan.featured::before {
  content: "Most popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(47, 109, 246, 0.35);
}

.plan h3 { margin: 0 0 4px; font-size: 21px; color: var(--navy); letter-spacing: -0.02em; }
.plan .range { color: var(--gray); font-size: 14px; margin-bottom: 22px; }
.plan .price { font-size: 44px; font-weight: 700; color: var(--navy); letter-spacing: -0.035em; }
.plan .price span { font-size: 15px; font-weight: 500; color: var(--gray); letter-spacing: 0; }
.plan ul { list-style: none; padding: 0; margin: 26px 0; flex-grow: 1; }
.plan li { padding: 8px 0 8px 26px; color: #333; font-size: 15px; position: relative; }

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 15px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- faq ---------- */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child { border-bottom: none; }
.faq-item h4 { margin: 0 0 8px; color: var(--navy); font-size: 17px; letter-spacing: -0.01em; }
.faq-item p { margin: 0; color: var(--gray); }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 46px 40px;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
}

footer a {
  color: var(--gray);
  margin: 0 12px;
  text-decoration: none;
  transition: color 0.15s ease;
}

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

/* ---------- legal pages ---------- */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 40px 90px;
}

.legal h1 { color: var(--navy); font-size: 34px; margin-bottom: 4px; letter-spacing: -0.03em; }
.legal .updated { color: var(--gray); font-size: 14px; margin-bottom: 44px; }

.legal h2 {
  color: var(--navy);
  font-size: 20px;
  margin-top: 38px;
  letter-spacing: -0.015em;
}

.legal p, .legal li { color: #333; font-size: 15.5px; }

/* ---------- contact ---------- */

.contact-box {
  max-width: 580px;
  margin: 0 auto;
  padding: 90px 40px;
  text-align: center;
}

.contact-box .email-btn {
  display: inline-block;
  margin-top: 26px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 17px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-box .email-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- responsive ---------- */

@media (max-width: 1180px) {
  .rcard { width: 158px; padding: 12px 13px; }
  .rcard-1, .rcard-2 { left: -1%; }
  .rcard-3, .rcard-4 { right: -1%; }
}

@media (max-width: 1000px) {
  .hero-decor .rcard { display: none; }
  .bubble-3 { display: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-copy h2 { text-align: center; font-size: 29px; }
  .cta-copy p { margin-left: auto; margin-right: auto; text-align: center; }
  .cta-copy .btn-primary { display: block; text-align: center; }
  .cta-points { justify-content: center; }
  .section.cta-band { padding: 60px 24px; }
}

@media (max-width: 860px) {
  .steps, .stat-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 24px 48px; }
  .hero h1 { font-size: 34px; }
  .hero p.sub { font-size: 17px; }
  .section { padding: 56px 24px; }
  .section h2 { font-size: 27px; }
  .nav { padding: 16px 20px; }
  .nav .links a:not(.cta) { display: none; }
  .btn-secondary { margin-left: 0; margin-top: 12px; }
  .legal { padding: 44px 24px 64px; }
  .plan.featured { margin-top: 14px; }
}
