:root {
  --navy: #071527;
  --blue: #0b63ce;
  --blue2: #0ea5e9;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(11,99,206,0.10), transparent 28%),
    radial-gradient(circle at 84% 25%, rgba(14,165,233,0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--text);
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

.topbar {
  height: 36px;
  background: var(--navy);
  color: #dbeafe;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 7vw;
  font-size: 13px;
  font-weight: 700;
}

.topbar div {
  display: flex;
  gap: 26px;
  align-items: center;
}

.navbar {
  height: 86px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 0 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  border: none;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 16px 36px rgba(11,99,206,0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid #dbe3ec;
}

.page-hero {
  padding: 90px 7vw 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--navy);
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.section {
  padding: 70px 7vw;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15,23,42,0.05);
}

.card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 22px;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: #f8fafc;
  color: var(--navy);
}

td {
  color: var(--muted);
}

.site-footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 24px 7vw;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}