
:root {
  --ink: #071a2f;
  --navy: #0b2745;
  --blue: #115b9b;
  --cyan: #1ea7d8;
  --orange: #f39224;
  --gold: #ffb547;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --soft-2: #eaf1f8;
  --text: #172635;
  --muted: #637487;
  --border: #d7e2ee;
  --shadow: 0 22px 70px rgba(7, 26, 47, 0.17);
  --shadow-sm: 0 12px 32px rgba(7, 26, 47, 0.10);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.62;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 999;
  background: var(--orange);
  color: #111;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900;
}
.skip-link:focus { top: 16px; }

.topbar {
  background: var(--ink);
  color: #d8e7f4;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner,
.nav-inner,
.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar strong { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 25px rgba(7,26,47,0.06);
}
.nav-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: 1.45rem;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: -4px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  box-shadow: 0 12px 30px rgba(17,91,155,0.28);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  width: 34px;
  height: 140%;
  background: rgba(255,255,255,0.16);
  transform: rotate(25deg);
  right: -16px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
}
nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 850;
  font-size: 0.96rem;
}
nav a:hover,
nav a:focus,
nav a.active {
  background: var(--soft-2);
  color: var(--blue);
  outline: none;
}
.nav-cta {
  background: var(--orange) !important;
  color: #111 !important;
  padding-inline: 18px;
  box-shadow: 0 10px 24px rgba(243,146,36,0.28);
}
.menu-button {
  display: none;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 21px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus { outline: 4px solid rgba(243,146,36,0.34); outline-offset: 3px; }
.btn-primary { background: var(--orange); color: #111; box-shadow: 0 16px 32px rgba(243,146,36,0.30); }
.btn-secondary { background: var(--ink); color: white; box-shadow: 0 16px 32px rgba(7,26,47,0.22); }
.btn-white { background: white; color: var(--ink); }
.btn-ghost { color: white; border: 2px solid rgba(255,255,255,0.72); }

.hero {
  color: white;
  background:
    linear-gradient(100deg, rgba(7,26,47,0.96) 0%, rgba(7,26,47,0.84) 45%, rgba(7,26,47,0.32) 100%),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1900&q=85') center/cover;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -8% -120px auto;
  width: 42%;
  height: 260px;
  background: var(--orange);
  transform: skewX(-22deg);
  opacity: .95;
}
.hero .section-inner {
  min-height: 720px;
  display: grid;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 84px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: end;
}
.eyebrow {
  color: var(--orange);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.83rem;
  margin: 0 0 14px;
}
h1, h2, h3 { color: var(--ink); line-height: 1.12; margin: 0 0 18px; }
h1 { font-size: clamp(2.5rem, 6.2vw, 5.8rem); letter-spacing: -0.07em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.045em; }
h3 { font-size: 1.28rem; letter-spacing: -0.02em; }
.hero h1, .hero h2 { color: white; }
.hero p { max-width: 740px; color: #e8f1f8; font-size: 1.22rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

.quote-panel {
  background: rgba(255,255,255,0.94);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.quote-panel h2 { color: var(--ink); font-size: 1.35rem; margin-bottom: 10px; }
.quote-panel p { color: var(--muted); font-size: .98rem; }
.mini-form { display: grid; gap: 10px; margin-top: 16px; }

.section { padding: 92px 0; }
.section.alt { background: var(--soft); }
.section.dark { background: var(--ink); color: white; }
.section.dark h2, .section.dark h3 { color: white; }
.section.dark p { color: #c7d8e8; }
.section-title { max-width: 840px; margin-bottom: 42px; }
.section-title.center { text-align: center; margin-inline: auto; }
.section-title p { color: var(--muted); font-size: 1.08rem; }

.stats-wrap { margin-top: -70px; position: relative; z-index: 3; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.stat strong {
  display: block;
  color: var(--blue);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.stat span { color: var(--muted); font-weight: 850; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.card.lift:hover { transform: translateY(-5px); box-shadow: var(--shadow); transition: .22s ease; }
.card-image { padding: 0; }
.card-image img { height: 235px; width: 100%; object-fit: cover; }
.card-image .card-body { padding: 28px; }
.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--soft-2), #fff);
  color: var(--blue);
  font-size: 1.7rem;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.photo-stack { position: relative; }
.photo-stack img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  min-height: 440px;
  width: 100%;
  object-fit: cover;
}
.photo-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--orange);
  color: #111;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  max-width: 240px;
  font-weight: 900;
}
.checklist { list-style: none; padding: 0; margin: 24px 0; }
.checklist li { position: relative; padding-left: 36px; margin: 12px 0; color: inherit; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(243,146,36,0.16);
  color: var(--orange);
  font-weight: 950;
  font-size: .9rem;
}

.process { counter-reset: step; }
.process-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  color: var(--orange);
  font-weight: 950;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 18px;
}

.industry {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
  border-radius: 26px;
  padding: 28px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.industry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,26,47,0.06), rgba(7,26,47,0.88));
}
.industry > * { position: relative; z-index: 1; }
.industry h3 { color: white; margin-bottom: 8px; }
.industry p { margin: 0; color: #dceaf5; }

.page-hero {
  color: white;
  background:
    linear-gradient(100deg, rgba(7,26,47,.96), rgba(17,91,155,.80)),
    url('https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=1800&q=85') center/cover;
  padding: 96px 0;
}
.page-hero h1 { color: white; font-size: clamp(2.4rem, 5vw, 4.6rem); letter-spacing: -0.06em; }
.page-hero p { color: #e8f1f8; max-width: 780px; font-size: 1.16rem; }

.cta {
  background:
    linear-gradient(100deg, rgba(7,26,47,.96), rgba(7,26,47,.78)),
    url('https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?auto=format&fit=crop&w=1700&q=85') center/cover;
  color: white;
  border-radius: 34px;
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow);
}
.cta h2 { color: white; }
.cta p { color: #dceaf5; max-width: 720px; }

form { display: grid; gap: 16px; }
label { font-weight: 900; color: var(--ink); }
input, textarea, select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 12px 14px;
  font: inherit;
  background: white;
}
textarea { min-height: 145px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 4px solid rgba(17,91,155,0.16);
  border-color: var(--blue);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-card {
  background: linear-gradient(160deg, var(--ink), var(--blue));
  color: white;
  border: 0;
}
.contact-card h2, .contact-card h3, .contact-card label { color: white; }
.contact-card p, .contact-card a { color: #e8f1f8; }
.contact-card .checklist li::before { background: rgba(255,255,255,0.14); color: var(--gold); }

.site-footer {
  background: #061423;
  color: white;
  padding: 66px 0 24px;
}
.site-footer h2, .site-footer h3 { color: white; }
.site-footer p { color: #bdcddd; }
.site-footer a { color: #dceaf5; text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1fr;
  gap: 34px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 38px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #aebfd0;
}

@media (max-width: 980px) {
  .menu-button { display: inline-flex; }
  nav {
    position: absolute;
    top: 128px;
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
    display: none;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: stretch; }
  nav a { width: 100%; }
  .hero-grid, .split, .split.reverse, .grid-2, .grid-3, .grid-4, .stats, .footer-grid, .cta, .form-row { grid-template-columns: 1fr; }
  .hero .section-inner { min-height: auto; }
  .quote-panel { max-width: 520px; }
  .stats-wrap { margin-top: 24px; }
  .photo-badge { left: 18px; }
}

@media (max-width: 560px) {
  .topbar-inner, .nav-inner, .section-inner { width: min(var(--max), calc(100% - 28px)); }
  .brand { font-size: 1.12rem; }
  .brand-mark { width: 46px; height: 46px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .section { padding: 68px 0; }
  .cta { padding: 32px; }
}
