:root {
  --orange: #ed7010;
  --orange-dark: #c85606;
  --teal: #198c91;
  --teal-dark: #0b6d72;
  --ink: #171717;
  --muted: #646464;
  --line: #e7ebee;
  --paper: #ffffff;
  --soft: #f5f7f7;
  --shadow: 0 22px 60px rgba(20, 31, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 60px);
  border-bottom: 1px solid rgba(231, 235, 238, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

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

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  color: #343434;
  font-size: 0.95rem;
  font-weight: 650;
  border-radius: 999px;
}

.main-nav a:hover {
  color: var(--teal-dark);
  background: #edf8f8;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(237, 112, 16, 0.24);
}

.header-cta:hover,
.btn.primary:hover {
  background: var(--orange-dark);
}

.btn.secondary {
  color: var(--teal-dark);
  background: #e9f7f7;
}

.btn.secondary:hover {
  background: #d9f0f1;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(52px, 8vw, 92px) clamp(20px, 6vw, 86px) 64px;
  background:
    radial-gradient(circle at 88% 12%, rgba(237, 112, 16, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  font-weight: 850;
}

.hero-lead {
  max-width: 650px;
  color: #303436;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 13px;
  color: #245255;
  background: #edf8f8;
  border: 1px solid #cbe8e9;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(25, 140, 145, 0.96), rgba(8, 83, 88, 0.98)),
    var(--teal);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.95;
  transform: translate(110px, 110px);
}

.logo-orbit {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(72%, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.logo-orbit img {
  width: 78%;
}

.status-card {
  position: absolute;
  z-index: 3;
  max-width: 230px;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(8, 42, 47, 0.38);
  backdrop-filter: blur(10px);
}

.status-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.status-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.status-card.top {
  top: 42px;
  right: 34px;
}

.status-card.bottom {
  bottom: 42px;
  left: 34px;
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 86px);
}

.intro-grid,
.section-heading,
.split,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.process-panel h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.intro p,
.section-heading p,
.process-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.services {
  background: var(--soft);
}

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

.service-card,
.highlight-card,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(17, 35, 39, 0.06);
}

.service-card {
  min-height: 245px;
  padding: 26px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--orange);
  font-weight: 850;
}

.service-card h3,
.step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p,
.step p,
.highlight-card span {
  color: var(--muted);
  line-height: 1.65;
}

.split {
  align-items: center;
}

.process-panel {
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), #075a5f);
}

.process-panel .section-kicker,
.process-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 850;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.highlight-card {
  padding: 24px;
}

.highlight-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.contact-section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 6vw, 86px);
  color: #fff;
  background: #121617;
}

.contact-copy p {
  color: #d7dbdc;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-list a,
.contact-list span {
  color: #fff;
  line-height: 1.55;
}

.contact-list a {
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2f3334;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe5e7;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(25, 140, 145, 0.2);
  border-color: var(--teal);
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 86px);
  border-top: 4px solid var(--orange);
  background: #fff;
}

.site-footer img {
  width: 76px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1060px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-panel {
    min-height: 440px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 14px 4px;
    border-radius: 0;
  }

  .intro-grid,
  .section-heading,
  .split,
  .contact-section,
  .highlights {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 78px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    min-height: 360px;
    border-radius: 22px;
  }

  .status-card {
    max-width: 190px;
    padding: 14px;
  }

  .status-card.top {
    top: 18px;
    right: 18px;
  }

  .status-card.bottom {
    bottom: 18px;
    left: 18px;
  }

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

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