:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --surface-2: #eef5ff;
  --text: #15223d;
  --muted: #5b6784;
  --primary: #1f6feb;
  --primary-dark: #174ea9;
  --accent: #0fce9b;
  --border: #dfe8f8;
  --shadow: 0 16px 40px rgba(21, 34, 61, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
  margin-left: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  margin-right: auto;
}
.brand img {
  width: auto;
  height: 56px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-weight: 500;
}
.nav-links a:hover { color: var(--primary); }

.hero {
  padding: 4.5rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #e8f2ff;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}
.hero p.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 1.5rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31,111,235,0.24);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.hero-card h2 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}
.hero-card .mini {
  color: var(--muted);
  margin-bottom: 1rem;
}
.check-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}
.check-list span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--surface-2);
  border-radius: 999px;
  padding: 0.7rem 0.9rem;
  font-weight: 600;
}
.check-list span::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.section {
  padding: 2rem 0 0.5rem;
}
.section h3 {
  margin-top: 0;
  font-size: 1.5rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  text-align: center;
}
.stat strong { display: block; font-size: 1.35rem; color: var(--primary); }
.grid {
  display: grid;
  gap: 1rem;
}
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.card h4 { margin: 0 0 0.4rem; }
.card p { margin: 0; color: var(--muted); }
.hidden { display: none !important; }
.notice {
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  color: var(--muted);
}
  
.cta {
  margin: 2.5rem 0 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cta .btn-secondary { background: rgba(255,255,255,0.95); color: var(--primary-dark); }
.footer-logo {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
footer {
  padding: 2rem 0 2.5rem;
  color: var(--muted);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

@media (max-width: 860px) {
  .hero-grid, .cards-3, .cards-2, .stats { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 0.75rem; }
  .hero { padding-top: 2.5rem; }
}
