:root {
  color-scheme: light;
  --ink: #1e293b;
  --muted: #5f6f86;
  --navy: #284380;
  --blue: #0878b8;
  --cyan: #11a9cf;
  --red: #e5242a;
  --paper: #ffffff;
  --mist: #f4f8fb;
  --line: #dbe5ef;
  --shadow: 0 24px 60px rgba(21, 47, 84, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--blue);
}

.hero {
  min-height: calc(100vh - 81px);
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(36px, 6vw, 86px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 248, 251, 0.86) 58%, rgba(214, 238, 247, 0.74) 100%),
    repeating-linear-gradient(135deg, rgba(40, 67, 128, 0.08) 0 2px, transparent 2px 18px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
}

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(229, 36, 42, 0.25);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

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

.hero-panel {
  justify-self: stretch;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-logo {
  width: min(46vw, 190px);
  height: auto;
}

.hero-panel h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-panel p {
  color: var(--muted);
  font-weight: 700;
}

.hero-panel .company-full-name {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.contact-lines a {
  color: var(--blue);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  text-decoration: none;
}

.section {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: var(--paper);
}

.intro h2,
.section-heading h2,
.work-content h2,
.contact-copy h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.intro p:last-child,
.contact-copy p {
  color: var(--muted);
  font-size: 19px;
}

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

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

.service-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--cyan);
  font-weight: 800;
}

.service-grid h3 {
  color: var(--navy);
  font-size: 22px;
}

.service-grid p,
.steps p,
dd {
  color: var(--muted);
}

.work-band {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(40, 67, 128, 0.94), rgba(8, 120, 184, 0.9)),
    linear-gradient(135deg, #284380, #0878b8);
  color: #fff;
}

.work-content {
  max-width: 1050px;
}

.work-content .eyebrow,
.work-content h2,
.work-content p {
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.steps p {
  min-height: 120px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: var(--mist);
}

.contact-box {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(21, 47, 84, 0.08);
}

dl {
  display: grid;
  gap: 18px;
  margin: 0 0 26px;
}

dl div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
}

dt {
  color: var(--navy);
  font-weight: 800;
}

dd {
  margin: 0;
}

dd a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.wide {
  width: 100%;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #17233f;
}

footer p {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 560px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 40px;
  }

  .hero-panel h2 {
    font-size: 62px;
  }

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

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

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
