:root {
  --navy: #071a2f;
  --navy2: #0c2948;
  --orange: #f56a22;
  --cream: #f7f5ef;
  --ink: #102238;
  --muted: #627082;
  --line: #dce1e5;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3,
.brand {
  font-family: Manrope, sans-serif;
}
.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  position: absolute;
  z-index: 10;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid #ffffff26;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  letter-spacing: 0.12em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 3px solid var(--orange);
  border-radius: 9px;
  color: var(--orange);
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  transform: skew(-7deg);
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font-size: 17px;
  line-height: 1;
}
.brand small {
  font-size: 8px;
  margin-top: 5px;
  color: #9cafc2;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 33px;
  font-size: 14px;
}
.site-header nav > a:not(.nav-cta):hover {
  color: #ff9c64;
}
.nav-cta {
  border: 1px solid #ffffff8c;
  border-radius: 5px;
  padding: 12px 18px;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 25px;
}
.hero {
  min-height: 720px;
  background: radial-gradient(
    circle at 74% 42%,
    #174e75 0,
    #0a2947 28%,
    var(--navy) 65%
  );
  color: #fff;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 130px clamp(24px, 7vw, 115px) 70px;
  overflow: hidden;
}
.hero-copy {
  max-width: 680px;
  position: relative;
  z-index: 2;
}
.eyebrow,
.kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--orange);
}
.eyebrow {
  color: #bed0df;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}
h1 {
  font-size: clamp(55px, 6vw, 88px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 27px 0;
}
h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-copy > p {
  color: #bfd0dd;
  line-height: 1.7;
  font-size: 17px;
  max-width: 590px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 35px 0 50px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 5px;
  font-weight: 700;
  border: 1px solid transparent;
  font-size: 14px;
  cursor: pointer;
}
.btn b {
  font-size: 19px;
  margin-left: 25px;
}
.primary {
  background: var(--orange);
  color: #fff;
}
.primary:hover {
  background: #e65712;
}
.secondary {
  border-color: #ffffff55;
  color: #fff;
}
.hero-proof {
  display: flex;
  gap: 45px;
  border-top: 1px solid #ffffff24;
  padding-top: 25px;
}
.hero-proof div {
  display: flex;
  flex-direction: column;
}
.hero-proof strong {
  font-family: Manrope;
  font-size: 20px;
}
.hero-proof span {
  font-size: 11px;
  color: #90a8ba;
  margin-top: 3px;
}
.hero-visual {
  height: 510px;
  position: relative;
}
.globe {
  width: min(36vw, 430px);
  height: min(36vw, 430px);
  border: 1px solid #7bb4d347;
  border-radius: 50%;
  position: absolute;
  left: 10%;
  top: 5%;
  background: radial-gradient(circle at 40% 40%, #ffffff0f, transparent 60%);
  box-shadow:
    inset 0 0 70px #2585b31f,
    0 0 80px #2680af18;
}
.globe:before,
.globe:after {
  content: "";
  position: absolute;
  border: 1px solid #75b0d63b;
  border-radius: 50%;
}
.globe:before {
  inset: 0 30%;
}
.globe:after {
  left: 0;
  right: 0;
  top: 38%;
  height: 24%;
}
.orbit {
  position: absolute;
  inset: 10%;
  border: 1px dashed #f56a2270;
  border-radius: 50%;
  transform: rotate(-28deg);
}
.continent {
  position: absolute;
  background: #4b86a36e;
  filter: blur(2px);
  border-radius: 50% 40% 60% 30%;
}
.c1 {
  width: 31%;
  height: 42%;
  left: 24%;
  top: 24%;
  transform: rotate(-20deg);
}
.c2 {
  width: 24%;
  height: 28%;
  right: 18%;
  bottom: 22%;
}
.pin {
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--orange);
  border: 3px solid #ffc6a5;
  border-radius: 50%;
  box-shadow: 0 0 0 7px #f56a2230;
}
.p1 {
  left: 30%;
  top: 37%;
}
.p2 {
  right: 25%;
  bottom: 30%;
}
.route-card,
.status {
  position: absolute;
  background: #ffffffef;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 18px 50px #0004;
  display: flex;
  align-items: center;
  z-index: 2;
}
.route-card {
  padding: 15px 18px;
  gap: 12px;
}
.route-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #fff0e8;
  color: var(--orange);
  border-radius: 6px;
}
.route-card small,
.status small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #89939d;
}
.route-card b,
.status b {
  font-size: 12px;
}
.card-one {
  left: -2%;
  top: 20%;
}
.card-two {
  right: -3%;
  top: 56%;
}
.status {
  left: 12%;
  bottom: 4%;
  padding: 13px 20px;
  gap: 12px;
}
.status i {
  width: 9px;
  height: 9px;
  background: #31b47b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #31b47b20;
}
.trust-strip {
  background: var(--orange);
  min-height: 72px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  padding: 15px 5vw;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.trust-strip > span {
  font-family: Manrope;
  font-size: 15px;
  letter-spacing: 0;
}
.section {
  padding: 100px clamp(24px, 7vw, 110px);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 55px;
}
.section h2,
.about h2,
.quote h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 16px 0;
}
.section-head > p {
  width: 38%;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.7;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.service {
  padding: 38px;
  min-height: 440px;
  position: relative;
  border-right: 1px solid var(--line);
  transition: 0.25s;
}
.service:last-child {
  border: 0;
}
.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px #0b203317;
  background: #fff;
  z-index: 1;
}
.service.featured {
  background: var(--navy);
  color: #fff;
}
.service > span {
  position: absolute;
  right: 28px;
  top: 27px;
  font-size: 11px;
  color: #9ba6b1;
}
.service-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #fff0e8;
  color: var(--orange);
  font-size: 25px;
  margin-bottom: 55px;
}
.featured .service-icon {
  background: #ffffff13;
}
.service h3 {
  font-size: 24px;
}
.service p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.featured p {
  color: #aabccb;
}
.service ul {
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 2;
  color: #49596a;
}
.featured ul {
  color: #d0dce4;
}
.service li:before {
  content: "✓";
  color: var(--orange);
  margin-right: 9px;
}
.service > a {
  position: absolute;
  bottom: 33px;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
}
.extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
}
.extras > div {
  padding: 25px 30px;
  display: flex;
  gap: 17px;
  border-right: 1px solid var(--line);
}
.extras > div:last-child {
  border: 0;
}
.extras b {
  color: var(--orange);
  font-size: 23px;
}
.extras strong,
.extras small {
  display: block;
}
.extras small {
  color: var(--muted);
  margin-top: 5px;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  background: var(--navy);
  color: #fff;
}
.about-panel {
  padding: 100px clamp(24px, 7vw, 110px);
  background: linear-gradient(145deg, #123958, #071a2f);
}
.about-panel p {
  color: #aabcca;
  line-height: 1.8;
  max-width: 470px;
}
.light {
  color: #f89155;
}
.text-link {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 7px;
  margin-top: 22px;
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 70px clamp(24px, 6vw, 90px);
}
.benefits article {
  padding: 30px;
  border-bottom: 1px solid #ffffff1f;
}
.benefits article:nth-child(odd) {
  border-right: 1px solid #ffffff1f;
}
.benefits b {
  color: var(--orange);
  font-size: 12px;
}
.benefits h3 {
  font-size: 19px;
  margin-top: 24px;
}
.benefits p {
  color: #9cafbe;
  font-size: 13px;
  line-height: 1.6;
}
.process {
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
}
.steps article {
  padding: 15px 35px;
  position: relative;
}
.steps article:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -8px;
  top: 22px;
  color: #c5ccd2;
}
.steps b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  background: #fff0e8;
  color: var(--orange);
  border-radius: 50%;
}
.steps h3 {
  font-size: 17px;
}
.steps p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.quote {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: var(--navy2);
  color: #fff;
  padding: 90px clamp(24px, 7vw, 110px);
  gap: 90px;
}
.quote-copy > p {
  color: #aec0ce;
  line-height: 1.7;
}
.contact-mini {
  display: grid;
  margin-top: 40px;
}
.contact-mini span {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #7690a5;
  margin-top: 17px;
}
.contact-mini a {
  font-weight: 600;
  margin-top: 4px;
}
.quote form {
  background: #fff;
  color: var(--ink);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 20px 50px #0003;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 19px;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d9dfe3;
  border-radius: 4px;
  padding: 13px;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px #f56a2215;
}
textarea {
  height: 85px;
  resize: vertical;
}
.quote form .btn {
  width: 100%;
}
.form-note {
  text-align: center;
  color: #87929d;
  font-size: 11px;
  margin: 12px 0 0;
}
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1c9b68;
  color: #fff;
  padding: 16px 22px;
  border-radius: 6px;
  box-shadow: 0 10px 30px #0003;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.3s;
  z-index: 20;
}
.toast.show {
  transform: none;
  opacity: 1;
}
footer {
  background: #051424;
  color: #fff;
  padding: 60px clamp(24px, 7vw, 110px) 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ffffff1c;
  padding-bottom: 35px;
}
.footer-top > p {
  margin: 0 auto;
  color: #8399ab;
  font-size: 13px;
}
.back-top {
  font-size: 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 45px 0;
}
.footer-grid h4 {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #70899c;
}
.footer-grid a,
.footer-grid p {
  display: block;
  color: #b0c0cc;
  font-size: 12px;
  line-height: 2;
}
.copyright {
  font-size: 10px;
  color: #60778a;
  border-top: 1px solid #ffffff12;
  padding-top: 22px;
}
.copyright span {
  float: right;
}
@media (max-width: 900px) {
  .site-header nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 25px;
    flex-direction: column;
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }
  .hero-visual {
    height: 400px;
    margin-top: 40px;
  }
  .globe {
    width: 360px;
    height: 360px;
    left: 25%;
  }
  .trust-strip {
    flex-wrap: wrap;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .section-head > p {
    width: 100%;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .extras,
  .about,
  .quote {
    grid-template-columns: 1fr;
  }
  .benefits {
    padding: 45px 24px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps article:after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 72px;
  }
  .site-header nav {
    top: 72px;
  }
  .hero {
    padding-top: 115px;
  }
  .hero-actions,
  .hero-proof {
    flex-wrap: wrap;
  }
  .hero-proof {
    gap: 24px;
  }
  h1 {
    font-size: 50px;
  }
  .hero-visual {
    height: 330px;
  }
  .globe {
    width: 300px;
    height: 300px;
    left: 5%;
  }
  .card-two {
    right: 0;
  }
  .trust-strip > span {
    width: 100%;
    text-align: center;
  }
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .service {
    padding: 30px;
  }
  .extras {
    grid-template-columns: 1fr;
  }
  .extras > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-panel {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .benefits article {
    border-right: 0 !important;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .quote {
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 40px;
  }
  .quote form {
    padding: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    align-items: start;
    gap: 25px;
    flex-wrap: wrap;
  }
  .footer-top > p {
    order: 3;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .copyright span {
    float: none;
    display: block;
    margin-top: 8px;
  }
}
