:root {
  color-scheme: light;
  --bg: #f2f6f8;
  --ink: #13212d;
  --muted: #5f7082;
  --line: #d6e0e8;
  --panel: #ffffff;
  --panel-soft: #f7fafc;
  --teal: #087f83;
  --teal-dark: #06666a;
  --blue: #276fb7;
  --green: #15803d;
  --amber: #b7791f;
  --red: #dc3545;
  --navy: #102a3a;
  --shadow: 0 18px 50px rgba(20, 42, 57, .11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #e7eef3 0, #f8fbfd 420px, var(--bg) 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(214, 224, 232, .9);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(20, 42, 57, .08);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 50%;
  max-width: 1180px;
  padding: 10px 12px;
  position: sticky;
  top: 14px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 20;
}

.brand,
.brand-mini {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 900;
}

.brand-logo {
  height: 42px;
  width: 152px;
}

.brand-mini-logo {
  height: 48px;
  width: 174px;
}

.brand-mark,
.brand-mini span {
  align-items: center;
  background: var(--navy);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 42px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.nav-links a {
  border-radius: 6px;
  color: #34485b;
  font-size: .92rem;
  font-weight: 800;
  padding: 9px 11px;
}

.nav-links a:hover {
  background: #e9f1f6;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  transition: background .14s ease, border-color .14s ease, transform .14s ease;
}

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

.btn.primary {
  background: var(--teal);
  color: #fff;
}

.btn.primary:hover {
  background: var(--teal-dark);
}

.btn.secondary {
  background: #fff;
  border-color: #a9bac9;
  color: #1d3445;
}

.btn.ghost {
  background: #eef5f7;
  color: #173343;
}

.btn.full {
  width: 100%;
}

.hero {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  margin: 42px auto 0;
  max-width: 1240px;
  min-height: calc(100vh - 112px);
  padding: 28px 22px 34px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  color: var(--teal);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: .98;
  margin: 0 0 18px;
}

.hero-copy p {
  color: #42576a;
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 580px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row {
  margin-top: 20px;
}

.trust-row span,
.plan-badge,
.stripe-status {
  border-radius: 999px;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  padding: 8px 10px;
}

.trust-row span {
  background: #eaf2f6;
  color: #35546a;
}

.hero-visual {
  border-radius: 8px;
  min-height: 530px;
  overflow: hidden;
  position: relative;
}

.hero-visual picture,
.hero-visual img {
  height: 100%;
  width: 100%;
}

.hero-visual picture {
  display: block;
}

.hero-visual img {
  border: 1px solid rgba(214, 224, 232, .9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-stat {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(20, 42, 57, .12);
  display: grid;
  gap: 4px;
  min-width: 145px;
  padding: 13px;
  position: absolute;
}

.hero-stat strong {
  font-size: 1.28rem;
}

.hero-stat span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.stat-one {
  left: 18px;
  top: 18px;
}

.stat-two {
  bottom: 18px;
  right: 18px;
}

.logos-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  padding: 18px;
}

.logos-band span {
  color: #486074;
  font-size: .9rem;
  font-weight: 900;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 76px 18px 0;
}

.section-head,
.intro-grid,
.checkout-panel,
.compare,
.feature-band {
  display: grid;
  gap: 22px;
}

.section-head {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  margin-bottom: 22px;
}

.section h2 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.06;
  margin: 0;
}

.section-head p,
.checkout-copy p,
.feature-copy p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, .9fr));
}

.intro-card,
.plan-card,
.feature-grid div,
.steps div,
.checkout-panel,
.faq details,
.simple-card {
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
}

.intro-card strong {
  font-size: 1.05rem;
}

.intro-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.plans-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  display: grid;
  gap: 14px;
  min-height: 620px;
  padding: 22px;
  position: relative;
}

.plan-card.featured {
  border-color: rgba(8, 127, 131, .45);
  border-top: 4px solid var(--teal);
}

