﻿:root {
  --brand-900: #072a47;
  --brand-800: #083b66;
  --brand-700: #0b5f8c;
  --brand-600: #0ea5c6;
  --brand-100: #e8f5fc;
  --accent: #ffc542;
  --success: #4cb944;
  --text: #0f172a;
  --muted: #5b6678;
  --line: #d9e6f2;
  --surface: #ffffff;
  --bg: #f2f7fc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top right, #eaf7ff 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.65;
}

.container { width: min(1180px, 92%); margin: 0 auto; }

.topbar {
  background: var(--brand-900);
  color: #dcecff;
  padding: 8px 0;
  font-size: 0.86rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

header {
  background: linear-gradient(125deg, var(--brand-800), var(--brand-700) 50%, var(--brand-600));
  color: #fff;
  padding: 20px 0;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand-row h1 { font-size: 1.85rem; letter-spacing: .3px; }
.brand-row p { max-width: 730px; opacity: 0.96; }

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(7px);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
}

nav a {
  text-decoration: none;
  color: var(--brand-800);
  font-weight: 700;
  padding: 10px 13px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all .2s ease;
}

nav a:hover,
nav a.active {
  background: var(--brand-100);
  color: #05253e;
}

main { padding: 26px 0 14px; }

.hero {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(10, 35, 70, .11);
  margin-bottom: 24px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  align-items: center;
  padding: 28px;
}

.hero h2 {
  color: var(--brand-800);
  font-size: 2.05rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero p { color: var(--muted); }

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.badge {
  border: 1px solid #c8e9f3;
  background: #ecf9fd;
  color: #0b4f6c;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .84rem;
  font-weight: 700;
}

.btn {
  margin-top: 16px;
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  color: #111827;
  font-weight: 800;
  border-radius: 10px;
  padding: 11px 17px;
}

img.visual {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #f8fcff;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .05);
}

.kpi strong {
  display: block;
  font-size: 1.58rem;
  color: var(--brand-800);
}

.kpi span { color: #4f6072; font-size: .91rem; }

.section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: 0 6px 14px rgba(10, 33, 63, .05);
}

.section h2 {
  color: var(--brand-800);
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.section p { color: var(--muted); }

.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: #fbfeff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-600);
  border-radius: 12px;
  padding: 16px;
}

.card h3 { color: var(--brand-800); margin-bottom: 8px; }
.card p { color: #536273; }

.dark-panel {
  background: linear-gradient(140deg, #0a2a45 0%, #0b4163 100%);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 22px;
  color: #dce9f7;
}

.dark-panel h2 { color: #fff; margin-bottom: 10px; }
.dark-panel p { color: #d5e5f5; }

.progress-list { margin-top: 14px; }
.progress-item { margin-bottom: 10px; }
.progress-item p { color: #ebf4fc; margin-bottom: 4px; font-weight: 600; }
.progress {
  width: 100%;
  height: 11px;
  background: rgba(255,255,255,.24);
  border-radius: 999px;
  overflow: hidden;
}
.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #17c5e3, #69e4f4);
}

.contact-list p { margin: 6px 0; }
.contact-list strong { color: var(--brand-700); }

footer {
  margin-top: 30px;
  background: #091525;
  color: #d8e6f3;
  text-align: center;
  padding: 21px 0;
}

@media (max-width: 700px) {
  .hero-grid { padding: 18px; }
  .hero h2 { font-size: 1.6rem; }
  .section { padding: 18px; }
}
