* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter,Arial,sans-serif;
  color: #0c1830;
  background: #fff;
  line-height: 1.55;
}

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

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

.container {
  width: min(1240px,calc(100% - 48px));
  margin: auto;
}

.site-header {
  height: 82px;
  background: rgba(255,255,255,.97);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(7,103,232,.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand img {
  width: 175px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 31px;
}

.site-nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  position: relative;
  padding: 30px 0;
}

.site-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: #0767e8;
  transition: .25s;
}

.site-nav a:hover:after,.site-nav a.active:after {
  right: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 4px;
  padding: 14px 21px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .25s;
  cursor: pointer;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg,#0767e8,#0757c9);
  box-shadow: 0 10px 22px rgba(7,103,232,.23);
}

.nav-cta {
  padding: 13px 18px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
}

.hero {
  min-height: 610px;
  background: url("assets/hero.png") 56% center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(2,15,30,.92) 0%,rgba(2,15,30,.72) 37%,rgba(2,15,30,.13) 68%,rgba(2,15,30,.02) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 650px;
  color: #fff;
  padding: 86px 0 92px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 11px;
  font-weight: 800;
  color: #75b5ff;
  margin: 0 0 14px;
}

.eyebrow.dark {
  color: #0767e8;
}

h1,h2,h3 {
  font-family: Montserrat,Inter,sans-serif;
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(44px,5vw,70px);
  letter-spacing: -.04em;
  text-transform: uppercase;
}

h1 em {
  font-style: normal;
  color: #1685ff;
}

.hero-lead {
  font-size: 18px;
  max-width: 570px;
  color: #e6edf6;
  margin: 24px 0 30px;
}

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

.button-ghost {
  border-color: rgba(255,255,255,.72);
  color: #fff;
  background: rgba(3,15,30,.18);
}

.trust-bar {
  position: relative;
  margin-top: -38px;
  z-index: 3;
}

.trust-grid {
  background: linear-gradient(110deg,#061a34,#0b294d);
  box-shadow: 0 18px 55px rgba(5,25,52,.12);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  padding: 26px 38px;
  color: #fff;
  border-radius: 6px;
}

.trust-grid article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}

.trust-grid article:first-child {
  padding-left: 0;
}

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

.trust-icon {
  font-size: 35px;
  color: #59a9ff;
}

.trust-grid strong,.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 14px;
  text-transform: uppercase;
}

.trust-grid span {
  font-size: 10px;
  text-transform: uppercase;
  color: #b7c6d8;
  letter-spacing: .08em;
}

.section {
  padding: 95px 0;
}

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

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2 {
  font-size: 38px;
  letter-spacing: -.03em;
}

.section-heading>p,.split-heading>p {
  color: #657186;
  margin: 0;
}

