:root {
  --navy: #0f2138;
  --navy-soft: #17304d;
  --navy-deep: #0a1626;
  --slate: #3d5772;
  --accent: #d9722b;
  --accent-dark: #b85e20;
  --accent-light: #f2a35c;
  --bg: #ffffff;
  --bg-alt: #f5f6f8;
  --text: #23262b;
  --text-muted: #5a5f68;
  --border: #e3e5e8;
  --radius: 14px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top utility bar */
.topbar {
  background: var(--navy-deep);
  color: #b7c2d0;
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.topbar a:hover { text-decoration: underline; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.logo {
  height: 48px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.site-nav a:hover { color: var(--navy); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-call {
  background: var(--navy);
  color: #fff;
}
.btn-call:hover { background: var(--navy-soft); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 96px 0;
  overflow: hidden;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
}

.hero-glow {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 114, 43, 0.35), transparent 70%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 0 18px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero h1 {
  font-size: 2.7rem;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.hero-sub {
  color: #cfd6e0;
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 0 32px;
}

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

.hero-panel {
  position: relative;
}

.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 8px 28px;
}

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}

.stat-row + .stat-row {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent-light);
}

.stat-label {
  color: #cfd6e0;
  font-size: 0.95rem;
  text-align: right;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 84px 0;
}

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

.kicker {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 800;
  margin: 0 0 10px;
}

h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 40px;
  max-width: 640px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.section-sub-tight {
  margin: 0 0 40px;
  max-width: 320px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 33, 56, 0.08);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(217, 114, 43, 0.12);
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.icon svg { width: 24px; height: 24px; }

.icon-sm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.icon-sm svg { width: 20px; height: 20px; }

/* Statement */
.statement {
  background: var(--bg);
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.statement-word {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
}

.statement-word span {
  color: var(--accent);
}

.statement-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 16px;
}

.statement-link {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}
.statement-link:hover { text-decoration: underline; }

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.industry-card {
  background: var(--slate);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 33, 56, 0.18);
}

.industry-card .icon {
  background: rgba(217, 114, 43, 0.22);
  color: var(--accent-light);
}

.industry-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.industry-card p {
  margin: 0 0 18px;
  color: #dbe2ea;
  font-size: 0.92rem;
  flex: 1;
}

.card-link {
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  opacity: 0.9;
}
.card-link:hover { opacity: 1; text-decoration: underline; }

/* Locations */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  border-top: 3px solid var(--accent);
}

.location-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--navy);
}

.location-address {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.location-tag {
  display: inline-block;
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
}

.team-card {
  text-align: center;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: linear-gradient(155deg, var(--navy), var(--slate));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  margin: 0 auto 16px;
}

.avatar-photo {
  object-fit: cover;
  background: none;
}

.team-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--navy);
}

.team-title {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Contact */
.contact-cta {
  padding-top: 0;
}

.contact-box {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-box h2 {
  color: #fff;
  margin: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  color: #cfd6e0;
}

.contact-list strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.contact-list a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 700;
}
.contact-list a:hover { text-decoration: underline; }

.contact-list-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  flex: 1;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #8996a8;
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .site-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { max-width: 420px; }
  .statement-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; padding: 10px 0; }
  .hero { padding: 64px 0; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 60px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .contact-box { padding: 32px 24px; }
}
