:root {
  --bg: #f8fbff;
  --card: #ffffff;
  --text: #071225;
  --muted: #5b667a;
  --blue: #1f7aff;
  --purple: #7c3aed;
  --border: #e6e8ec;
  --soft-blue: #eef6ff;
  --soft-green: #f0fdf4;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.1), transparent 34%),
    radial-gradient(circle at top left, rgba(31, 122, 255, 0.08), transparent 32%),
    var(--bg);
}

a {
  color: #1555b8;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: 160px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: #334155;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.btn.primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 14px 34px rgba(31, 122, 255, 0.24);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0 18px;
  color: #64748b;
  font-size: 13px;
}

.breadcrumbs a {
  color: #475569;
  text-decoration: none;
}

.hero {
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #1555b8;
  background: var(--soft-blue);
  font-size: 13px;
  font-weight: 850;
}

h1,
h2,
h3 {
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 {
  max-width: 850px;
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.03;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.15;
}

h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.hero-copy {
  max-width: 760px;
  margin: 0;
  color: #475569;
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.6;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.price-note {
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: clamp(42px, 7vw, 76px) 0 0;
}

.section > p,
.section-copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

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

.card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

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

.card ul,
.content-list {
  margin: 10px 0 0;
  padding-left: 20px;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #1555b8;
  background: var(--soft-blue);
  font-weight: 900;
}

.step p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.callout {
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  color: #1e3a5f;
  background: var(--soft-blue);
  line-height: 1.65;
}

.comparison-scroll {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
}

table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

thead th {
  color: #1f3b72;
  background: var(--soft-blue);
}

tbody th {
  color: #334155;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.faq-item {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}

.faq-item h2 {
  font-size: 20px;
}

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

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.related-links a {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: #1555b8;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.final-cta {
  margin-top: clamp(48px, 8vw, 84px);
  padding: clamp(28px, 6vw, 54px);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #1555b8, var(--purple));
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta p {
  margin: 0 auto;
  max-width: 650px;
  line-height: 1.6;
}

.final-cta .btn {
  margin-top: 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  color: #64748b;
  font-size: 13px;
}

.footer-column strong {
  display: block;
  margin-bottom: 9px;
  color: #334155;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: #64748b;
  text-decoration: none;
}

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

  .site-nav {
    justify-content: flex-start;
  }

  .grid,
  .grid.three,
  .related-links,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .site-nav {
    gap: 12px;
  }

  .hero {
    padding: 26px 20px;
    border-radius: 22px;
  }

  h1 {
    font-size: 34px;
  }

  .cta-row .btn {
    width: 100%;
  }
}
/* Page experience refinements */
.section {
  padding-top: clamp(38px, 5.5vw, 62px);
}

.section > p,
.section-copy {
  max-width: 68ch;
}

.content-pair,
.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

.content-pair > div,
.content-panel {
  min-width: 0;
}

.content-panel {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.content-panel h2 {
  font-size: clamp(23px, 3vw, 30px);
}

.content-panel .section-copy {
  margin-bottom: 0;
}

.pricing-grid .content-panel:first-child {
  padding: 28px;
  border: 1px solid #bfdbfe;
  border-radius: 20px;
  background: var(--soft-blue);
}

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

.step {
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 100%;
  padding: 20px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 15px 16px 15px 44px;
  border-bottom: 1px solid var(--border);
  color: #334155;
  font-weight: 750;
  line-height: 1.45;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  top: 14px;
  left: 16px;
  color: #047857;
  font-weight: 900;
}

.faq-item {
  padding: 0;
  overflow: clip;
}

.faq-item summary {
  padding: 20px 52px 20px 22px;
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-item p {
  padding: 0 22px 22px;
}

.faq-item[open] summary {
  padding-bottom: 12px;
}

.site-footer {
  margin-top: clamp(48px, 6vw, 64px);
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    flex-direction: row;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .grid.three,
  .related-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .site-footer .footer-column:first-child {
    grid-column: 1 / -1;
  }

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

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

  .site-nav {
    justify-content: flex-start;
  }

  .content-pair,
  .standard-grid,
  .benefit-list,
  .steps,
  .grid,
  .grid.three,
  .related-links {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 38px;
  }

  .comparison-scroll {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .comparison-scroll table,
  .comparison-scroll tbody,
  .comparison-scroll tr,
  .comparison-scroll th,
  .comparison-scroll td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .comparison-scroll thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .comparison-scroll tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
  }

  .comparison-scroll th,
  .comparison-scroll td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
  }

  .comparison-scroll th {
    background: var(--soft-blue);
  }

  .comparison-scroll td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .comparison-scroll td:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .final-cta {
    margin-top: 48px;
  }
}