:root{
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --bg: #f6f8fb;
  --brand-blue-dark: #071c3f;
  --brand-blue: #1454c7;
  --brand-cyan: #2fa4e7;
  --brand-green: #34b56b;
  --container: 1160px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 15px/1.55 system-ui, "Segoe UI", Roboto, Arial, sans-serif;
}
a{ color: inherit; text-decoration: none; }
h1, h2, h3, h4{ margin: 0 0 8px; color: var(--ink); }
p{ margin: 0 0 8px; color: var(--muted); }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer;
}
.btn--primary{ background: var(--brand-green); color: #fff; }
.btn--primary:hover{ background: #2b9c5c; }
.btn--ghost{ background: transparent; color: #eef4ff; border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover{ background: rgba(255,255,255,0.1); }
.btn--login{ background: var(--brand-blue); color: #fff; padding: 8px 18px; }
.btn--login:hover{ background: #0f45a3; }

/* ===== Header ===== */
.site-header{ background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.site-header__inner{ display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand{ display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--ink); }
.brand__logo{ width: 34px; height: 34px; flex: 0 0 auto; display: block; }
.site-nav{ display: flex; gap: 28px; }
.site-nav a{ color: #334155; font-weight: 500; }
.site-nav a:hover{ color: var(--brand-blue); }

/* ===== Hero ===== */
.hero{
  background: linear-gradient(120deg, #1c8fe0 0%, #0d3a86 45%, #071c3f 100%);
  color: #fff;
  padding: 64px 0;
}
.hero__inner{ display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.eyebrow{ letter-spacing: .08em; font-size: 12.5px; font-weight: 700; color: #bcd6ff; margin-bottom: 12px; }
.hero h1{ color: #fff; font-size: 40px; line-height: 1.2; max-width: 620px; }
.hero .lead{ color: #dbe7fb; max-width: 560px; font-size: 16px; }
.hero .lead strong{ color: #fff; }
.hero__actions{ display: flex; gap: 14px; margin-top: 22px; }

.hero__panel{
  background: rgba(5, 15, 35, 0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 24px;
}
.hero__panel h3{ color: #fff; font-size: 16px; margin-bottom: 14px; }
.pill-grid{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.pill{
  border: 1px solid rgba(255,255,255,0.4); border-radius: 999px;
  padding: 7px 14px; font-size: 13px; color: #eef4ff;
}
.hero__panel .muted{ color: #a9bcdd; font-size: 13px; margin: 0; }

/* ===== Sections ===== */
section{ padding: 56px 0; }
.section-sub{ color: var(--muted); margin-bottom: 28px; }
h2{ font-size: 26px; }

/* ===== Operators ===== */
.operator-grid{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.operator-card{
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px;
}
.operator-card h4{ font-size: 16px; }
.operator-card p{ font-size: 13.5px; margin: 0; }
.tag{
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .02em;
  padding: 5px 10px; border-radius: 999px; margin-bottom: 12px;
}
.tag--red{ background: #fee2e2; color: #b91c1c; }
.tag--blue{ background: #dbeafe; color: #1d4ed8; }
.tag--orange{ background: #ffedd5; color: #c2410c; }
.tag--purple{ background: #ede9fe; color: #6d28d9; }
.tag--green{ background: #dcfce7; color: #15803d; }

/* ===== Why ===== */
.why{ background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card{ background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 20px; }

/* ===== Contact ===== */
.contact-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card{ background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
.contact-card p{ margin: 4px 0; color: var(--ink); font-size: 14px; }
.contact-card strong{ color: var(--ink); }

/* ===== Legal pages ===== */
.legal{ background: #fff; }
.legal__inner{ max-width: 820px; }
.legal h1{ font-size: 30px; }
.legal__updated{ color: var(--muted); font-size: 13px; margin-bottom: 28px; }
.legal h2{ font-size: 18px; margin-top: 30px; }
.legal p, .legal li{ color: #334155; font-size: 14.5px; }
.legal ul{ padding-left: 20px; margin: 0 0 8px; }
.legal li{ margin-bottom: 6px; }
.legal a{ color: var(--brand-blue); text-decoration: underline; }

/* ===== Footer ===== */
.site-footer{ background: var(--brand-blue-dark); color: #cbd5e1; }
.footer__inner{ display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; padding: 44px 0 24px; }
.footer__col h5{ color: #fff; font-size: 12px; letter-spacing: .06em; margin-bottom: 14px; }
.footer__col p{ color: #94a3b8; font-size: 13.5px; }
.footer__col a{ display: block; color: #cbd5e1; font-size: 14px; margin-bottom: 8px; }
.footer__col a:hover{ color: #fff; }
.footer__bottom{ border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; text-align: center; }
.footer__bottom p{ color: #7c8aa0; font-size: 12.5px; margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .operator-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; }
  .site-nav{ display: none; }
}
@media (max-width: 560px){
  .hero{ padding: 44px 0; }
  .hero h1{ font-size: 30px; }
  .operator-grid{ grid-template-columns: 1fr; }
}
