/* =========
   RESET
========= */

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

/* =========
   VARIABLES
========= */

:root {

  --primary: #12344d;
  --primary-dark: #0d2536;

  --light: #ffffff;
  --soft: #f3f6f8;
  --accent: #dfe8ee;
  --neutral: #eef2f4;

  --text: #17202a;
  --muted: #5f6c76;

  --max-width: 1200px;
  --content-width: 760px;

  --radius: 16px;
}

/* =========
   GLOBAL
========= */

body {
  font-family: Arial, sans-serif;
  background: var(--soft);
  color: var(--text);
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;

  padding-left: 24px;
  padding-right: 24px;
}

.narrow {
  max-width: var(--content-width);
}

.center {
  text-align: center;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

h1 {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 24px;
}

h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  margin-bottom: 12px;
}

p {
  margin-bottom: 24px;
}

a {
  text-decoration: none;
}

/* =========
   NAV
========= */

.nav {
  margin-bottom: 80px;
}

.nav a {
  color: rgba(255,255,255,0.8);

  margin-right: 24px;

  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav a:hover {
  color: white;
}

/* =========
   HERO
========= */

.hero {
  background: linear-gradient(
    135deg,
    #12344d,
    #1f567d
  );

  color: white;

  padding-top: 48px;
  padding-bottom: 120px;
}

.hero-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.hero-left,
.hero-right {
  flex: 1;
}

.eyebrow,
.section-label {
  font-size: 13px;
  font-weight: bold;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.hero-text {
  font-size: 24px;

  color: rgba(255,255,255,0.85);

  max-width: 700px;
}

.hero-buttons {
  margin-top: 40px;
}

.button-primary,
.button-secondary {
  display: inline-block;

  padding: 14px 24px;

  border-radius: 999px;

  margin-right: 16px;
}

.button-primary {
  background: white;
  color: var(--primary-dark);
}

.button-secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.stat-card {
  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.15);

  border-radius: var(--radius);

  padding: 32px;

  margin-bottom: 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;

  margin-bottom: 12px;
}

/* =========
   SECTIONS
========= */

.light-section {
  background: white;
}

.dark-section {
  background: var(--primary-dark);
  color: white;
}

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

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

.contact-section {
  background: white;
}

.light-text {
  color: rgba(255,255,255,0.7);
}

/* =========
   LAYOUT
========= */

.two-column {
  display: flex;
  gap: 80px;
}

.two-column > div {
  flex: 1;
}

.card-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;

  margin-top: 50px;
}

.card {
  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: var(--radius);

  padding: 32px;
}

/* =========
   PROCESS
========= */

.process-item {
  display: flex;

  gap: 24px;

  margin-bottom: 40px;
}

.process-number {
  font-size: 32px;
  font-weight: bold;

  color: var(--primary);

  min-width: 60px;
}

/* =========
   BLOCKQUOTE
========= */

blockquote {
  border-left: 4px solid var(--primary);

  padding-left: 24px;

  margin-top: 32px;

  font-size: 24px;
}

/* =========
   CONTACT
========= */

.email-link {
  display: inline-block;

  margin-top: 16px;

  font-size: 32px;
  font-weight: bold;

  color: var(--primary);
}

/* =========
   FOOTER
========= */

.footer {
  background: #0d2536;

  color: rgba(255,255,255,0.75);

  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-content {
  display: flex;
  gap: 60px;
}

.footer-content > div {
  flex: 1;
}

/* =========
   MOBILE
========= */

@media (max-width: 900px) {

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-content,
  .two-column,
  .footer-content {
    flex-direction: column;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .nav a {
    display: inline-block;
    margin-bottom: 12px;
  }

  .button-primary,
  .button-secondary {
    display: block;
    margin-bottom: 16px;
    width: fit-content;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 20px;
  }

  .email-link {
    font-size: 24px;
  }
}