:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #f0f4ff;
  --text: #0b1220;
  --muted: #586174;
  --line: #dce2ed;
  --primary: #1646f5;
  --primary-dark: #0d2fb0;
  --primary-soft: #e8edff;
  --accent: #17b897;
  --accent-soft: #e4fbf5;
  --warning: #ffbf47;
  --shadow: 0 24px 70px rgba(16, 31, 73, 0.14);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(22, 70, 245, 0.14), transparent 30rem),
    radial-gradient(circle at 85% 10%, rgba(23, 184, 151, 0.14), transparent 32rem),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(220, 226, 237, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 40px rgba(16, 31, 73, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), #061a69);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(22, 70, 245, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #344058;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
}

.section-pad {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.hero {
  padding-top: 72px;
}

.hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.hero-lede,
.section-heading p,
.contact-grid p {
  color: var(--muted);
  font-size: 20px;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(22, 70, 245, 0.25);
}

.button-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(16, 31, 73, 0.07);
}

.button.full {
  width: 100%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(220, 226, 237, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #445069;
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  position: relative;
  min-height: 560px;
  padding: 24px;
  border: 1px solid rgba(220, 226, 237, 0.85);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 244, 255, 0.9)),
    #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(23, 184, 151, 0.18);
  filter: blur(4px);
}

.hero-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #445069;
  font-size: 14px;
  font-weight: 900;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.metric-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.metric-row > div,
.mini-cards > div {
  border: 1px solid rgba(220, 226, 237, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
}

.metric-row small,
.mini-cards span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.metric-row strong {
  display: block;
  margin-top: 6px;
  color: var(--primary);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.preview-window {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid rgba(220, 226, 237, 0.8);
  border-radius: 26px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.preview-bar,
.preview-hero,
.preview-lines span,
.preview-buttons span {
  display: block;
  border-radius: 999px;
}

.preview-bar {
  width: 42%;
  height: 12px;
  margin-bottom: 16px;
  background: #dfe6f2;
}

.preview-hero {
  height: 150px;
  margin-bottom: 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(22, 70, 245, 0.78), rgba(23, 184, 151, 0.75)),
    linear-gradient(90deg, #e9eef8, #f7f9fd);
}

.preview-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.preview-lines span {
  height: 12px;
  background: #e7ecf5;
}

.preview-lines span:nth-child(2) {
  width: 84%;
}

.preview-lines span:nth-child(3) {
  width: 62%;
}

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

.preview-buttons span {
  width: 120px;
  height: 38px;
  background: var(--primary-soft);
}

.preview-buttons span:first-child {
  background: var(--primary);
}

.mini-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-cards b {
  display: block;
  margin-bottom: 4px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.compact {
  text-align: center;
  margin-inline: auto;
}

.service-grid,
.pricing-grid,
.timeline {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.price-card,
.step,
.contact-form,
.proof-card,
.addons {
  border: 1px solid rgba(220, 226, 237, 0.9);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 44px rgba(16, 31, 73, 0.07);
  backdrop-filter: blur(14px);
}

.service-card {
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius);
}

.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
}

.service-card p,
.price-card p,
.step p,
.proof-points span {
  color: var(--muted);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 34px;
}

.price-card.featured {
  border-color: rgba(22, 70, 245, 0.38);
  background:
    linear-gradient(180deg, rgba(232, 237, 255, 0.8), rgba(255, 255, 255, 0.92)),
    #fff;
  transform: translateY(-14px);
  box-shadow: 0 26px 74px rgba(22, 70, 245, 0.16);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #08715d;
  font-size: 12px;
  font-weight: 900;
}

.plan-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card-head {
  min-height: 148px;
  padding-right: 70px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.price span {
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.price small,
.monthly {
  color: var(--muted);
  font-weight: 800;
}

.monthly {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  color: #33405a;
  font-weight: 650;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px var(--accent-soft);
}

.price-card .button {
  margin-top: auto;
}

.addons {
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius);
}

.addons h3 {
  margin-bottom: 16px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.addon-grid span {
  padding: 13px 14px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: #33405a;
  font-weight: 800;
  font-size: 14px;
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.step {
  padding: 26px;
  border-radius: var(--radius);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-weight: 900;
}

.proof-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 40px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(11, 18, 32, 0.96), rgba(13, 47, 176, 0.92)),
    var(--text);
  color: #fff;
}

.proof-card .eyebrow {
  color: #b8c7ff;
}

.proof-card .eyebrow::before {
  background: var(--warning);
  box-shadow: 0 0 0 6px rgba(255, 191, 71, 0.16);
}

.proof-card h2 {
  margin-bottom: 0;
}

.proof-points {
  display: grid;
  gap: 14px;
}

.proof-points div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-points strong,
.proof-points span {
  display: block;
}

.proof-points strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.proof-points span {
  color: rgba(255, 255, 255, 0.74);
}

.contact-grid {
  align-items: start;
}

.contact-note {
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--primary);
  border-radius: 18px;
  background: var(--primary-soft);
  color: #26324a;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #26324a;
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(22, 70, 245, 0.55);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.contact-form textarea {
  resize: vertical;
}

.form-disclaimer {
  margin: -4px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--text);
}

.site-footer a {
  color: var(--primary-dark);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .proof-card {
    grid-template-columns: 1fr;
  }

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

  .price-card.featured {
    transform: none;
  }

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

@media (max-width: 740px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    border-radius: 24px;
  }

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

  .site-nav {
    position: fixed;
    top: 82px;
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .section-pad {
    width: calc(100% - 24px);
    padding: 62px 0;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-lede,
  .section-heading p,
  .contact-grid p {
    font-size: 17px;
  }

  .hero-card {
    min-height: auto;
    padding: 18px;
    border-radius: 28px;
  }

  .metric-row,
  .mini-cards,
  .service-grid,
  .pricing-grid,
  .timeline,
  .addon-grid {
    grid-template-columns: 1fr;
  }

  .price-card-head {
    min-height: auto;
    padding-right: 0;
  }

  .badge {
    position: static;
    width: fit-content;
    margin-bottom: 16px;
  }

  .proof-card {
    padding: 26px;
    border-radius: 28px;
  }

  .site-footer {
    flex-direction: column;
    width: calc(100% - 24px);
  }
}
