﻿:root {
  --bg: #f4f7fc;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --surface-strong: #eef4ff;
  --border: #dce6f4;
  --text: #132247;
  --muted: #5d6b86;
  --accent: #163d6b;
  --sand: #e79b22;
  --primary: #1f6bff;
  --primary-strong: #1558da;
  --success: #1f9d62;
  --danger: #d95d5d;
  --warning: #c99021;
  --shadow: 0 18px 45px rgba(18, 42, 87, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31,107,255,.08), transparent 32%),
    linear-gradient(180deg, #f7faff 0%, #f4f7fc 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(248, 251, 255, 0.84);
  border-bottom: 1px solid rgba(220, 230, 244, 0.82);
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
}
.topbar .brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.topbar .brand-logo-image {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}
.topbar .brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.topbar .brand-copy strong {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 800;
  white-space: nowrap;
}
.topbar .brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.topbar .brand-copy-miner {
  color: var(--accent);
}
.topbar .brand-copy-watchdog {
  color: var(--sand);
}

.footer .brand-mark {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #edf3ff);
  padding: 8px;
  box-shadow: inset 0 0 0 1px rgba(31, 107, 255, 0.12);
}
.footer-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 500;
  color: var(--muted);
}
.nav-auth {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.nav-auth[hidden] {
  display: none;
}
.nav-dashboard {
  padding: 12px 18px;
}
.nav-links a:hover { color: var(--text); }

.landing-workspace-menu {
  position: relative;
}

.workspace-trigger {
  display: grid;
  gap: 2px;
  min-width: 240px;
  padding: 10px 14px;
  text-align: left;
  border-radius: 16px;
}

.workspace-trigger-label,
.workspace-menu-caption {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.workspace-trigger strong,
.workspace-menu-email {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.workspace-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  gap: 12px;
  width: min(320px, calc(100vw - 48px));
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.workspace-menu-panel[hidden],
[data-auth-only][hidden] {
  display: none;
}

.workspace-menu-actions {
  display: grid;
  gap: 8px;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  background: #eef3ff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}
.lang-btn.active { background: var(--surface); color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: .2s ease;
}


.menu-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 15px 24px;
  font-weight: 700;
  transition: .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  box-shadow: 0 12px 28px rgba(31,107,255,.24);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary,
.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.btn-secondary:hover,
.btn-ghost:hover { border-color: rgba(31,107,255,.35); }

.hero {
  padding: 56px 0 30px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 52px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: .95;
  letter-spacing: -0.055em;
  max-width: 760px;
}
.hero-subtitle {
  margin: 0;
  font-size: 23px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 700px;
}
.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 0;
  margin: 28px 0 20px;
  color: var(--text);
  font-weight: 600;
}
.hero-tags li::before {
  content: '•';
  color: var(--primary);
  margin-right: 12px;
}
.money-note {
  display: inline-flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(31,157,98,.28);
  border-radius: 18px;
  background: rgba(31,157,98,.06);
  color: #216748;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}
.microcopy {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}
.app-window {
  background: var(--surface);
  border: 1px solid rgba(220,230,244,.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.window-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: linear-gradient(180deg, #fafcff, #f4f8ff);
  border-bottom: 1px solid var(--border);
}
.window-bar span {
  width: 8px; height: 8px; border-radius: 50%; background: #c4d2ea;
}
.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px 12px;
}
.mini-title { font-size: 18px; font-weight: 800; letter-spacing: -0.04em; }
.mini-status { color: var(--muted); margin-top: 4px; }
.mini-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  background: #eef4ff;
  border: 1px solid var(--border);
  font-weight: 700;
  color: var(--primary-strong);
}
.hero-card img { width: 100%; }
.floating-alert {
  position: absolute;
  right: -10px;
  bottom: 18px;
  width: min(320px, 62%);
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 245, 245, 0.95);
  border: 1px solid rgba(217, 93, 93, 0.18);
  box-shadow: 0 16px 34px rgba(18,42,87,.14);
}
.alert-title { color: #b24848; font-weight: 800; margin-bottom: 6px; }
.alert-text { color: #7b5a5a; }

.trust-strip {
  padding: 10px 0 14px;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(220,230,244,.72);
  border-radius: 24px;
  padding: 24px 28px;
}
.trust-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
}

section { padding: 34px 0; }
.card-shell {
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(220,230,244,.75);
  border-radius: 28px;
  padding: 34px;
}
.large-shell { padding: 36px; }
.section-head { margin-bottom: 22px; }
.section-head.center { text-align: center; }
.section-head.narrow {  margin-left: auto; margin-right: auto; }
section h2 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.pricing-launch {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.card-grid {
  display: grid;
  gap: 18px;
}
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  min-height: 180px;
}
.icon-card { min-height: 210px; }
.icon-badge {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: #eef4ff; color: var(--primary); font-size: 22px; margin-bottom: 18px;
}
.info-card h3 {
  margin: 0 0 12px;
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  min-height: 220px;
}
.step-index {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: #eef4ff; color: var(--primary); font-weight: 800; margin-bottom: 18px;
}
.step-card h3 { margin: 0 0 12px; font-size: 30px; line-height: 1.05; letter-spacing: -0.04em; }
.step-card p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.55; }

.proof-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: center;
}
.proof-copy { padding-right: 18px; }
.proof-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 16px;
}
.proof-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
}
.proof-points li::before {
  content: '✓';
  width: 28px; height: 28px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(31,157,98,.12);
  color: var(--success);
}
.proof-images { position: relative; min-height: 560px; }
.proof-main {
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.proof-secondary {
  position: absolute;
  width: 36%;
  right: -4px;
  bottom: -16px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(18,42,87,.16);
}
.danger-card { border-color: rgba(201,144,33,.18); background: #fffdf9; }
.pricing-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.pricing-grid::-webkit-scrollbar {
  height: 10px;
}

.pricing-grid::-webkit-scrollbar-track {
  background: rgba(220,230,244,.55);
  border-radius: 999px;
}

.pricing-grid::-webkit-scrollbar-thumb {
  background: rgba(31,107,255,.28);
  border-radius: 999px;
}

.pricing-card {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: calc((100% - 48px) / 4);
  scroll-snap-align: start;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(31,107,255,.28);
  box-shadow: 0 18px 40px rgba(31,107,255,.12);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.trial-badge,
.popular-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.trial-badge {
  background: #eff8f1;
  color: var(--success);
  border: 1px solid rgba(31,157,98,.2);
}

.popular-badge {
  background: #eef4ff;
  color: var(--primary);
  border: 1px solid rgba(31,107,255,.15);
}

.pricing-card h3 {
  margin: 14px 0 10px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.price {
  font-size: 38px;
  line-height: .95;
  letter-spacing: -0.04em;
  font-weight: 800;
  white-space: nowrap;
}

.per {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  white-space: nowrap;
}

.price-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.pricing-card li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  flex: 0 0 auto;
}

.pricing-card .btn {
  margin-top: auto;
  padding: 12px 18px;
  font-size: 15px;
  border-radius: 14px;
}

.section-pricing .section-head.narrow {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.section-pricing .pricing-launch {
  max-width: 760px;
  margin: 14px auto 0;
  text-align: center;
}

@media (max-width: 1200px) {
  .pricing-card {
    flex: 0 0 calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 720px) {
  .pricing-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .price {
    font-size: 34px;
  }

  .pricing-card {
    padding: 18px;
  }
}

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0 22px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  padding: 22px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 28px;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 780px;
}

.final-cta { padding: 42px 0 58px; }
.cta-shell {
  background: linear-gradient(135deg, #12357b, #1f6bff);
  color: #fff;
  border-radius: 28px;
  padding: 34px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 22px 50px rgba(18,53,123,.22);
}
.cta-shell h2 { color: #fff; margin-bottom: 10px; }
.cta-shell p { margin: 0; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.55; max-width: 720px; }
.cta-shell .btn-primary { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.14); box-shadow: none; }

.footer {
  border-top: 1px solid rgba(220,230,244,.8);
  padding: 30px 0 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.52), rgba(248,251,255,.86));
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1.15fr .8fr .9fr .95fr;
  gap: 28px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.footer-brand strong {
  display: block;
  font-size: 1.95rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.footer-brand p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 320px;
}
.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}
.footer-title {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
  color: var(--muted);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--text); }
.footer-subfooter {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(220,230,244,.82);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-subfooter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.footer-subfooter a:hover {
  color: var(--text);
}

@media (max-width: 1200px) {
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child { grid-column: span 2; }
  .footer-wrap { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 96px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav-auth {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .landing-workspace-menu {
    width: 100%;
  }
  .nav-dashboard {
    width: 100%;
  }
  .workspace-trigger,
  .workspace-menu-panel {
    width: 100%;
  }
  .workspace-menu-panel {
    position: static;
  }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; }
  .hero-grid,
  .proof-grid,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: none; }
  .steps-grid,
  .card-grid.three { grid-template-columns: 1fr; }
  .proof-images { min-height: auto; padding-bottom: 120px; }
  .proof-secondary { width: 46%; }
  .cta-shell { flex-direction: column; align-items: flex-start; }
  .footer-wrap { grid-template-columns: 1fr 1fr; }
  .footer-column-contact { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { background: linear-gradient(180deg, #f7faff 0%, #f3f6fb 100%); }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .topbar { position: static; }
  .topbar .brand-logo-image {
    width: 56px;
    height: 56px;
  }
  .topbar .brand-copy strong {
    font-size: 1rem;
  }
  .topbar .brand-copy span {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  .nav-wrap { min-height: 84px; }
  .hero { padding-top: 28px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-subtitle { font-size: 19px; }
  .hero-actions { flex-direction: column; }
  .floating-alert { position: static; width: 100%; margin-top: 16px; }
  .card-shell, .large-shell { padding: 22px; }
  .card-grid.four, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card:last-child { grid-column: auto; }
  .pricing-card.featured { transform: none; }
  .proof-images { padding-bottom: 0; }
  .proof-secondary {
    position: static;
    width: 68%;
    margin: 14px auto 0;
  }
  section h2 { font-size: 40px; }
  .info-card h3, .step-card h3 { font-size: 24px; }
  .price { font-size: 40px; }
  .footer-wrap { grid-template-columns: 1fr; gap: 22px; }
  .footer-column-contact,
  .footer-brand { grid-column: auto; }
  .footer .brand-mark {
    width: 64px;
    height: 64px;
  }
  .footer-brand strong { font-size: 1.55rem; }
  .footer-subfooter {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar .brand-logo-image {
    width: 52px;
    height: 52px;
  }
  .topbar .brand-copy strong {
    font-size: 0.96rem;
  }
  .topbar .brand-copy span {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }
}

.section-compare {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.section-trust-security {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-compatibility-check {
  padding-top: 20px;
  padding-bottom: 40px;
}

.trust-security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.trust-security-card {
  min-height: 230px;
}

.trust-security-card h3 {
  margin-top: 0;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.compatibility-card {
  min-height: 220px;
}

.compatibility-card h3 {
  margin-top: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(17,35,74,0.08);
}

.icon-blue {
  background: linear-gradient(180deg, #eaf3ff, #dce9ff);
  color: #256dff;
  border: 1px solid #bfd3ff;
}

.icon-purple {
  background: linear-gradient(180deg, #f3efff, #e7deff);
  color: #7a5cff;
  border: 1px solid #d5c8ff;
}

.icon-green {
  background: linear-gradient(180deg, #edfdf3, #daf7e5);
  color: #23a35e;
  border: 1px solid #bfeacc;
}

.icon-orange {
  background: linear-gradient(180deg, #fff4eb, #ffe7d2);
  color: #ff8a2a;
  border: 1px solid #ffd0aa;
}

.section-compare .section-head {
  margin: 0 auto 32px;
  text-align: center;
}

.section-compare .section-head .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}


.section-compare .feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.section-compare .compare-card {
  background: #ffffff;
  border: 1px solid #dce6f4;
  border-radius: 22px;
  padding: 28px;
  min-height: 230px;
  box-shadow: 0 10px 24px rgba(17,35,74,0.05);
  position: relative;
  overflow: hidden;
}

.section-compare .compare-card::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(37,109,255,0.06), transparent 70%);
  pointer-events: none;
}

.section-compare .compare-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section-compare .compare-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.section-compare .compare-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(17,35,74,0.08);
}

.compare-blue {
  background: linear-gradient(180deg, #eaf3ff, #dce9ff);
  color: #256dff;
  border: 1px solid #bfd3ff;
}

.compare-orange {
  background: linear-gradient(180deg, #fff4eb, #ffe7d2);
  color: #ff8a2a;
  border: 1px solid #ffd0aa;
}

.compare-green {
  background: linear-gradient(180deg, #edfdf3, #daf7e5);
  color: #23a35e;
  border: 1px solid #bfeacc;
}

.compare-purple {
  background: linear-gradient(180deg, #f3efff, #e7deff);
  color: #7a5cff;
  border: 1px solid #d5c8ff;
}

@media (max-width: 1100px) {
  .trust-security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 700px) {
  .trust-security-grid {
    grid-template-columns: 1fr;
  }

  .compatibility-grid {
    grid-template-columns: 1fr;
  }

  .section-compare .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-compare .section-head h2 {
    font-size: 32px;
  }
}
.pricing-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.pricing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(31,107,255,.18);
  cursor: pointer;
  transition: all .2s ease;
}

.pricing-dot.active {
  width: 26px;
  border-radius: 999px;
  background: var(--primary);
}