.centered {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.service-card {
  border: 1px solid #dbe3ed;
  padding: 30px 28px 27px;
  min-height: 280px;
  position: relative;
  background: #fff;
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 55px rgba(5,25,52,.12);
  border-color: transparent;
}

.service-number {
  position: absolute;
  right: 22px;
  top: 20px;
  font-size: 11px;
  font-weight: 800;
  color: #aab5c3;
}

.line-icon {
  font-size: 34px;
  color: #0767e8;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 13px;
}

.service-card p {
  font-size: 14px;
  color: #657186;
  margin-bottom: 22px;
}

.service-card a {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: #0767e8;
}

.executive-band {
  background: radial-gradient(circle at 74% 45%,#103e72 0%,#071e3b 34%,#04152b 75%);
  color: #fff;
}

.executive-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 68px;
}

.why-panel h2 {
  font-size: 36px;
  max-width: 650px;
  margin-bottom: 40px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0;
}

.benefit-grid div {
  padding: 20px 24px 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.benefit-grid b,.benefit-grid span {
  display: block;
}

.benefit-grid b {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.benefit-grid span {
  font-size: 12px;
  color: #b9c7d8;
}

.coverage-card {
  background: rgba(255,255,255,.055);
  padding: 36px;
  border: 1px solid rgba(255,255,255,.1);
}

.coverage-card h3 {
  font-size: 27px;
}

.coverage-map {
  height: 250px;
  margin: 25px 0;
  position: relative;
  background: linear-gradient(143deg,rgba(10,113,230,.12),rgba(10,113,230,.02));
  border: 1px solid rgba(101,175,255,.15);
  overflow: hidden;
}

.coverage-map:before {
  content: "";
  position: absolute;
  inset: 24px 33px;
  background: linear-gradient(140deg,transparent 12%,rgba(40,137,248,.65) 12% 18%,transparent 18% 27%,rgba(40,137,248,.25) 27% 65%,transparent 65%);
  clip-path: polygon(4% 9%,45% 0,88% 16%,100% 37%,85% 51%,78% 77%,64% 100%,49% 88%,45% 67%,20% 61%,8% 40%);
  filter: drop-shadow(0 0 16px rgba(25,132,255,.75));
}

.map-label {
  position: absolute;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
}

.canada {
  left: 36%;
  top: 25%;
}

.usa {
  left: 41%;
  top: 51%;
}

.mexico {
  left: 47%;
  top: 75%;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #67b3ff;
  border-radius: 50%;
  box-shadow: 0 0 15px #56aaff;
}

.d1 {
  left: 34%;
  top: 32%;
}

.d2 {
  left: 64%;
  top: 43%;
}

.d3 {
  left: 43%;
  top: 58%;
}

.d4 {
  left: 26%;
  top: 57%;
}

.d5 {
  left: 51%;
  top: 79%;
}

.coverage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.coverage-list strong,.coverage-list span {
  display: block;
}

.coverage-list strong {
  font-size: 11px;
  text-transform: uppercase;
}

.coverage-list span {
  font-size: 10px;
  color: #aebfd1;
}

.process {
  background: #f4f7fb;
}

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

.process-grid:before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 48px;
  height: 1px;
  background: #b9c7d7;
}

.process-grid article {
  text-align: center;
  padding: 0 27px;
  position: relative;
}

.process-grid article>span {
  font-size: 10px;
  font-weight: 800;
  color: #0767e8;
}

.process-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid #c7d3e2;
  background: #fff;
  color: #0767e8;
  display: grid;
  place-items: center;
  font-size: 25px;
  margin: 10px auto 20px;
  position: relative;
  z-index: 1;
}

.process-grid h3 {
  font-size: 16px;
}

.process-grid p {
  font-size: 13px;
  color: #657186;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  border: 1px solid #dbe3ed;
}

.industry-grid article {
  text-align: center;
  padding: 32px 14px;
  border-right: 1px solid #dbe3ed;
  transition: .25s;
}

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

.industry-grid article:hover {
  background: #f4f7fb;
}

.industry-grid span {
  font-size: 30px;
  color: #0767e8;
}

.industry-grid h3 {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 14px;
}

.testimonial {
  background: linear-gradient(90deg,rgba(3,18,37,.98),rgba(5,31,58,.92)),url("assets/hero.png") center/cover;
  color: #fff;
  padding: 74px 0;
}

.testimonial-inner {
  max-width: 850px;
  position: relative;
}

.quote-mark {
  font-family: Georgia,serif;
  font-size: 90px;
  line-height: .5;
  color: #0767e8;
}

blockquote {
  font-family: Montserrat,sans-serif;
  font-size: 24px;
  line-height: 1.45;
  margin: 18px 0 24px;
}

.testimonial p strong,.testimonial p span {
  display: block;
}

.testimonial p strong {
  color: #66afff;
}

.testimonial p span {
  font-size: 12px;
  color: #b9c7d8;
}

.quote-band {
  background: linear-gradient(100deg,#0565e6,#0a7efa);
  color: #fff;
  padding: 48px 0;
}

.quote-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.quote-wrap h2 {
  font-size: 36px;
}

.quote-wrap p {
  margin-bottom: 0;
  color: #deecff;
}

.quick-form {
  display: grid;
  grid-template-columns: repeat(3,1fr) auto;
  gap: 10px;
  align-items: start;
}

.quick-form label {
  min-width: 0;
}

.quick-form input,.quick-form textarea {
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 0 16px;
  font: inherit;
  color: #0c1830;
  background: #fff;
}

.quick-form input {
  height: 52px;
}

.quick-form textarea {
  height: 88px;
  padding-top: 14px;
  resize: vertical;
}

.quick-form .form-message {
  grid-column: 1/4;
}

.quick-form .button {
  grid-column: 4;
  grid-row: 1/3;
  height: 100%;
  min-height: 88px;
}

.form-status {
  grid-column: 1/-1;
  margin: 0 !important;
  font-size: 12px;
  color: #fff !important;
  min-height: 18px;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.button-light {
  background: #fff;
  color: #0767e8;
  height: 52px;
}

.site-footer {
  background: #04152b;
  color: #fff;
  padding: 62px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr 1.15fr;
  gap: 50px;
}

.footer-brand img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer-brand p,.site-footer p {
  color: #aebdce;
  font-size: 12px;
}

.site-footer h3 {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.site-footer div>a {
  display: block;
  color: #aebdce;
  font-size: 12px;
  margin: 7px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  margin-top: 42px;
  display: flex;
  justify-content: space-between;
  color: #8091a5;
  font-size: 10px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #071e3b;
  color: white;
  padding: 15px 20px;
  border-left: 4px solid #0a84ff;
  box-shadow: 0 18px 55px rgba(5,25,52,.12);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: .3s;
  z-index: 60;
}

.toast.show {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease,transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width:1000px) {
  .site-nav,.nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #0c1830;
    margin: 5px;
  }

  .site-nav.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 15px 24px 26px;
    box-shadow: 0 18px 55px rgba(5,25,52,.12);
  }

  .site-nav.open a {
    padding: 13px;
  }

  .hero {
    min-height: 560px;
  }

  .trust-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
  }

  .trust-grid article:nth-child(2) {
    border: 0;
  }

  .split-heading,.executive-grid,.quote-wrap {
    grid-template-columns: 1fr;
  }

  .quick-form {
    grid-template-columns: repeat(2,1fr);
  }

  .quick-form .form-message {
    grid-column: 1/-1;
  }

  .quick-form .button {
    grid-column: 1/-1;
    grid-row: auto;
    min-height: 52px;
  }

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

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

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

@media (max-width:650px) {
  .container {
    width: min(100% - 30px,1240px);
  }

  .site-header {
    height: 70px;
  }

  .brand img {
    width: 145px;
  }

  .site-nav.open {
    top: 70px;
  }

  .hero {
    min-height: 620px;
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg,rgba(2,15,30,.92),rgba(2,15,30,.65));
  }

  .hero-copy {
    padding: 70px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-bar {
    margin-top: 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding: 15px 0;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,.why-panel h2,.quote-wrap h2 {
    font-size: 30px;
  }

  .split-heading {
    gap: 20px;
  }

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

  .process-grid:before {
    display: none;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

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

  .quick-form {
    grid-template-columns: 1fr;
  }

  .quick-form .form-message,.quick-form .button {
    grid-column: 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

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

/* Request a quote page */
.quote-page {
  background: #f4f7fb;
}

.quote-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  color: #fff;
  background: url("assets/hero.png") center 45%/cover no-repeat;
}

.quote-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(3,18,37,.93) 0%,rgba(3,18,37,.77) 48%,rgba(3,18,37,.30) 100%);
}

.quote-hero-content {
  position: relative;
  z-index: 1;
  padding: 88px 0;
  max-width: 780px;
}

.quote-hero h1 {
  font-size: clamp(43px,5.3vw,72px);
  line-height: 1.03;
  letter-spacing: -.045em;
  margin: 10px 0 20px;
}

.quote-hero-content>p:last-child {
  max-width: 690px;
  color: #d9e5f2;
  font-size: 18px;
}

.quote-page-section {
  padding: 90px 0 105px;
}

.quote-layout {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 54px;
  align-items: start;
}

.quote-sidebar {
  position: sticky;
  top: 115px;
}

.quote-sidebar h2 {
  font-size: 34px;
  line-height: 1.18;
  margin: 8px 0 30px;
}

.quote-benefits {
  border-top: 1px solid #d8e1eb;
}

.quote-benefits article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid #d8e1eb;
}

.quote-benefits article>span {
  font: 800 12px Montserrat,sans-serif;
  color: #0767e8;
  padding-top: 3px;
}

.quote-benefits h3 {
  font-size: 15px;
  margin: 0 0 6px;
}

.quote-benefits p {
  font-size: 13px;
  color: #657186;
  margin: 0;
}

.quote-contact-card {
  margin-top: 30px;
  background: #061a34;
  color: #fff;
  padding: 28px;
}

.quote-contact-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.quote-contact-card a {
  display: block;
  color: #fff;
  font-weight: 700;
  margin: 7px 0;
}

.quote-contact-card p {
  font-size: 12px;
  color: #aebfd1;
  margin: 14px 0 0;
}

.quote-form-card {
  background: #fff;
  padding: 48px;
  box-shadow: 0 22px 70px rgba(4,21,43,.12);
  border-top: 4px solid #0767e8;
}

.form-heading {
  padding-bottom: 27px;
  border-bottom: 1px solid #dbe3ed;
  margin-bottom: 30px;
}

.form-heading h2 {
  font-size: 36px;
  margin: 4px 0 8px;
}

.form-heading p:last-child {
  font-size: 13px;
  color: #657186;
  margin: 0;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1/-1;
}

.field label {
  font-size: 12px;
  font-weight: 800;
  color: #17273c;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.field label b {
  color: #0767e8;
}

.field input,.field select,.field textarea {
  width: 100%;
  border: 1px solid #ccd7e3;
  border-radius: 3px;
  background: #fff;
  color: #0c1830;
  font: 500 14px Inter,sans-serif;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s,box-shadow .2s;
}

.field input,.field select {
  height: 51px;
}

.field textarea {
  resize: vertical;
  min-height: 135px;
}

.field input:focus,.field select:focus,.field textarea:focus {
  border-color: #0767e8;
  box-shadow: 0 0 0 3px rgba(10,113,230,.11);
}

.file-field {
  border: 1px dashed #b7c8d9;
  padding: 20px;
  background: #f8fbfe;
}

.file-field input {
  border: 0;
  padding: 8px 0;
  height: auto;
  background: transparent;
}

.file-field small {
  color: #657186;
  font-size: 11px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 12px;
  color: #5d6b7c;
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
  accent-color: #0767e8;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 3px;
}

.submit-row .button {
  border: 0;
  cursor: pointer;
  min-width: 230px;
}

.submit-row .button:disabled {
  opacity: .65;
  cursor: wait;
}

.quote-form-status {
  font-size: 12px;
  color: #657186;
  margin: 0;
}

.quote-form-status.success {
  color: #177245;
}

.quote-form-status.error {
  color: #b3261e;
}

.quote-wrap-cta {
  grid-template-columns: 1fr auto;
}

.quote-page-button {
  min-width: 230px;
  justify-content: center;
}

.active-cta {
  box-shadow: 0 0 0 2px rgba(10,113,230,.12);
}

@media (max-width:900px) {
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    position: static;
  }

  .quote-form-card {
    padding: 36px;
  }

  .quote-wrap-cta {
    grid-template-columns: 1fr;
  }

  .quote-page-button {
    justify-self: start;
  }

  .quote-hero {
    min-height: 330px;
  }
}

@media (max-width:650px) {
  .quote-hero {
    min-height: 360px;
    background-position: 62% center;
  }

  .quote-hero-content {
    padding: 70px 0;
  }

  .quote-hero h1 {
    font-size: 42px;
  }

  .quote-page-section {
    padding: 65px 0 80px;
  }

  .quote-form-card {
    padding: 28px 20px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: 1;
  }

  .submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .submit-row .button {
    width: 100%;
  }

  .quote-sidebar h2,.form-heading h2 {
    font-size: 29px;
  }
}

/* Interior pages */
.interior-page {
  background: #fff;
}

.interior-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.careers-hero {
  background-image: url("assets/hero.jpg");
}

.testimonials-hero {
  background-image: url("assets/hero.png");
  background-position: center 43%;
}

.carrier-hero {
  background-image: url("assets/hero.jpg");
  background-position: center 58%;
}

.interior-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(3,18,37,.96) 0%,rgba(3,18,37,.76) 47%,rgba(3,18,37,.22) 100%);
}

