:root {
  --navy: #0a2038;
  --navy-dark: #061421;
  --blue: #123c5e;
  --teal: #00a58e;
  --teal-dark: #007e6d;
  --teal-soft: #def5f0;
  --ink: #17283b;
  --muted: #5e6d7e;
  --line: #dfe7ee;
  --soft: #f4f7fa;
  --white: #fff;
  --max: 1160px;
  --shadow: 0 22px 65px rgba(6, 20, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.topbar {
  padding-block: 8px;
  background: var(--navy-dark);
  color: #c4d2de;
  font-size: 0.77rem;
  letter-spacing: 0.04em;
}

.topbar .container,
.nav,
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(223, 231, 238, 0.85);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--teal), #0bd5b6);
  box-shadow: 0 9px 24px rgba(0, 165, 142, 0.24);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal-dark);
}

.button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(0, 165, 142, 0.22);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--teal-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(0, 165, 142, 0.3), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(247, 186, 80, 0.14), transparent 24%),
    linear-gradient(135deg, var(--navy-dark), var(--blue));
  color: #fff;
}

.hero::after {
  position: absolute;
  right: -150px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(255, 255, 255, 0.025),
    0 0 0 130px rgba(255, 255, 255, 0.018);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 590px;
  align-items: center;
  grid-template-columns: minmax(0, 1.17fr) minmax(300px, 0.83fr);
  gap: 76px;
  padding-block: 88px;
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: #75ebd9;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.65rem, 5.8vw, 5.15rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 650px;
  margin: 25px 0 32px;
  color: #c7d5e2;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

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

.hero-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card strong {
  display: block;
  margin-bottom: 11px;
  font-size: 1.2rem;
}

.hero-card p {
  margin: 0;
  color: #c9d6e2;
}

.hero-card .legal {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding-block: 92px;
}

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

.heading {
  max-width: 750px;
  margin-bottom: 46px;
}

.kicker {
  color: var(--teal-dark);
}

.heading h2,
.privacy-card h1,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-grid,
.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 60px;
}

.about-copy p {
  margin: 0 0 18px;
  color: #46576a;
  font-size: 1.03rem;
}

.mission {
  padding: 31px;
  border: 1px solid #c8ebe4;
  border-radius: 21px;
  background: var(--teal-soft);
}

.mission span {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mission p {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.5;
}

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

.service {
  min-height: 213px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(6, 20, 33, 0.05);
}

.service span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 850;
}

.service h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 1.06rem;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.company {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #fff;
  box-shadow: var(--shadow);
}

.company-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 29px;
  background: var(--navy);
  color: #fff;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(117, 235, 217, 0.13);
  color: #a1f3e6;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #75ebd9;
  content: "";
}

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

.data {
  min-width: 0;
  padding: 21px 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.data:nth-child(2n) {
  border-right: 0;
}

.data.full {
  grid-column: 1 / -1;
  border-right: 0;
}

.data span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.data strong,
.data address {
  display: block;
  overflow-wrap: anywhere;
  font-size: 0.93rem;
  font-style: normal;
}

.contact {
  background: var(--navy-dark);
  color: #fff;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact h2 {
  color: #fff;
}

.contact .kicker {
  color: #75ebd9;
}

.contact-copy {
  color: #b9c8d6;
}

.contact-list {
  display: grid;
  gap: 13px;
}

.contact-item {
  display: block;
  padding: 19px 21px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  color: #82eadb;
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  font-size: 0.96rem;
}

.site-footer {
  padding-block: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--navy-dark);
  color: #9dadbc;
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

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

.footer-links a:hover {
  color: #fff;
}

.privacy-main {
  min-height: 70vh;
  padding-block: 68px 95px;
  background: var(--soft);
}

.privacy-card {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(27px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(6, 20, 33, 0.08);
}

.privacy-card h1 {
  margin-bottom: 14px;
}

.privacy-card .updated {
  margin-bottom: 39px;
  color: var(--muted);
}

.privacy-card h2 {
  margin: 32px 0 9px;
  color: var(--navy);
  font-size: 1.16rem;
}

.privacy-card p {
  color: #516174;
}

.privacy-card a {
  color: var(--teal-dark);
}

.back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 42px;
    padding-block: 72px;
  }

  .hero-card {
    max-width: 580px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar .container {
    justify-content: center;
  }

  .topbar span:last-child {
    display: none;
  }

  .nav {
    min-height: 65px;
  }

  .nav-links .button {
    min-height: 40px;
    padding: 8px 13px;
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(2.42rem, 13vw, 3.65rem);
  }

  .hero-grid {
    padding-block: 60px;
  }

  .section {
    padding-block: 70px;
  }

  .services,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .data,
  .data:nth-child(2n) {
    border-right: 0;
  }

  .data.full {
    grid-column: auto;
  }

  .company-head,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-main {
    padding-block: 38px 68px;
  }
}
