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

:root {
  --blue-dark: #10243E;
  --blue-dark-2: #142B47;
  --blue-cta: #38BDF8;
  --blue-cta-hover: #0EA5E9;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --gray-100: #E5E7EB;
  --gray-500: #6B7280;
  --text: #111827;
  --radius-xl: 28px;
  --shadow-soft: 0 24px 70px rgba(16, 36, 62, 0.12);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img, video { max-width: 100%; display: block; }

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

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

.section {
  padding: 96px 0;
  background: var(--white);
}

.section--light { background: var(--bg); }

.section__heading {
  max-width: 680px;
  margin-bottom: 36px;
}

.eyebrow {
  display: inline-flex;
  color: var(--blue-cta-hover);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

h1, h2, h3 {
  color: var(--blue-dark);
  line-height: 1.1;
}

h2 { font-size: clamp(2rem, 4vw, 3rem); }

p { color: var(--gray-500); }

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

.btn--primary {
  background: var(--blue-cta);
  color: var(--blue-dark);
}

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

.btn--secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.45);
}

.btn--secondary:hover {
  background: rgba(255,255,255,.12);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.card h3 { margin-bottom: 10px; font-size: 1.2rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.image-placeholder img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .cards-grid, .split { grid-template-columns: 1fr; }
}
