:root {
  --navy: #062f5f;
  --navy-dark: #021f42;
  --navy-soft: #eef4fb;
  --charcoal: #2f3437;
  --muted: #667085;
  --border: #d9e0e8;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --shadow: 0 24px 70px rgba(2, 31, 66, 0.12);
  --radius: 24px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.section-padding {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 224, 232, 0.75);
}

.nav {
  width: min(100% - 40px, var(--max-width));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 248px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #344054;
}

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

.nav-links a:hover {
  color: var(--navy);
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 10%, rgba(6, 47, 95, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: var(--navy-dark);
  font-size: clamp(2.65rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 22px;
  color: var(--navy-dark);
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy-dark);
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-text,
.section-heading p,
.copy-block p,
.contact-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(6, 47, 95, 0.24);
}

.button.primary:hover {
  background: var(--navy-dark);
}

.button.secondary {
  color: var(--navy-dark);
  background: #ffffff;
  border: 1px solid var(--border);
}

.button.full {
  width: 100%;
}

.hero-card {
  position: relative;
  padding: 44px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 12px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -120px -150px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(6, 47, 95, 0.08);
}

.hero-card img {
  position: relative;
  width: 100%;
  margin-bottom: 28px;
}

.card-line {
  position: relative;
  width: 72px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--navy);
}

.hero-card p {
  position: relative;
  margin-bottom: 0;
  color: #475467;
  font-size: 1.05rem;
  font-weight: 600;
}

.light {
  background: var(--surface-soft);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.info-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(2, 31, 66, 0.05);
}

.card-number {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.navy-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 47, 95, 0.96), rgba(2, 31, 66, 1)),
    var(--navy-dark);
}

.invert h2,
.invert .section-kicker,
.invert p {
  color: #ffffff;
}

.invert p {
  opacity: 0.82;
}

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

.value-item {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.value-item h3 {
  color: #ffffff;
}

.value-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.contact-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(6, 47, 95, 0.08), transparent 30%),
    #ffffff;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 54px;
  align-items: center;
  padding: 50px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 10px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-link {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--navy-dark);
  background: var(--surface-soft);
  text-decoration: none;
  font-weight: 800;
}

.contact-link span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link.static {
  cursor: default;
}

.site-footer {
  padding: 54px 0 28px;
  background: #0f1720;
  color: #ffffff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
}

.site-footer img {
  width: 220px;
  margin-bottom: 18px;
  border-radius: 10px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  text-decoration: none;
}

.footer-info {
  text-align: right;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .two-column,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .hero-card {
    padding: 34px;
  }
}

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

  .nav {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 220px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.85rem;
  }

  .section-padding {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-card,
  .contact-card {
    padding: 26px;
    border-radius: 26px;
  }

  .cards-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-info {
    text-align: left;
  }
}
