:root {
  --bg: #09111f;
  --bg-2: #0d1729;
  --panel: #121f36;
  --panel-2: #16263f;
  --panel-3: #1c2f4f;
  --text: #ebf1fb;
  --muted: #b8c7e2;
  --line: rgba(255,255,255,0.09);
  --brand: #f4b23a;
  --brand-deep: #d18a06;
  --accent: #67a6ff;
  --accent-soft: rgba(103,166,255,0.14);
  --success: #19a974;
  --max: 1180px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(103,166,255,0.12), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 76px 0; }
.section-tight { padding-top: 12px; }
.section-slate {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #dfe8fb;
  background: rgba(255,255,255,0.04);
  font-size: 0.9rem;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(9, 17, 31, 0.9);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), #ffe094);
  color: #10203b;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #ffd57d);
  color: #0d1a2f;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.16);
  color: var(--text);
}
.btn-secondary:hover { background: rgba(255,255,255,0.04); }

.hero {
  padding: 88px 0 44px;
}

.hero-flag {
  background:
    linear-gradient(90deg, rgba(7,18,35,0.94), rgba(7,18,35,0.74)),
    linear-gradient(180deg, rgba(103,166,255,0.10), transparent 40%);
}

.hero-grid,
.grid-2,
.grid-3,
.grid-4,
.contact-wrap {
  display: grid;
  gap: 24px;
}

.hero-grid,
.grid-2,
.contact-wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
h3 { font-size: 1.18rem; }

.lead {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 64ch;
}

.hero-card,
.card,
.contact-card,
.kpi,
.timeline-item,
.mini-stat,
.cta-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.022));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.contact-card,
.cta-box { padding: 28px; }
.card { padding: 24px; height: 100%; }
.card p,
.section-title p,
.timeline-item p,
.contact-card p { color: var(--muted); }

.spotlight-card {
  border-color: rgba(244,178,58,0.3);
  background: linear-gradient(180deg, rgba(244,178,58,0.08), rgba(255,255,255,0.03));
}

.spotlight-top,
.tag-row,
.cta-row,
.cta-inline,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row { margin-top: 24px; }
.cta-inline { margin-top: 28px; }
.cta-stack { justify-content: flex-start; }

.pill,
.tag {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.pill {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #e1ebff;
}
.pill-accent {
  background: rgba(244,178,58,0.16);
  border-color: rgba(244,178,58,0.24);
  color: #ffe5ad;
}
.tag {
  color: #dce7ff;
  background: rgba(103,166,255,0.14);
  border: 1px solid rgba(103,166,255,0.28);
}

.hero-list,
.check-list,
.icon-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li,
.check-list li,
.icon-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--muted);
}

.hero-list li::before,
.check-list li::before,
.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 800;
}

.procurement-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.mini-stat {
  padding: 18px;
}
.mini-stat strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}
.mini-stat span { color: var(--muted); font-size: 0.95rem; }

.trust-bar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 0 0;
  color: #d2dff6;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.trust-bar span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.section-title p { margin: 0; }
.split-title {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 24px;
}

.feature-card,
.icon-card,
.checklist-card { position: relative; overflow: hidden; }
.accent-border { border-color: rgba(244,178,58,0.32); }
.feature-card::after,
.icon-card::after,
.checklist-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 0.9;
}

.band {
  background: linear-gradient(135deg, rgba(103,166,255,0.12), rgba(244,178,58,0.10));
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.timeline {
  display: grid;
  gap: 18px;
}
.timeline-item { padding: 20px 22px; }
.timeline-item small {
  display: inline-block;
  margin-bottom: 10px;
  color: #d7e4fb;
}
.timeline-item p { margin: 0; }

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-form .form-grid > div:last-of-type,
.contact-form button,
.notice {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.notice { color: #dfe8fb; font-weight: 600; }

.cta-box-strong {
  background: linear-gradient(135deg, rgba(15,27,47,0.94), rgba(28,47,79,0.8));
  border-color: rgba(103,166,255,0.18);
}

footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-row p { margin: 0; color: var(--muted); }

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3,
  .hero-grid,
  .grid-2,
  .contact-wrap,
  .split-title,
  .procurement-strip,
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(12, 22, 39, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .grid-4,
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding-top: 60px; }
}
