:root {
  --ink: #162033;
  --muted: #607086;
  --line: #dbe2ec;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --accent: #1b6fb8;
  --accent-dark: #104b82;
  --teal: #13827b;
  --gold: #c28a20;
  --shadow: 0 18px 42px rgba(22, 32, 51, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 42%, rgba(255,255,255,0.9) 43% 47%, transparent 48%),
    linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.15);
  flex: 0 0 auto;
}

.brand-text {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--paper);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 40px 6vw 32px;
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.9), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 12% 20%, rgba(19, 130, 123, 0.12), transparent 28%);
}

.hero h1,
.page-title h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead,
.page-title p,
.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: var(--paper);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.dashboard-visual {
  width: min(100%, 590px);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #eef4fb);
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
}

.dashboard-top span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
}

.dashboard-cards div,
.dashboard-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
}

.dashboard-cards span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.dashboard-cards strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.dashboard-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(130px, 0.8fr);
  gap: 24px;
  margin: 0 24px 24px;
}

.chart-lines,
.progress-list {
  position: relative;
  min-height: 150px;
}

.chart-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  border-radius: 999px;
  transform-origin: left center;
}

.chart-lines span:first-child {
  top: 84px;
  background: var(--accent);
  transform: rotate(-16deg);
}

.chart-lines span:last-child {
  top: 104px;
  background: var(--teal);
  transform: rotate(-8deg);
}

.progress-list {
  display: grid;
  align-content: center;
  gap: 18px;
}

.progress-list span {
  display: block;
  height: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 72%, var(--line) 72%);
}

.progress-list span:nth-child(2) {
  background: linear-gradient(90deg, var(--teal) 58%, var(--line) 58%);
}

.progress-list span:nth-child(3) {
  background: linear-gradient(90deg, var(--gold) 84%, var(--line) 84%);
}

.section {
  padding: 68px 6vw;
}

.section-light {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section h2,
.section-head h2,
.cta-band h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

.feature-grid,
.module-grid,
.contact-layout,
.news-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.module-grid article,
.contact-card,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
}

.feature-card h3,
.module-grid h3,
.contact-card h2,
.timeline h2,
.news-preview h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.feature-card p,
.module-grid p,
.contact-card p,
.timeline p,
.news-preview p,
.content-flow p,
.split-section p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: start;
}

.stat-list,
.check-list,
.fact-panel {
  display: grid;
  gap: 14px;
}

.stat-list div,
.check-list span,
.fact-panel {
  border-left: 4px solid var(--gold);
  background: var(--soft);
  padding: 18px;
  border-radius: 0 8px 8px 0;
}

.stat-list strong,
.fact-panel strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.stat-list span,
.fact-panel span {
  color: var(--muted);
}

.news-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.news-preview article {
  border-top: 4px solid var(--teal);
  background: var(--paper);
  padding: 22px;
  border-radius: 8px;
}

time {
  color: var(--accent-dark);
  font-weight: 800;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
}

.page-title {
  padding: 58px 6vw 36px;
  background: linear-gradient(180deg, var(--soft), var(--paper));
}

.content-flow {
  max-width: 940px;
}

.content-flow h2 {
  margin-top: 0;
}

.module-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.cta-band {
  margin: 0 6vw 68px;
  padding: 34px;
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--accent-dark), var(--teal));
}

.cta-band p {
  max-width: 760px;
}

.cta-band .button.primary {
  background: var(--paper);
  color: var(--accent-dark);
}

.timeline {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.timeline article {
  border-left: 4px solid var(--accent);
}

.contact-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.request-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-actions .button {
  width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 6vw;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer strong span {
  color: inherit;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    padding: 14px 20px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    padding-top: 12px;
  }

  .main-nav.is-open {
    display: grid;
  }

  .hero,
  .split-section,
  .request-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .module-grid,
  .contact-layout,
  .news-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand-text {
    white-space: normal;
  }

  .hero,
  .section,
  .page-title {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    gap: 22px;
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .hero h1,
  .page-title h1 {
    font-size: 32px;
  }

  .lead,
  .page-title p,
  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .button {
    min-height: 40px;
    padding: 9px 14px;
  }

  .dashboard-visual {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .dashboard-top {
    min-height: 42px;
    padding: 0 16px;
  }

  .dashboard-cards {
    gap: 8px;
    padding: 14px;
  }

  .dashboard-cards div {
    padding: 10px;
  }

  .dashboard-cards span {
    font-size: 11px;
  }

  .dashboard-cards strong {
    font-size: 22px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 14px 14px;
    padding: 12px;
  }

  .chart-lines,
  .progress-list {
    min-height: 58px;
  }

  .feature-grid,
  .module-grid,
  .contact-layout,
  .news-preview {
    grid-template-columns: 1fr;
  }

  .cta-band {
    margin-left: 20px;
    margin-right: 20px;
    padding: 24px;
  }

  .site-footer {
    display: grid;
  }
}
