
:root {
  --navy: #081a33;
  --blue: #1d5fbf;
  --blue-soft: #eaf2ff;
  --slate: #526172;
  --grey-blue: #eef3f8;
  --line: #dbe4ee;
  --white: #ffffff;
  --shadow: 0 16px 45px rgba(8, 26, 51, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.navbar {
  height: 78px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 23px;
  font-weight: 800;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 10px;
  background: var(--blue);
  color: white;
  font-weight: 700;
  border: 1px solid var(--blue);
}

.btn.secondary {
  background: transparent;
  color: var(--navy);
  border-color: #b8c5d6;
}

.hero {
  padding: 86px 7% 70px;
  background: linear-gradient(135deg, #f7faff 0%, #edf4fb 100%);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--blue);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.08;
  margin: 0 0 22px;
  letter-spacing: -1.5px;
}

.hero p {
  font-size: 19px;
  color: var(--slate);
  max-width: 620px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dashboard-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.window-dot {
  width: 10px;
  height: 10px;
  background: #c7d3e2;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.mock-title { font-weight: 800; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.stat {
  background: var(--grey-blue);
  border-radius: 16px;
  padding: 16px;
}

.stat strong {
  display: block;
  font-size: 26px;
}

.stat span {
  color: var(--slate);
  font-size: 13px;
}

.table {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.row:last-child { border-bottom: 0; }

.status {
  color: #0b7a4b;
  font-weight: 800;
}

.section {
  padding: 76px 7%;
}

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

.section-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header h2 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.8px;
}

.section-header p {
  color: var(--slate);
  margin: 0;
  font-size: 17px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(8, 26, 51, 0.04);
}

.icon {
  width: 44px;
  height: 44px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p, .card li {
  color: var(--slate);
  margin: 0;
}

.simple-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.simple-list div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  font-weight: 800;
}

.steps {
  max-width: 850px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.step:last-child { border-bottom: 0; }

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 6px;
}

.step p {
  margin: 0;
  color: var(--slate);
}

.about-wrap {
  max-width: 950px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 42px;
}

.about-wrap p {
  color: var(--slate);
  font-size: 18px;
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  max-width: 1050px;
  margin: 0 auto;
}

.contact-note {
  background: var(--navy);
  color: white;
  border-radius: 22px;
  padding: 32px;
}

.contact-note p {
  color: #c7d3e2;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}

label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 800;
  font-size: 14px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
}

textarea { min-height: 120px; }

.cta {
  margin: 0 7% 76px;
  padding: 44px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), #163b66);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta h2 { margin: 0 0 6px; }
.cta p { margin: 0; color: #c7d3e2; }
.cta .btn { background: white; color: var(--blue); border-color: white; }

.footer {
  background: var(--navy);
  color: #c7d3e2;
  padding: 26px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 800;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .navbar {
    height: auto;
    padding: 18px 5%;
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 5%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .stats, .grid-3, .grid-4, .simple-list, .form-wrap {
    grid-template-columns: 1fr;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cta, .footer {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 58px 5%;
  }
}
