:root {
  --navy: #062d46;
  --navy-2: #0a3b59;
  --blue: #0877b7;
  --water: #0aa7d7;
  --cyan: #28d1df;
  --aqua: #baf5f7;
  --ice: #eefbfc;
  --white: #ffffff;
  --text: #153547;
  --muted: #667d89;
  --line: #d7e8ed;
  --surface: #f6fbfc;
  --shadow: 0 22px 60px rgba(2, 45, 70, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

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

button,
input {
  font: inherit;
}

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

.section {
  padding: 105px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--water);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
}

h2 {
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  letter-spacing: -0.045em;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--water);
  transform: translateY(-2px);
}

.section-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-head > p {
  color: var(--muted);
  max-width: 520px;
}

.section-head.compact {
  grid-template-columns: 1fr;
}

@media (max-width: 900px) {
  .section {
    padding: 78px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

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

  .section {
    padding: 64px 0;
  }
}
