:root {
  --navy: #082341;
  --navy-2: #0d315b;
  --blue: #145fd2;
  --blue-soft: #eaf2ff;
  --ink: #121821;
  --muted: #5c6876;
  --line: #e2e7ee;
  --soft: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(8, 35, 65, 0.12);
  --display: "Arial Black", "Segoe UI", Arial, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 84px;
  padding: 0 clamp(22px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 200px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.main-nav a {
  position: relative;
  color: #172130;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 14px 22px;
  background: var(--navy);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 9px;
  border: 1px solid var(--line);
  background: #fff;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(520px, 1.22fr);
  background: var(--navy);
}

.hero-content {
  padding: clamp(54px, 7vw, 96px) clamp(30px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(8, 35, 65, 0.98), rgba(8, 35, 65, 0.9)),
    radial-gradient(circle at 0 100%, rgba(20, 95, 210, 0.36), transparent 34%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 15px;
  color: #79adff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.review-content h2,
.industries-section h2,
.contact-card h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.01em;
  line-height: 1.03;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(36px, 4.5vw, 60px);
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 26px rgba(20, 95, 210, 0.24);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero-proof {
  width: min(100%, 560px);
  margin-top: 48px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof span {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 35, 65, 0.18), rgba(8, 35, 65, 0));
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.section {
  padding: clamp(64px, 8vw, 104px) clamp(22px, 5vw, 78px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.section-heading h2,
.review-content h2,
.industries-section h2,
.contact-card h2 {
  color: var(--navy);
  font-size: clamp(26px, 3vw, 38px);
}

.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gap-grid article {
  min-height: 280px;
  padding: 34px;
  background: #fff;
  border-right: 1px solid var(--line);
}

.gap-grid article:last-child {
  border-right: 0;
}

.gap-grid .accent-card {
  background: var(--navy);
  color: #fff;
}

.icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
}

.accent-card .icon-wrap {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.icon-wrap svg,
.assessment-grid svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gap-grid h3,
.assessment-grid h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.accent-card h3 {
  color: #fff;
}

.gap-grid p,
.assessment-grid p,
.review-content p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.accent-card p {
  color: rgba(255, 255, 255, 0.78);
}

.review-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  background: var(--soft);
}

.review-photo {
  min-height: 560px;
  overflow: hidden;
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.review-content {
  padding: clamp(54px, 7vw, 94px);
  align-self: center;
}

.review-content p {
  max-width: 620px;
  margin-top: 20px;
  font-size: 17px;
}

.check-list {
  max-width: 650px;
  margin: 28px 0 30px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #263343;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(20, 95, 210, 0.18);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.assessment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.assessment-grid article {
  min-height: 210px;
  padding: 30px;
  background: #fff;
}

.assessment-grid svg {
  color: var(--blue);
}

.assessment-grid h3 {
  margin-top: 22px;
}

.industries-section {
  padding: 56px clamp(22px, 5vw, 78px);
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.25fr;
  gap: 38px;
  align-items: center;
  background: var(--navy);
  color: #fff;
}

.industries-section h2 {
  color: #fff;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.industry-list span {
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-list svg {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: #79adff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-section {
  padding: clamp(70px, 9vw, 116px) clamp(22px, 5vw, 78px);
  background:
    linear-gradient(rgba(246, 248, 251, 0.92), rgba(246, 248, 251, 0.92)),
    url("../assets/images/site-walkdown.png") center 45% / cover;
}

.contact-card {
  max-width: 760px;
  padding: clamp(34px, 5vw, 58px);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card p {
  max-width: 580px;
  margin-top: 18px;
  font-size: 17px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.email-link,
.phone-link {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  min-height: 58px;
  padding: 18px clamp(22px, 5vw, 78px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 28px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

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

  .main-nav a {
    padding: 12px 0;
  }

  .nav-cta {
    margin-top: 8px;
    padding: 13px 20px !important;
  }

  .hero,
  .review-section,
  .industries-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-image {
    min-height: 430px;
  }

  .gap-grid,
  .assessment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gap-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .industry-list {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 74px;
    padding: 0 16px;
  }

  .brand img {
    width: 148px;
  }

  .main-nav {
    top: 74px;
    padding: 12px 18px 20px;
    box-shadow: 0 20px 42px rgba(8, 35, 65, 0.14);
  }

  .main-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .menu-toggle {
    width: 40px;
    height: 38px;
  }

  .hero-content {
    padding: 30px 20px 28px;
    order: 2;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 30px;
    line-height: 1.08;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
  }

  .hero-image {
    min-height: 245px;
    order: 1;
  }

  .hero-image::after {
    background: linear-gradient(180deg, rgba(8, 35, 65, 0), rgba(8, 35, 65, 0.32));
  }

  .hero-image img {
    object-position: 58% bottom;
  }

  .hero-proof {
    margin-top: 24px;
    padding-top: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-proof span {
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 11px;
    text-align: center;
  }

  .section {
    padding: 44px 18px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .review-content h2,
  .industries-section h2,
  .contact-card h2 {
    font-size: 25px;
    line-height: 1.12;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 10.5px;
    letter-spacing: 0.13em;
  }

  .gap-grid,
  .assessment-grid {
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .gap-grid article,
  .assessment-grid article {
    min-height: auto;
    padding: 22px;
  }

  .icon-wrap {
    width: 48px;
    height: 48px;
  }

  .icon-wrap svg,
  .assessment-grid svg {
    width: 27px;
    height: 27px;
  }

  .gap-grid h3,
  .assessment-grid h3 {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.2;
  }

  .gap-grid p,
  .assessment-grid p,
  .review-content p,
  .contact-card p {
    font-size: 15px;
  }

  .review-photo {
    min-height: 230px;
  }

  .review-content {
    padding: 34px 20px 40px;
  }

  .check-list {
    margin: 22px 0 24px;
    gap: 10px;
  }

  .check-list li {
    padding-left: 30px;
    font-size: 14.5px;
  }

  .assessment-grid article {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 16px;
    align-items: start;
  }

  .assessment-grid svg {
    grid-row: span 2;
  }

  .assessment-grid h3 {
    margin: 0 0 6px;
  }

  .industries-section {
    padding: 38px 18px;
    gap: 24px;
  }

  .industry-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .industry-list span {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
  }

  .contact-section {
    padding: 38px 18px;
    background:
      linear-gradient(rgba(246, 248, 251, 0.9), rgba(246, 248, 251, 0.9)),
      url("../assets/images/site-walkdown.png") center center / cover;
  }

  .contact-card {
    padding: 26px 20px;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .email-link,
  .phone-link {
    overflow-wrap: anywhere;
    text-align: center;
  }

  .site-footer {
    flex-direction: column;
    padding: 18px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 27px;
  }

  .section-heading h2,
  .review-content h2,
  .industries-section h2,
  .contact-card h2 {
    font-size: 23px;
  }
}