.plan-badge {
  background: #e6f6f4;
  color: var(--teal-dark);
  justify-self: start;
}

.plan-card h3 {
  font-size: 1.25rem;
  margin: 0;
}

.plan-card p,
.plan-card li {
  color: var(--muted);
  line-height: 1.45;
}

.plan-card p {
  margin: 0;
}

.price {
  display: grid;
  gap: 4px;
  margin: 4px 0;
}

.price span {
  font-size: 2rem;
  font-weight: 900;
}

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

.plan-meta {
  display: grid;
  gap: 6px;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.plan-card li::before {
  background: var(--green);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 2px;
  position: absolute;
  top: .55em;
  width: 8px;
}

.plan-card .btn {
  align-self: end;
}

.feature-band {
  align-items: start;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}

.feature-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid div {
  border-left: 4px solid var(--blue);
  display: grid;
  gap: 7px;
  min-height: 126px;
  padding: 17px;
}

.feature-grid div:nth-child(2n) {
  border-left-color: var(--teal);
}

.feature-grid div:nth-child(3n) {
  border-left-color: var(--amber);
}

.feature-grid span {
  color: var(--muted);
  line-height: 1.42;
}

.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps div {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 18px;
}

.steps span {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: .76rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.steps p {
  color: var(--muted);
  line-height: 1.42;
  margin: 0;
}

.compare {
  align-items: start;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.compare-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.compare-table div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 15px;
}

.compare-table div:last-child {
  border-bottom: 0;
}

.compare-table span {
  color: var(--teal-dark);
  font-weight: 900;
}

.compare-table strong {
  font-weight: 800;
  line-height: 1.38;
}

.checkout-panel {
  align-items: start;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  padding: 24px;
}

.checkout-copy {
  display: grid;
  gap: 14px;
}

.stripe-status {
  justify-self: start;
}

.stripe-status.ready {
  background: #e9f8ef;
  color: var(--green);
}

.stripe-status.pending {
  background: #fff7df;
  color: var(--amber);
}

.checkout-form {
  display: grid;
  gap: 13px;
}

.two {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  color: #243748;
  display: grid;
  font-size: .88rem;
  font-weight: 900;
  gap: 7px;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid #c6d3df;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 42px;
  padding: 10px 11px;
  width: 100%;
}

textarea {
  line-height: 1.45;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 127, 131, .15);
  outline: none;
}

.estimate {
  align-items: center;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
}

.estimate span,
.form-note {
  color: var(--muted);
}

.estimate strong {
  font-size: 1.05rem;
}

.form-note {
  font-size: .84rem;
  line-height: 1.4;
  margin: 0;
}

.faq {
  display: grid;
  gap: 12px;
  padding-bottom: 76px;
}

.faq details {
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  color: var(--muted);
  line-height: 1.5;
  margin: 10px 0 0;
}

.footer {
  align-items: start;
  background: #102a3a;
  color: #fff;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 28px max(18px, calc((100vw - 1180px) / 2));
}

.footer p {
  color: #bad0dc;
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  color: #d7e7ef;
  font-weight: 800;
  padding: 6px;
}

.simple-shell {
  display: grid;
  gap: 22px;
  margin: 0 auto;
  max-width: 760px;
  min-height: 100vh;
  place-content: center;
  padding: 24px;
}

.simple-card {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.simple-card h1,
.simple-card p {
  margin: 0;
}

.simple-card p {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .hero,
  .section-head,
  .intro-grid,
  .plans-grid,
  .feature-band,
  .steps,
  .compare,
  .checkout-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .plan-card {
    min-height: auto;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 18px);
  }

  .brand-logo {
    height: 38px;
    width: 138px;
  }

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

  .hero-visual {
    min-height: 260px;
  }

  .hero-stat {
    position: static;
    margin-top: 10px;
  }

  .hero-visual img {
    height: auto;
  }

  .feature-grid,
  .two,
  .compare-table div {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
