:root {
  --navy: #061d3b;
  --blue: #126fbd;
  --teal: #0a9aa1;
  --gold: #c99112;
  --ink: #10213e;
  --muted: #64748b;
  --light: #f6f9fc;
  --white: #ffffff;
  --line: #dbe6f1;
  --shadow: 0 18px 60px rgba(6, 29, 59, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 20px; font-size: 0.95rem; }
nav a { text-decoration: none; color: var(--navy); font-weight: 700; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--teal); border-radius: 999px; color: var(--teal); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 70px);
  background:
    radial-gradient(circle at 85% 18%, rgba(10,154,161,0.18), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.82rem;
}
h1, h2, h3 { margin: 0; line-height: 1.1; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 5rem); letter-spacing: -0.06em; max-width: 950px; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -0.04em; }
h3 { font-size: 1.12rem; margin-bottom: 10px; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.35rem); max-width: 760px; color: #243651; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.primary { background: linear-gradient(135deg, var(--teal), var(--blue)); color: var(--white); box-shadow: var(--shadow); }
.secondary { color: var(--navy); border: 1px solid var(--line); background: var(--white); }
.full { width: 100%; margin-top: 20px; }
.hero-card {
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  text-align: center;
}
.hero-card img { width: min(100%, 360px); display: block; margin: 0 auto 18px; }
.hero-card p { font-weight: 800; color: var(--navy); font-size: 1.2rem; }
.hero-card .location { color: var(--teal); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin: 18px 0 8px; }
.hero-card a { color: var(--blue); font-weight: 700; word-break: break-word; }

section { padding: clamp(50px, 6vw, 90px) clamp(20px, 4vw, 70px); }
.section-heading { max-width: 820px; margin: 0 auto 38px; text-align: center; }
.section-heading.compact { margin-bottom: 24px; }
.section-heading p { color: var(--muted); }
.infographic-section { background: #fff; padding-top: 36px; }
.infographic {
  display: block;
  width: min(100%, 1280px);
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 6vw, 80px);
  background: var(--light);
}
.content-text p:first-child { margin-top: 0; }
.content-text p { font-size: 1.05rem; color: #31435d; }
.section-block { background: var(--white); }
.section-block.alt { background: var(--light); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(6, 29, 59, 0.07);
}
.service-card p { color: var(--muted); margin-bottom: 0; }
.icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(10,154,161,0.12);
  color: var(--teal);
  font-weight: 900;
  margin-bottom: 18px;
}
.dark-section {
  background: radial-gradient(circle at 80% 10%, rgba(10,154,161,0.25), transparent 35%), linear-gradient(135deg, #061d3b, #020b18);
  color: var(--white);
}
.dark-section h2, .dark-section .eyebrow { color: var(--white); }
.dark-section .section-heading p { color: #c9d7e8; }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.18);
  border-radius: 24px;
  overflow: hidden;
}
.stack-grid div { padding: 26px; background: rgba(255,255,255,0.06); }
.stack-grid strong { display: block; color: #fff; margin-bottom: 8px; }
.stack-grid span { display: block; color: #d6e3f2; }
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.industry-list span {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  color: var(--navy);
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 34px;
  align-items: center;
  background: #fff;
}
.contact-section p { color: var(--muted); max-width: 720px; }
.contact-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--light);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-card span, .contact-card a { display: block; margin-top: 8px; }
.contact-card a:not(.button) { color: var(--blue); font-weight: 700; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 4vw, 70px);
  background: var(--navy);
  color: #d7e7f7;
  font-size: 0.92rem;
}
@media (max-width: 920px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero, .split-section, .contact-section { grid-template-columns: 1fr; }
  .card-grid, .stack-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .brand span { display: none; }
  nav { gap: 14px; font-size: 0.88rem; }
  .card-grid, .stack-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 24px; }
  footer { flex-direction: column; }
}
