:root {
  --primary: #2458ff;
  --navy: #0d1b3e;
  --text: #374151;
  --muted: #6b7280;
  --soft: #eef3ff;
  --border: #e5e7eb;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 14px 30px rgba(13, 27, 62, 0.1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Inter, system-ui, Arial, sans-serif;
  color: var(--text);
  background: #f7f8fc;
  line-height: 1.6;
}
h1,
h2,
h3 {
  font-family: Poppins, system-ui, Arial, sans-serif;
  color: var(--navy);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
}
.logo {
  display: flex;
  gap: 10px;
  align-items: center;
}
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #c8d2ff;
  object-fit: cover;
}
.logo__name {
  font-weight: 700;
  letter-spacing: 0.06em;
}
.nav__links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 500;
  color: var(--muted);
}
.cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #16357a);
  color: #fff;
  box-shadow: 0 10px 22px rgba(36, 88, 255, 0.28);
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 44px 24px;
}
.hero__pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.hero__title {
  font-size: clamp(28px, 4vw, 38px);
  margin: 8px 0;
}
.hero__title strong {
  background: linear-gradient(120deg, var(--primary), #16357a);
  -webkit-background-clip: text;
  color: transparent;
}
.hero__sub {
  color: var(--muted);
  max-width: 560px;
  margin: 10px 0 18px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: var(--soft);
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
}
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
}
.btn--ghost {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px;
}
.card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.card p {
  color: var(--muted);
  font-size: 0.94rem;
}
.list {
  list-style: none;
  margin-top: 8px;
}
.list li {
  display: flex;
  gap: 8px;
  margin: 4px 0;
}
.list li::before {
  content: "•";
  color: var(--primary);
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  margin: 24px 0 14px;
}
.kicker {
  font-size: 0.85rem;
  color: var(--muted);
}
.strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.footer {
  padding: 22px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #fff;
}
.note {
  font-size: 0.85rem;
  color: var(--muted);
}
details.card summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 14px;
  overflow: hidden;
}
th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
thead th {
  background: var(--soft);
  color: var(--navy);
}
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
}
.form {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0;
}
.input {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  background: #fbfcff;
}
.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(36, 88, 255, 0.12);
}
.two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .nav__links {
    display: none;
  }
}

.tableWrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
}

.pricingTable {
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
}

.pricingTable thead th {
  background: #f6f7fb;
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  white-space: nowrap;
}

.pricingTable td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: top;
}

.pricingTable tbody tr:last-child td {
  border-bottom: none;
}

.pricingTable .num {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.pricingTable .title {
  font-weight: 700;
  white-space: nowrap;
}

.pill {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.05);
}