.interior-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding: 100px 0;
}

.interior-hero h1 {
  font-size: clamp(48px,6vw,82px);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 12px 0 22px;
}

.interior-hero-copy>p:not(.eyebrow) {
  max-width: 650px;
  font-size: 19px;
  color: #dce8f4;
  margin-bottom: 30px;
}

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

.value-grid article {
  border: 1px solid #dbe3ed;
  padding: 32px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(4,21,43,.06);
}

.value-grid article>span {
  color: #0767e8;
  font: 800 11px Montserrat,sans-serif;
}

.value-grid h3 {
  font-size: 17px;
  margin: 17px 0 10px;
}

.value-grid p {
  font-size: 13px;
  color: #657186;
  margin: 0;
}

.career-paths {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.career-paths>div>p {
  color: #b7c8db;
}

.career-cards {
  display: grid;
  gap: 14px;
}

.career-cards article {
  padding: 25px 27px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
}

.career-cards h3 {
  font-size: 17px;
  margin-bottom: 7px;
}

.career-cards p {
  color: #b7c8db;
  font-size: 13px;
  margin: 0;
}

.application-section {
  background: #f4f7fb;
}

.application-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 55px;
  align-items: start;
}

.application-copy {
  position: sticky;
  top: 115px;
}

.application-copy h2 {
  font-size: 42px;
}

