:root {
  --navy: #0b1f3a;
  --navy-deep: #071a31;
  --navy-black: #041426;
  --blue: #1565d8;
  --hero-blue: #069cff;
  --muted: #667085;
  --line: #e5e7eb;
  --soft: #f7f9fc;
  --white: #ffffff;
  --page: 1440px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--navy);
  background: var(--soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Manrope", "Inter", Arial, sans-serif;
}

.wide-container,
.content-container {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
}

.content-container {
  padding-inline: 45px;
}

.section-label {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-label-light {
  color: var(--blue);
}

.heading-accent {
  display: none;
}

/* --------------------------------------------------------------------------
   Header and navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  height: 170px;
  color: var(--white);
  background: transparent;
  transition: background-color .22s ease, box-shadow .22s ease, height .22s ease;
}

.navbar {
  height: 100%;
  padding: 52px 68px 0 45px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 27px;
  flex: 0 0 auto;
  color: var(--white);
}

.brand-mark {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: .82;
  letter-spacing: -2.8px;
}

.brand-copy {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 5.2px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 100px;
  padding-top: 3px;
}

.nav-links a {
  position: relative;
  color: var(--hero-blue);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  transition: color .18s ease, opacity .18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: #31b1ff;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.is-scrolled {
  position: fixed;
  height: 88px;
  background: rgba(7, 26, 49, .97);
  box-shadow: 0 12px 34px rgba(3, 15, 29, .14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled .navbar {
  padding-top: 0;
  align-items: center;
}

.site-header.is-scrolled .brand {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.site-header.is-scrolled .brand-mark {
  font-size: 42px;
}

.site-header.is-scrolled .brand-copy {
  font-size: 11px;
  letter-spacing: 2.3px;
}

.site-header.is-scrolled .nav-links {
  gap: 54px;
  padding-top: 0;
}

.site-header.is-scrolled .nav-links a {
  color: #dcecff;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   Exact home hero — 1440 × 1133 reference frame
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 1133px;
  overflow: hidden;
  color: var(--white);
  background-color: #0b2944;
  background-image: url("assets/hero.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 31, 56, .12) 0%, rgba(4, 27, 49, .05) 46%, rgba(5, 23, 42, .08) 100%),
    linear-gradient(180deg, rgba(7, 26, 49, .02) 0%, rgba(7, 26, 49, .02) 54%, rgba(3, 17, 31, .12) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-inline: 45px;
}

.hero-copy {
  position: relative;
  height: 100%;
  padding-top: 196px;
}

.hero-copy h1 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: 74px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -2.3px;
}

.hero-copy > p {
  max-width: 800px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, .95);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.27;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-top: 72px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 25px;
  border: 0;
  border-radius: 10px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  width: 264px;
  color: var(--hero-blue);
  background: #1668df;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #1160d4;
}

.button-outline {
  width: 264px;
  color: var(--hero-blue);
  border: 4px solid rgba(255, 255, 255, .98);
  border-radius: 0;
  background: rgba(8, 27, 48, .08);
}

.button-outline span {
  margin-left: 10px;
}

.hero-trust {
  position: absolute;
  right: 8px;
  bottom: 88px;
  left: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item:nth-child(2) {
  justify-self: center;
}

.trust-item:nth-child(3) {
  justify-self: end;
}

.trust-check {
  width: auto;
  height: auto;
  flex: none;
}

.trust-check svg {
  display: none;
}

.trust-check::before {
  content: "✓";
  display: inline-block;
  color: var(--white);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services-section {
  height: 1050px;
  overflow: hidden;
  background: var(--soft);
  padding-top: 186px;
}

.services-container {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin-inline: auto;
}

.centered-section-heading {
  text-align: center;
}

.centered-section-heading .section-label {
  margin-bottom: 28px;
}

.centered-section-heading h2,
.about-copy h2,
.certifications-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.8px;
}

.section-description {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.36;
}

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

.service-card {
  height: 407px;
  padding: 0 20px 14px;
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid #edf0f4;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(11, 31, 58, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon {
  width: 190px;
  height: 190px;
  margin: -9px auto -2px;
  flex: 0 0 190px;
  object-fit: contain;
}

.service-card h3 {
  min-height: 72px;
  margin: -1px 0 0;
  color: var(--navy);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card p {
  min-height: 106px;
  margin: -1px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.service-link {
  margin-top: auto;
  color: #0874ee;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.service-link span {
  margin-left: 4px;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-section {
  height: 800px;
  overflow: hidden;
  padding-top: 112px;
  background: var(--soft);
}

.about-section .content-container {
  padding-right: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 44px;
  align-items: start;
}

.about-copy {
  min-width: 0;
  padding-top: 0;
}

.about-copy .section-label {
  margin-bottom: 22px;
}

.about-text {
  max-width: 790px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.about-photo {
  width: 560px;
  height: 390px;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
}

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

.about-stats {
  width: 100%;
  max-width: 780px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1px 1.35fr 1px 1fr;
  align-items: center;
}

.about-stat {
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon-image {
  width: 48px;
  height: 48px;
  margin-bottom: 13px;
  object-fit: contain;
}

.about-stat strong {
  color: var(--navy);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.about-stat span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--line);
}

/* --------------------------------------------------------------------------
   Certifications — exact 3 + 2 composition
   -------------------------------------------------------------------------- */
.certifications-section {
  height: 1300px;
  overflow: hidden;
  padding-top: 116px;
  background: var(--soft);
}

.certifications-heading {
  max-width: 900px;
  text-align: left;
}

.certifications-heading .section-label {
  margin-bottom: 20px;
}

.certifications-heading > p:last-child {
  max-width: 790px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 70px;
  margin-top: 48px;
  padding-inline: 0;
}

.certification-card {
  grid-column: span 2;
  min-width: 0;
  text-align: center;
}

.certification-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.certification-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.certificate-frame {
  width: 250px;
  height: 305px;
  margin-inline: auto;
  padding: 12px;
  overflow: hidden;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(11, 31, 58, .02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certificate-copy {
  margin-top: 16px;
}

.certificate-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.15px;
}

.certificate-copy p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-section {
  height: 1000px;
  overflow: hidden;
  padding-top: 145px;
  background: var(--soft);
}

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

.contact-copy {
  min-width: 0;
  padding-top: 0;
}

.contact-copy .section-label {
  margin-bottom: 22px;
}

.contact-intro {
  max-width: 675px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.contact-list {
  margin-top: 34px;
}

.contact-row {
  margin-bottom: 24px;
  display: block;
}

.contact-icon {
  display: none;
}

.contact-label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.contact-row a,
.contact-row p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-row a:hover,
.contact-row a:focus-visible {
  color: var(--blue);
}

.contact-row-coverage p {
  max-width: 570px;
}

.coverage-map {
  width: 610px;
  height: 430px;
  margin-top: 18px;
  overflow: hidden;
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  height: 260px;
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  background: var(--navy-deep);
}

.footer-main {
  height: 195px;
  padding-top: 38px;
  padding-bottom: 25px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 80px;
  align-items: start;
}

.footer-brand {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.footer-brand .brand-mark {
  font-size: 42px;
}

.footer-brand .brand-copy {
  font-size: 11px;
  letter-spacing: 2.3px;
}

.footer-brand-column h2 {
  margin: 22px 0 4px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-brand-column > p {
  max-width: 630px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.footer-contact-column {
  min-width: 260px;
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-contact-column h3 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.footer-contact-column a {
  font-size: 14px;
}

.footer-contact-column a:hover,
.footer-contact-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  height: 65px;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Service detail pages
   -------------------------------------------------------------------------- */
.subpage-body {
  background: var(--soft);
}

.site-header.subpage-header {
  position: fixed;
  height: 88px;
  background: rgba(7, 26, 49, .98);
  box-shadow: 0 10px 30px rgba(3, 15, 29, .12);
}

.subpage-header .navbar {
  padding-top: 0;
  align-items: center;
}

.subpage-header .brand {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.subpage-header .brand-mark {
  font-size: 42px;
}

.subpage-header .brand-copy {
  font-size: 11px;
  letter-spacing: 2.3px;
}

.subpage-header .nav-links {
  gap: 52px;
  padding-top: 0;
}

.subpage-header .nav-links a {
  color: #dcecff;
  font-size: 16px;
}

.page-hero {
  padding: 176px 0 94px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 20, 38, .90), rgba(4, 20, 38, .64)),
    url("assets/hero.png") center 57% / cover no-repeat;
}

.page-hero .section-label {
  color: #69b7ff;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
}

.page-hero > .content-container > p:last-child {
  max-width: 780px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
  line-height: 1.6;
}

.page-hero-checks {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 26px;
  color: rgba(255, 255, 255, .88);
}

.detail-section {
  padding: 110px 0 125px;
  background: var(--soft);
}

.detail-list {
  display: grid;
  gap: 92px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 68px;
  align-items: center;
}

.detail-card:nth-child(even) .detail-photo {
  order: 2;
}

.detail-photo {
  height: 410px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(11, 31, 58, .12);
}

.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.detail-copy > p:not(.section-label) {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.check-list {
  margin-top: 25px;
  display: grid;
  gap: 10px;
}

.check-item {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
}

.check-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
}

.page-cta {
  padding: 95px 0;
  color: var(--white);
  text-align: center;
  background: var(--blue);
}

.page-cta h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
}

.page-cta p {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.55;
}

.page-cta-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-light-outline {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .75);
  background: transparent;
}

.subpage-footer {
  height: auto;
  min-height: 260px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 1601px) {
  .hero {
    background-size: cover;
  }
}

@media (max-width: 1200px) {
  .content-container,
  .hero-content {
    padding-inline: 32px;
  }

  .navbar {
    padding-right: 32px;
    padding-left: 32px;
  }

  .nav-links {
    gap: 48px;
  }

  .hero {
    height: 980px;
    background-size: cover;
  }

  .hero-copy {
    padding-top: 190px;
  }

  .hero-copy h1 {
    font-size: 66px;
  }

  .hero-trust {
    bottom: 70px;
  }

  .services-section,
  .about-section,
  .certifications-section,
  .contact-section,
  .site-footer {
    height: auto;
    overflow: visible;
  }

  .services-section {
    padding: 140px 0 150px;
  }

  .services-container {
    width: calc(100% - 48px);
  }

  .service-card {
    height: 390px;
  }

  .service-card h3 {
    font-size: 25px;
  }

  .service-card p {
    font-size: 16px;
  }

  .about-section {
    padding: 115px 0 145px;
  }

  .about-section .content-container {
    padding-right: 32px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) 44%;
    gap: 38px;
  }

  .about-photo {
    width: 100%;
    height: 410px;
    border-radius: 24px;
  }

  .about-copy h2,
  .certifications-heading h2,
  .contact-copy h2,
  .centered-section-heading h2 {
    font-size: 48px;
  }

  .about-text {
    font-size: 18px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 360px;
  }

  .stat-divider {
    display: none;
  }

  .certifications-section {
    padding: 115px 0 155px;
  }

  .certificate-frame {
    width: 220px;
    height: 275px;
  }

  .contact-section {
    padding: 125px 0 150px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
    gap: 45px;
  }

  .coverage-map {
    width: 100%;
    height: 390px;
  }

  .site-footer {
    min-height: 260px;
  }
}

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

  .site-header,
  .site-header.is-scrolled,
  .site-header.subpage-header {
    position: fixed;
    height: 78px;
    background: rgba(7, 26, 49, .96);
    box-shadow: 0 8px 24px rgba(3, 15, 29, .12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .navbar,
  .site-header.is-scrolled .navbar,
  .subpage-header .navbar {
    height: 78px;
    padding: 0 22px;
    align-items: center;
  }

  .brand,
  .site-header.is-scrolled .brand,
  .subpage-header .brand {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .brand-mark,
  .site-header.is-scrolled .brand-mark,
  .subpage-header .brand-mark {
    font-size: 39px;
  }

  .brand-copy,
  .site-header.is-scrolled .brand-copy,
  .subpage-header .brand-copy {
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .menu-btn {
    display: block;
    z-index: 3;
    color: var(--white);
  }

  .nav-links,
  .site-header.is-scrolled .nav-links,
  .subpage-header .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 22px 24px;
    background: rgba(7, 26, 49, .98);
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 20px 35px rgba(3, 15, 29, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links a,
  .site-header.is-scrolled .nav-links a,
  .subpage-header .nav-links a {
    padding: 15px 2px;
    color: var(--white);
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 820px;
    height: auto;
    background-position: 61% center;
  }

  .hero-content {
    min-height: 820px;
    padding: 0 25px;
  }

  .hero-copy {
    min-height: 820px;
    padding-top: 150px;
    padding-bottom: 155px;
  }

  .hero-copy h1 {
    max-width: 640px;
    font-size: clamp(48px, 8vw, 64px);
    line-height: 1.11;
  }

  .hero-copy > p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.45;
  }

  .hero-break {
    display: none;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 44px;
  }

  .button-primary,
  .button-outline {
    width: auto;
    min-width: 230px;
  }

  .hero-trust {
    right: 25px;
    bottom: 58px;
    left: 25px;
    gap: 15px;
    font-size: 16px;
  }

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

  .service-card {
    height: 402px;
  }

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

  .about-photo {
    margin-top: 20px;
    height: 500px;
  }

  .about-stats {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .about-stat strong {
    font-size: 23px;
  }

  .certification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 25px;
    row-gap: 55px;
  }

  .certification-card,
  .certification-card:nth-child(4),
  .certification-card:nth-child(5) {
    grid-column: auto;
  }

  .certification-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .coverage-map {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    margin-top: 15px;
  }

  .footer-main {
    height: auto;
    padding-top: 45px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    height: auto;
    padding: 20px 32px 28px;
  }

  .detail-card,
  .detail-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .detail-card:nth-child(even) .detail-photo {
    order: 0;
  }
}

@media (max-width: 640px) {
  .content-container {
    padding-inline: 22px;
  }

  .section-label {
    font-size: 13px;
  }

  .hero {
    min-height: 760px;
    background-position: 64% center;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 20, 38, .63), rgba(3, 20, 38, .23));
  }

  .hero-shade,
  .hero-content {
    z-index: 2;
  }

  .hero-content {
    min-height: 760px;
    padding-inline: 22px;
  }

  .hero-copy {
    min-height: 760px;
    padding-top: 132px;
    padding-bottom: 170px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12.4vw, 55px);
    letter-spacing: -1.3px;
  }

  .hero-copy > p {
    margin-top: 27px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
    margin-top: 36px;
  }

  .button,
  .button-primary,
  .button-outline {
    width: 100%;
    min-width: 0;
    min-height: 55px;
    font-size: 15px;
  }

  .hero-trust {
    right: 22px;
    bottom: 34px;
    left: 22px;
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 14px;
  }

  .trust-item:nth-child(2),
  .trust-item:nth-child(3) {
    justify-self: start;
  }

  .services-section {
    padding: 100px 0 112px;
  }

  .services-container {
    width: calc(100% - 30px);
  }

  .centered-section-heading h2,
  .about-copy h2,
  .certifications-heading h2,
  .contact-copy h2 {
    font-size: 38px;
    line-height: 1.14;
    letter-spacing: -1px;
  }

  .section-description,
  .about-text,
  .contact-intro {
    font-size: 17px;
  }

  .desktop-break {
    display: none;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .service-card {
    height: 394px;
    padding-inline: 16px;
  }

  .service-icon {
    width: 180px;
    height: 180px;
    flex-basis: 180px;
  }

  .service-card h3 {
    min-height: 66px;
    font-size: 28px;
  }

  .service-card p {
    font-size: 17px;
  }

  .about-section,
  .certifications-section,
  .contact-section {
    padding-top: 95px;
    padding-bottom: 110px;
  }

  .about-section .content-container {
    padding-right: 22px;
  }

  .about-photo {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 42px;
  }

  .about-stat strong {
    font-size: 26px;
  }

  .certifications-heading > p:last-child {
    font-size: 16px;
  }

  .certification-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .certification-card,
  .certification-card:nth-child(4),
  .certification-card:nth-child(5) {
    grid-column: auto;
  }

  .certificate-frame {
    width: min(270px, 82vw);
    height: 330px;
  }

  .contact-layout {
    gap: 40px;
  }

  .coverage-map {
    aspect-ratio: 1.25 / 1;
  }

  .footer-main {
    padding-inline: 22px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand .brand-copy {
    white-space: normal;
    line-height: 1.35;
  }

  .page-hero {
    padding: 145px 0 75px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .page-hero > .content-container > p:last-child {
    font-size: 17px;
  }

  .detail-section {
    padding: 80px 0 95px;
  }

  .detail-list {
    gap: 72px;
  }

  .detail-photo {
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 18px;
  }

  .detail-copy h2 {
    font-size: 34px;
  }

  .detail-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .page-cta {
    padding: 75px 0;
  }

  .page-cta h2 {
    font-size: 36px;
  }

  .page-cta-actions {
    flex-direction: column;
  }
}

/* Final desktop geometry copied from the 1440 px Framer frame: the photo is
   1440 × 960 and the Hero frame continues 173 px below it. */
@media (min-width: 1201px) {
  .hero {
    background: var(--soft);
  }

  .hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0 0 auto;
    height: 960px;
    background: url("assets/hero.png") center center / 100% 100% no-repeat;
  }

  .hero-shade {
    z-index: 1;
    height: 960px;
    bottom: auto;
  }

  .hero-content,
  .hero-copy {
    height: 960px;
  }

  .services-section {
    height: 950px;
    padding-top: 0;
  }

  .service-grid {
    margin-top: 71px;
  }

  .contact-section {
    height: 1100px;
  }
}

@media (min-width: 1201px) {
  .about-copy h2 {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 44px;
  }
}
