:root {
  --navy: #0e2a47;
  --navy-2: #143b5f;
  --ink: #142334;
  --muted: #5c6d7a;
  --line: #dbe6ec;
  --paper: #f8fbfc;
  --white: #ffffff;
  --accent: #e58a1f;
  --accent-dark: #a55410;
  --sea: #2b7a8a;
  --shadow: 0 18px 50px rgba(14, 42, 71, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 230, 236, 0.88);
  background: rgba(248, 251, 252, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
}

.wordmark {
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  border-radius: 999px;
  color: #274154;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 10px 13px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #e9f1f5;
  color: var(--navy);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 22%, rgba(229, 138, 31, 0.38) 0 12%, transparent 28%),
    linear-gradient(135deg, #0a2039 0%, var(--navy) 46%, #184f63 100%);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: -1;
  width: 150vw;
  min-width: 900px;
  height: 280px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero::before {
  bottom: -152px;
  background: rgba(248, 251, 252, 0.2);
}

.hero::after {
  bottom: -190px;
  background: var(--paper);
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 116px 0 172px;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.16rem, 2.4vw, 1.55rem);
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  padding: 13px 18px;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: #101820;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f0a13d;
  outline: none;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.section {
  padding: 92px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-light {
  background:
    linear-gradient(180deg, var(--paper) 0%, #eef6f8 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.service-card {
  position: relative;
  min-height: 138px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(43, 122, 138, 0.12), transparent 55%),
    linear-gradient(90deg, var(--accent) 0 5px, transparent 5px);
  pointer-events: none;
}

.service-card h3 {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 138px;
  margin: 0;
  color: var(--navy);
  font-size: 1.32rem;
  letter-spacing: 0;
  line-height: 1.1;
  padding: 22px;
}

.section-deep {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.section-deep::after {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: -170px;
  width: 70vw;
  height: 340px;
  border-radius: 50%;
  background: rgba(43, 122, 138, 0.28);
}

.section-deep .section-inner {
  position: relative;
  z-index: 1;
}

.section-deep .section-heading h2 {
  color: var(--white);
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 900px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.brand-list li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  padding: 12px 16px;
}

.section-contact {
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f7f9 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 20px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  font-style: normal;
  padding: clamp(24px, 4vw, 34px);
}

.contact-card div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8f0f4;
}

.contact-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: var(--navy);
  font-size: 1.16rem;
  font-weight: 750;
}

.contact-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-card a {
  color: var(--accent-dark);
}

.footer {
  background: #071827;
  color: rgba(255, 255, 255, 0.76);
  padding: 28px 16px;
  text-align: center;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
  }

  .nav-links {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-links a {
    padding: 9px 11px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-inner {
    padding: 82px 0 142px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  html {
    scroll-padding-top: 128px;
  }

  .nav {
    width: min(100% - 24px, 1120px);
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-links a {
    border: 1px solid var(--line);
    background: var(--white);
    text-align: center;
  }

  .hero {
    min-height: 520px;
  }

  .hero::before,
  .hero::after {
    min-width: 640px;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 24px, 1120px);
  }

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

  .section {
    padding: 68px 0;
  }

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

  .service-card,
  .service-card h3 {
    min-height: 104px;
  }

  .brand-list {
    gap: 9px;
  }

  .brand-list li {
    padding: 10px 13px;
  }
}

.service-icon {
  position: relative;
  display: block;
  padding: 22px 22px 0;
  color: var(--accent);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  min-height: 0;
  align-items: flex-start;
  padding-top: 12px;
}