.application-copy>p {
  color: #657186;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.check-list li {
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid #dbe3ed;
  font-size: 13px;
  position: relative;
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0767e8;
  font-weight: 800;
}

.testimonials-page {
  background: #f4f7fb;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  margin-top: 45px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #dce4ed;
  padding: 38px;
  box-shadow: 0 18px 48px rgba(4,21,43,.07);
  display: flex;
  flex-direction: column;
}

.testimonial-card .quote-mark {
  font-size: 68px;
  color: #0767e8;
  line-height: .5;
  margin-bottom: 15px;
}

.testimonial-card>p {
  font-size: 14px;
  line-height: 1.75;
  color: #38485b;
}

.testimonial-card>p strong {
  color: #10233d;
}

.testimonial-person {
  border-top: 2px solid #0767e8;
  padding-top: 20px;
  margin-top: auto;
  display: flex;
  gap: 14px;
  align-items: center;
}

.testimonial-person>span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #061a34;
  color: #fff;
  font: 800 19px Montserrat,sans-serif;
}

.testimonial-person h3 {
  font-size: 15px;
  color: #0767e8;
  margin: 0 0 3px;
}

.testimonial-person p,.testimonial-person b {
  font-size: 11px;
  margin: 0;
  display: block;
}

.testimonial-person p {
  color: #657186;
}

