@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #1f3a5f;
  --navy-2: #15304e;
  --teal: #2f7d7a;
  --teal-2: #255f5d;
  --ink: #1f2d37;
  --muted: #5d6976;
  --bg: #ffffff;
  --panel: #f4f7fa;
  --card: #ffffff;
  --line: #dfe6ef;
  --good: #166534;
  --bad: #b91c1c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -8%, #e8f1ff 0, rgba(232, 241, 255, 0) 36%),
    radial-gradient(circle at 96% 5%, #e4f5f0 0, rgba(228, 245, 240, 0) 34%),
    var(--bg);
  line-height: 1.62;
}

a {
  text-decoration: none;
  color: var(--teal);
}

.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.92);
}

.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
}

.brand img {
  display: block;
  height: 50px;
  width: auto;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 8px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  background: #edf4f5;
  color: var(--teal-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 20px;
  cursor: pointer;
  transition: all 180ms ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal) 0%, #2b6f97 100%);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 20px rgba(43, 111, 151, 0.24);
}

.btn[aria-busy='true'] {
  cursor: wait;
}

.btn[aria-busy='true']::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-spin 0.8s linear infinite;
}

@keyframes button-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 48%, #0d2640 100%);
  padding: 86px 0 92px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -160px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 183, 177, 0.4) 0%, rgba(67, 183, 177, 0) 66%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #96d7d0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 16px;
  max-width: 880px;
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero .sub {
  margin: 0;
  max-width: 860px;
  color: #d8e5f2;
  font-size: 20px;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

section {
  padding: 72px 0;
}

.section-soft {
  background: var(--panel);
  border-top: 1px solid #e9edf3;
  border-bottom: 1px solid #e9edf3;
}

.kicker {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 30px;
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
}

.icon-dot {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-2);
  background: #e2f1f1;
  font-size: 19px;
}

.feature-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 22px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--teal);
}

.pill {
  display: inline-block;
  margin: 4px 8px 4px 0;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #115e59;
  background: #dcf2f0;
}

.statement {
  margin-top: 16px;
  border-left: 4px solid var(--teal);
  background: #e9f6f5;
  padding: 14px 16px;
  border-radius: 7px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 24px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  margin: 12px 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #8fd5d2;
  outline-offset: 1px;
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.form-status.good {
  color: var(--good);
}

.form-status.bad {
  color: var(--bad);
}

footer {
  background: var(--navy);
  color: #d2deea;
  padding: 40px 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
}

footer .brand {
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d2deea;
  font-size: 14px;
}

.footer-small {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #b8c8d8;
  font-size: 13px;
}

.reveal-up {
  animation: reveal-up 460ms ease both;
}

.stagger-1 {
  animation-delay: 80ms;
}

.stagger-2 {
  animation-delay: 140ms;
}

.stagger-3 {
  animation-delay: 200ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  .brand img {
    height: 40px;
  }

  .nav-links a:not(.btn) {
    display: none;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 76px;
  }

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

  .hero .sub {
    font-size: 18px;
  }

  h2 {
    font-size: 29px;
  }

  .cols-2,
  .cols-3,
  .cols-4,
  .field-grid {
    grid-template-columns: 1fr;
  }
}
