﻿:root {
  --bg: #f3f7fa;
  --surface: #ffffff;
  --ink: #102231;
  --muted: #5d7284;
  --brand: #0c8b7b;
  --brand-2: #1f5f9b;
  --stroke: #d7e1e8;
  --shadow: 0 14px 30px rgba(16, 34, 49, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 0%, #cae9e3 0%, transparent 30%),
    radial-gradient(circle at 90% 10%, #d6e6f8 0%, transparent 30%),
    var(--bg);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(243, 247, 250, 0.9);
  border-bottom: 1px solid var(--stroke);
}

.nav-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
}

.main-nav {
  display: flex;
  gap: 1.1rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: #087568;
}

.btn-outline {
  background: #fff;
  border-color: var(--stroke);
}

.hero {
  padding: 4.8rem 0 3.3rem;
}

.hero-content {
  background: linear-gradient(130deg, #102231 0%, #1f3d57 55%, #0c8b7b 100%);
  color: #fff;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  padding: min(8vw, 4rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.8rem;
}

.hero p {
  max-width: 760px;
}

.hero-actions {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.section {
  padding: 1rem 0 4rem;
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-head p {
  color: var(--muted);
  margin-top: 0.35rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(16, 34, 49, 0.06);
}

.card h3,
.card h4 {
  margin-bottom: 0.35rem;
}

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

.kpi {
  font-size: 1.8rem;
  font-weight: 700;
}

.page-hero {
  padding: 3.2rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.page-hero p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.page-content {
  padding: 0.4rem 0 3.5rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.narrow {
  width: min(620px, 100%);
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--stroke);
  background: #fff;
  border-radius: 0.65rem;
  padding: 0.62rem 0.75rem;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  text-align: left;
  padding: 0.7rem;
  border-bottom: 1px solid var(--stroke);
}

.action-row {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--stroke);
  background: #fbfdfe;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 1.8rem 0;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 0.2rem 0;
}

.footer-grid h4,
.footer-grid h5 {
  margin-bottom: 0.4rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }
}