.carrier-values article {
  border-top: 3px solid #0767e8;
}

@media (max-width:1000px) {
  .value-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .career-paths,.application-layout {
    grid-template-columns: 1fr;
  }

  .application-copy {
    position: static;
  }

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

  .site-nav.open {
    max-height: calc(100vh - 82px);
    overflow: auto;
  }
}

@media (max-width:650px) {
  .interior-hero {
    min-height: 450px;
  }

  .interior-hero-copy {
    padding: 75px 0;
  }

  .interior-hero h1 {
    font-size: 44px;
  }

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

  .career-paths {
    gap: 35px;
  }

  .application-copy h2 {
    font-size: 32px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .site-nav.open {
    top: 70px;
  }
}

/* Logo asset hardening: transparent header and light-on-dark footer variants */
.brand img,
.footer-brand img {
  display: block;
  width: auto;
  object-fit: contain;
  background: transparent !important;
}

.brand img {
  height: 42px;
  max-width: 190px;
}

.footer-brand img {
  height: 44px;
  max-width: 190px;
  margin-bottom: 16px;
}

@media (max-width: 720px) {
  .brand img {
    height: 36px;
    max-width: 165px;
  }

  .footer-brand img {
    height: 40px;
    max-width: 175px;
  }
}

/* Personalized About page */
.about-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: url("assets/hero.png") center 46%/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(4,18,39,.94) 0%,rgba(4,18,39,.79) 48%,rgba(4,18,39,.25) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.about-hero h1 {
  max-width: 860px;
  margin: .5rem 0 1.25rem;
  font-family: Montserrat,sans-serif;
  font-size: clamp(2.8rem,6vw,5.4rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.about-hero h1 em {
  font-style: normal;
  color: #4388ff;
}

.about-hero p:last-child {
  max-width: 760px;
  font-size: 1.18rem;
  line-height: 1.75;
  color: #e3ebf7;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem,6vw,6rem);
  align-items: start;
}

.about-intro h2 {
  font-size: clamp(2.2rem,4vw,4rem);
  line-height: 1.08;
  margin: .45rem 0;
}

.about-copy p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #526176;
  margin: 0 0 1.3rem;
}

.about-stats {
  background: #071a35;
  color: #fff;
  padding: 40px 0;
}

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

.about-stats article {
  padding: 18px 30px;
  border-right: 1px solid rgba(255,255,255,.15);
}

.about-stats article:last-child {
  border-right: 0;
}

.about-stats strong {
  display: block;
  font-family: Montserrat,sans-serif;
  font-size: clamp(1.7rem,3vw,2.65rem);
  color: #4388ff;
  margin-bottom: .35rem;
}

.about-stats span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  color: #dce8fa;
}

.about-pillars {
  background: #f4f7fb;
}

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

.pillar-grid article {
  background: #fff;
  padding: 38px 34px;
  border: 1px solid #dfe7f1;
  box-shadow: 0 18px 45px rgba(13,37,69,.08);
}

.pillar-grid article span {
  display: block;
  color: #1f6ff0;
  font-weight: 800;
  letter-spacing: .16em;
  font-size: .8rem;
  margin-bottom: 30px;
}

.pillar-grid h3 {
  font-family: Montserrat,sans-serif;
  font-size: 1.4rem;
  margin: 0 0 13px;
  color: #0a1e3b;
}

.pillar-grid p {
  margin: 0;
  color: #5a687b;
  line-height: 1.72;
}

.about-values {
  background: #071a35;
  color: #fff;
}

.about-values-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.values-heading h2 {
  font-size: clamp(2.4rem,4.6vw,4.5rem);
  line-height: 1.06;
  margin: .6rem 0 1.2rem;
}

.values-heading>p:last-child {
  color: #c9d6e8;
  font-size: 1.08rem;
  line-height: 1.7;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: rgba(255,255,255,.13);
}

.values-list article {
  background: #071a35;
  padding: 30px;
}

.values-list h3 {
  color: #4388ff;
  font-family: Montserrat,sans-serif;
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.values-list p {
  color: #d4deeb;
  line-height: 1.6;
  margin: 0;
}

@media (max-width:900px) {
  .about-intro-grid,.about-values-grid {
    grid-template-columns: 1fr;
  }

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

  .about-stats article:nth-child(2) {
    border-right: 0;
  }

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

  .about-hero {
    min-height: 500px;
  }

  .about-hero-overlay {
    background: rgba(4,18,39,.82);
  }
}

@media (max-width:600px) {
  .about-stats-grid,.values-list {
    grid-template-columns: 1fr;
  }

  .about-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .about-stats article:last-child {
    border-bottom: 0;
  }

  .about-hero h1 {
    font-size: 2.55rem;
  }

  .about-hero-content {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}

/* Dedicated Services, Industries and Contact pages */
.services-hero {
  background-image: url("assets/hero.jpg");
  background-position: center 58%;
}

.industries-hero {
  background-image: url("assets/hero.png");
  background-position: center 44%;
}

.contact-hero {
  background-image: url("assets/hero.jpg");
  background-position: center 48%;
}

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

.service-detail-card {
  padding: 36px;
  border: 1px solid #dbe3ed;
  background: #fff;
  box-shadow: 0 16px 46px rgba(4,21,43,.06);
  position: relative;
}

.service-detail-card>span {
  position: absolute;
  right: 26px;
  top: 24px;
  color: #d9e5f3;
  font: 800 38px Montserrat,sans-serif;
}

.service-detail-card h3 {
  font-size: 23px;
  margin: 0 0 12px;
}

.service-detail-card p {
  color: #657186;
  line-height: 1.7;
}

.service-detail-card ul {
  margin: 20px 0 0;
  padding: 18px 0 0 20px;
  border-top: 1px solid #dbe3ed;
  color: #33475d;
  font-size: 13px;
  line-height: 1.9;
}

.equipment-band {
  background: #061a34;
  color: #fff;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
  margin-top: 38px;
}

.equipment-grid span {
  background: #061a34;
  padding: 28px;
  text-align: center;
  font: 700 13px Montserrat,sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.industries-page {
  background: #f4f7fb;
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 45px;
}

.industry-detail {
  padding: 32px 28px;
  background: #fff;
  border-top: 3px solid #0767e8;
  box-shadow: 0 16px 42px rgba(4,21,43,.07);
}

.industry-detail b {
  color: #0767e8;
  font-size: 11px;
  letter-spacing: .12em;
}

.industry-detail h3 {
  font-size: 19px;
  margin: 20px 0 10px;
}

.industry-detail p {
  color: #657186;
  font-size: 13px;
  line-height: 1.7;
}

.industry-detail span {
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #dbe3ed;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #36506d;
}

.industry-method {
  background: #061a34;
  color: #fff;
}

.industry-method h2 {
  font-size: 45px;
}

.industry-method p {
  color: #c6d4e6;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: rgba(255,255,255,.15);
}

.method-list div {
  background: #061a34;
  padding: 28px;
}

.method-list strong {
  display: block;
  color: #0767e8;
  font: 700 16px Montserrat,sans-serif;
  margin-bottom: 8px;
}

.method-list span {
  font-size: 13px;
  color: #d3deeb;
}

.contact-page {
  background: #f4f7fb;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 55px;
  align-items: start;
}

.contact-info h2 {
  font-size: 44px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.contact-cards article {
  background: #fff;
  border: 1px solid #dbe3ed;
  padding: 24px;
}

.contact-cards span {
  display: block;
  color: #0767e8;
  font: 800 10px Montserrat,sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 9px;
}

.contact-cards a,.contact-cards strong {
  display: block;
  color: #0c1830;
  font: 700 18px Montserrat,sans-serif;
  text-decoration: none;
}

.contact-cards p {
  margin: 6px 0 0;
  color: #657186;
  font-size: 12px;
}

.department-list {
  padding: 28px;
  background: #061a34;
  color: #fff;
}

.department-list h3 {
  margin-top: 0;
}

.department-list p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 13px 0;
  margin: 0;
  font-size: 12px;
}

.department-list span {
  color: #bfd0e4;
  text-align: right;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-top: 38px;
}

.faq-grid article {
  padding: 28px;
  border: 1px solid #dbe3ed;
}

.faq-grid h3 {
  font-size: 17px;
}

.faq-grid p {
  font-size: 13px;
  line-height: 1.7;
  color: #657186;
  margin-bottom: 0;
}

@media (max-width:1000px) {
  .industry-detail-grid {
    grid-template-columns: repeat(2,1fr);
  }

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

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

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

@media (max-width:650px) {
  .industry-detail-grid,.faq-grid,.method-list {
    grid-template-columns: 1fr;
  }

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

  .service-detail-card {
    padding: 28px 22px;
  }

  .contact-info h2,.industry-method h2 {
    font-size: 32px;
  }

  .department-list p {
    flex-direction: column;
  }

  .department-list span {
    text-align: left;
  }

  .map-section iframe {
    height: 320px;
  }
}

/* Final typography refinement
   Applied to the full corporate version. Hero dimensions, imagery,
   content positioning, buttons and spacing remain unchanged. */
.hero h1,
.interior-hero h1,
.quote-hero h1,
.about-hero h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 700;
}

.hero .hero-lead,
.interior-hero-copy > p:not(.eyebrow),
.quote-hero-content > p:last-child,
.about-hero p:last-child {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
}

@media (max-width: 768px) {
  .hero h1,
  .interior-hero h1,
  .quote-hero h1,
  .about-hero h1 {
    font-size: 2.4rem;
  }

  .hero .hero-lead,
  .interior-hero-copy > p:not(.eyebrow),
  .quote-hero-content > p:last-child,
  .about-hero p:last-child {
    font-size: 1rem;
  }
}

/* Final hero top-spacing refinement
   Moves hero content closer to the navigation and reduces excess vertical space. */
.hero {
  min-height: 570px;
}

.hero-copy {
  padding-top: 58px;
  padding-bottom: 76px;
  transform: translateY(-22px);
}

.interior-hero {
  min-height: 490px;
}

.interior-hero-copy {
  padding-top: 66px;
  padding-bottom: 74px;
  transform: translateY(-20px);
}

.quote-hero {
  min-height: 350px;
}

.quote-hero-content {
  padding-top: 60px;
  padding-bottom: 68px;
  transform: translateY(-16px);
}

.about-hero {
  min-height: 500px;
}

.about-hero-content {
  padding-top: 54px;
  padding-bottom: 64px;
  transform: translateY(-20px);
}

@media (max-width: 768px) {
  .hero {
    min-height: 520px;
  }

  .hero-copy {
    padding-top: 48px;
    padding-bottom: 62px;
    transform: translateY(-12px);
  }

  .interior-hero {
    min-height: 410px;
  }

  .interior-hero-copy {
    padding-top: 50px;
    padding-bottom: 58px;
    transform: translateY(-10px);
  }

  .quote-hero {
    min-height: 320px;
  }

  .quote-hero-content {
    padding-top: 48px;
    padding-bottom: 54px;
    transform: translateY(-8px);
  }

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

  .about-hero-content {
    padding-top: 45px;
    padding-bottom: 54px;
    transform: translateY(-10px);
  }
}

/* Phase 3 legal and launch pages */
.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin: 2rem 0 .65rem;
  color: #061a34;
}

.legal-content p {
  line-height: 1.8;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* =====================================================
   THE JAAGO STANDARD — ABOUT PAGE
===================================================== */
.jaago-philosophy {
  position: relative;
  overflow: hidden;
  background: #f4f7fa;
  border-top: 1px solid rgba(7, 27, 51, 0.08);
  border-bottom: 1px solid rgba(7, 27, 51, 0.08);
}

.jaago-philosophy::before {
  content: "ἀρετή";
  position: absolute;
  right: -30px;
  bottom: -85px;
  color: rgba(7, 27, 51, 0.035);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.philosophy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.philosophy-heading h2 {
  margin: 10px 0 18px;
  color: #071b33;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
}

.philosophy-tagline {
  margin: 0;
  color: #1874d1;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
}

.philosophy-content {
  max-width: 760px;
}

.philosophy-content p {
  margin: 0 0 22px;
  color: #526173;
  font-size: 1.05rem;
  line-height: 1.85;
}

.philosophy-content .philosophy-intro {
  color: #071b33;
  font-size: 1.22rem;
  line-height: 1.7;
}

.philosophy-content .philosophy-intro strong {
  color: #1874d1;
}

.philosophy-content .philosophy-closing {
  margin-top: 30px;
  padding: 24px 28px;
  color: #ffffff;
  background: #071b33;
  border-left: 5px solid #1874d1;
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  line-height: 1.65;
}

.philosophy-content .philosophy-closing strong {
  display: block;
  color: #69b5ff;
}

/* About page: retained single philosophy section */
.jaago-philosophy {
  margin: 0;
  padding: 50px 0;
}

@media (max-width: 800px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .philosophy-content .philosophy-closing {
    padding: 22px;
  }
}

/* Reduce excess space above the Industries section when it follows the philosophy. */
.jaago-philosophy + .industries {
  padding-top: 30px;
}

.industries .section-heading {
  margin-top: 0;
}
.jaago-philosophy {
    padding-bottom: 0 !important;
}

.jaago-philosophy .container {
    padding-bottom: 10px;
}

.section.industries {
    padding-top: 20px;
}
