:root {
  --navy: #0b1424;
  --blue: #3767a7;
  --orange: #bd474c;
  --gold: #c8c8c8;
  --light: #f4f6f9;
  --white: #ffffff;
  --text: #172033;
  --muted: #687385;
  --border: #dfe6ef;
  --shadow: 0 24px 70px rgba(6, 24, 50, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 24, 50, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.logo strong {
  display: block;
  line-height: 1;
  font-size: 20px;
}

.logo small {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.68);
  letter-spacing: .7px;
  text-transform: uppercase;
  font-size: 10px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  color: rgba(255,255,255,.8);
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 28px;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,138,0,.26), transparent 25%),
    radial-gradient(circle at 30% 75%, rgba(255,178,69,.14), transparent 28%),
    linear-gradient(135deg, #061832 0%, #0d2c52 55%, #123d6b 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.8px;
  font-size: 18px;
}

.center {
  text-align: center;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: -1.8px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 48px);
  line-height: .94;
}

.hero-text {
  max-width: 720px;
  margin: 26px 0;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}

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

.btn {
  display: inline-block;
  padding: 15px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
}

.hero-panel {
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: rgba(255,255,255,.08);
  border-radius: 44px;
  transform: rotate(-4deg);
}

.dashboard-card {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 990;
}

.dashboard-head strong {
  color: #8ff0bb;
}

.metric {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.82);
}

.metric:last-child {
  border-bottom: none;
}

.metric b {
  color: var(--gold);
}

.stats {
  background: var(--white);
  box-shadow: 0 -20px 70px rgba(6,24,50,.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 42px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stats-grid div:last-child {
  border-right: none;
}

.stats h2 {
  margin: 0;
  font-size: 38px;
  color: var(--blue);
}

.stats p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section h2 {
  font-size: clamp(32px, 4vw, 32px);
  line-height: 1.08;
  color: var(--navy);
}

.about,
.quality,
.locations {
  background: var(--light);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.split p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.service-card {
  padding: 28px;
  min-height: 310px;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 45px rgba(6,24,50,.06);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,138,0,.45);
  box-shadow: var(--shadow);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--light);
  font-size: 24px;
}

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

.service-card p,
.service-card li {
  color: var(--muted);
  line-height: 1.6;
}

.service-card ul {
  padding-left: 18px;
}

.highlight-card {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}

.highlight-card h3,
.highlight-card p,
.highlight-card a {
  color: var(--white);
}

.technology {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}

.technology h2 {
  color: var(--white);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
}

.feature-list b {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-list span {
  color: rgba(255,255,255,.72);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quality-card {
  padding: 36px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 55px rgba(6,24,50,.07);
}

.quality-card h3 {
  font-size: 27px;
  color: var(--navy);
}

.quality-card p {
  line-height: 1.75;
  color: var(--muted);
  font-size: 17px;
}

.leaders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.leader {
  overflow: hidden;
  border-radius: 30px;
  background: var(--light);
  box-shadow: 0 16px 55px rgba(6,24,50,.10);
  border: 1px solid var(--border);
}

.leader.featured {
  border: 1px solid var(--border);
  transform: none;
}

.leader img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.leader div {
  padding: 24px;
  text-align: center;
}

.leader h3 {
  margin: 0;
  font-size: 21px;
  color: var(--navy);
}

.leader p {
  margin: 8px 0 0;
  color: var(--orange);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.35;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 38px;
}

.location-card {
  padding: 34px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 16px 55px rgba(6,24,50,.07);
}

.location-card h3 {
  color: var(--navy);
  margin-top: 0;
}

.location-card p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-details {
  margin-top: 28px;
  padding: 22px;
  border-radius: 22px;
  background: var(--light);
}

.contact-form {
  padding: 30px;
  border-radius: 30px;
  background: var(--light);
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 16px;
  font-family: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button {
  border: none;
  border-radius: 999px;
  padding: 16px 20px;
  font-weight: 900;
  color: var(--white);
  background: var(--orange);
  cursor: pointer;
  font-size: 16px;
}

.footer {
  padding: 34px 0;
  background: var(--navy);
  color: rgba(255,255,255,.72);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

@media (max-width: 1020px) {
  .hero-grid,
  .split,
  .contact-grid,
  .service-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .leaders {
    grid-template-columns: repeat(3, 1fr);
  }

  .leader img {
    height: 300px;
  }

}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    padding: 20px;
    border-radius: 20px;
    background: var(--navy);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 84px 0;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .leaders,
  .service-grid,
  .stats-grid,
  .quality-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .leader img {
    height: 420px;
  }

  .section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Official FirstStep Communications logo */
.logo img {
  height: 72px;
  width: auto;
  display: block;
}

.footer-logo img {
  height: 72px;
}

.logo-mark,
.logo strong,
.logo small {
  display: none;
}

/* Logo color theme refinements */
.site-header {
  background: rgba(11, 20, 36, 0.94);
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(189,71,76,.22), transparent 25%),
    radial-gradient(circle at 30% 75%, rgba(200,200,200,.14), transparent 28%),
    linear-gradient(135deg, #0b1424 0%, #1f3f6f 55%, #3767a7 100%);
}

.btn-primary,
.nav-cta,
button {
  background: #bd474c;
}

.btn-primary:hover,
.nav-cta:hover,
button:hover {
  background: #a63c41;
}

.eyebrow,
.metric b,
.leader p,
.dashboard-card strong {
  color: #FAAOAO;
}

.stats h2,
.service-card h3,
.quality-card h3,
.location-card h3,
.leader h3,
.section h2 {
  color: #244f89;
}

.highlight-card,
.technology {
  background: linear-gradient(135deg, #0b1424, #3767a7);
}

.leader.featured {
  border: 1px solid var(--border);
}

@media (max-width: 760px) {
  .logo img {
    height: 44px;
  }
}


/* Six executives update */
.leaders {
  grid-template-columns: repeat(3, 1fr);
}

.leader img {
  height: 300px;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 760px) {
  .leaders {
    grid-template-columns: 1fr;
  }

  .leader img {
    height: 360px;
  }
}


/* Executive cards reduced by ~30% */
.executive-grid,
.leaders {
    gap: 18px !important;
}

.executive-card,
.leader {
    max-width: 240px;
    margin: 0 auto;
}

.executive-card img {
    width: 88px !important;
    height: 88px !important;
}

.leader img {
    height: 210px !important;
}

.executive-card h3,
.leader h3 {
    font-size: 17px !important;
}

.executive-card p,
.leader p {
    font-size: 12px !important;
}

.team-box,
.leadership .container {
    max-width: 1000px;
    margin: 0 auto;
}
