:root {
  --navy: #061a38;
  --deep-navy: #031026;
  --blue: #0864d9;
  --blue-soft: #e9f2ff;
  --orange: #ff5b05;
  --orange-dark: #d94500;
  --text: #0b1833;
  --muted: #5e6a80;
  --line: #dfe7f2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 16, 38, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #f7faff;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

.section-padding {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 14px max(24px, calc((100vw - var(--max-width)) / 2));
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6, 26, 56, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  position: relative;
  z-index: 60;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 45px;
  color: white;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #00245c 55%, var(--orange));
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  transform: rotate(-28deg) translateY(3px);
  opacity: 0.95;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px 7px auto auto;
  width: 18px;
  height: 18px;
  border-top: 3px solid rgba(255, 255, 255, 0.9);
  border-right: 3px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
}

.brand-mark,
.brand-mark::before,
.brand-mark::after {
  pointer-events: none;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 30px;
  font-style: italic;
  letter-spacing: -1.5px;
  color: var(--navy);
}

.brand-text small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #31405c;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 60;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(6, 26, 56, 0.12);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(6, 26, 56, 0.08);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(6, 26, 56, 0.18);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 54px;
  min-height: 760px;
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(40px, calc((100vw - var(--max-width)) / 2));
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(8, 100, 217, 0.32), transparent 32%),
    linear-gradient(135deg, var(--deep-navy), var(--navy) 55%, #062f72);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 100%),
    linear-gradient(145deg, transparent 0 63%, rgba(255, 91, 5, 0.9) 63.2% 63.6%, transparent 64%);
  background-size: 56px 56px, auto;
  opacity: 0.58;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(8, 100, 217, 0.22);
  border: 42px solid rgba(255, 91, 5, 0.22);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  color: #dceaff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.eyebrow.blue {
  color: var(--blue);
}

.eyebrow.orange {
  color: var(--orange);
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(56px, 7vw, 102px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-style: normal;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: #d5e2f7;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.62;
}

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

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), #ff7a00);
  box-shadow: 0 20px 36px rgba(255, 91, 5, 0.26);
}

.btn.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 650px;
  margin-top: 30px;
}

.category-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #dbe8fb;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
}

.hero-card {
  display: grid;
  place-items: end;
}

.hero-image {
  position: relative;
  width: min(100%, 560px);
  min-height: 610px;
  border-radius: 36px; /* Keeps the corners smoothly rounded */
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid rgba(255, 91, 5, 0.75);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,16,38,0) 0%, rgba(3,16,38,0.2) 55%, rgba(3,16,38,0.72) 100%);
}

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

.saving-badge {
  position: absolute;
  right: -6px;
  bottom: 34px;
  width: min(310px, 76%);
  padding: 24px;
  border-radius: 24px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.saving-badge span,
.metric-card span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.saving-badge strong,
.metric-card strong {
  display: block;
  margin: 2px 0;
  color: var(--orange);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.saving-badge small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.trust-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max-width), calc(100% - 40px));
  margin: -44px auto 0;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.trust-bar div {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.trust-bar div:last-child {
  border-right: 0;
}

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

.trust-bar strong {
  color: var(--navy);
  font-size: 17px;
}

.trust-bar span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 56px;
  align-items: center; /* Changed from 'end' to 'center' for better side-by-side balance */
  margin-bottom: 44px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2,
.savings-panel h2,
.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.section-heading p:not(.eyebrow),
.savings-panel p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.services-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(8, 100, 217, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.service-card.uniform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: auto;
  padding: 44px 28px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 26, 56, 0.06);
  box-shadow: 0 12px 32px rgba(3, 16, 38, 0.04);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.service-card.uniform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(6, 26, 56, 0.12);
  border-color: rgba(8, 100, 217, 0.1);
}

.services-section {
  position: relative;
  overflow: hidden;
}

.custom-icon {
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-icon img {
  width: 150%;
  height: 150%;
  object-fit: contain; 
  display: block;
}

.service-card.uniform-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-card.uniform-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.service-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 18px 40px rgba(6, 26, 56, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(6, 26, 56, 0.12);
}

.service-card.featured {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

.service-card.featured h3,
.service-card.featured p {
  color: white;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 26px;
  border-radius: 18px;
  color: white;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), #003172);
}

.service-card.featured .icon-box {
  color: white;
  background: linear-gradient(135deg, var(--orange), #ff7a00);
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-section {
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(40px, calc((100vw - var(--max-width)) / 2));
  background: white;
}

/* --- Updated Process/Timeline Section --- */
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.process-line {
  position: absolute;
  top: 21px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--blue);
  opacity: 0.3;
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 0 0 8px #ffffff;
}

.process-step:nth-child(even) .process-number {
  background: var(--navy);
}

.process-step:last-child .process-number {
  background: var(--orange);
}

.process-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(6, 26, 56, 0.04);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
}

.process-step:hover .process-icon {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 16px 32px rgba(6, 26, 56, 0.08);
}

.process-icon svg {
  width: 38px;
  height: 38px;
}

.process-text h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.process-text p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.route-card {
  display: grid;
  gap: 26px;
  margin-top: 42px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #f7faff;
  border: 1px solid var(--line);
  margin-top: 60px;
}

.route-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-label.active {
  color: var(--blue);
  margin-top: 30px;
}

.route {
  display: grid;
  gap: 10px;
}

.route-muted {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
}

.route-active {
  grid-template-columns: 1.2fr 1.6fr 1fr;
  margin-top: 30px;
}

.route span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 800;
  text-align: center;
}

.route span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  color: var(--orange);
  font-weight: 900;
}

.route-muted span {
  color: #4e617e;
  background: white;
  border: 1px solid var(--line);
}

.route-active span {
  color: white;
  background: var(--blue);
}

.route-active span:nth-child(2) {
  background: var(--navy);
}

.route-active span:nth-child(3) {
  background: var(--orange);
}

.savings-section {
  background: #eef5ff;
  width: 100%;
  max-width: none;
  padding-left: max(40px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(40px, calc((100vw - var(--max-width)) / 2));
}

.savings-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 82% 10%, rgba(255,91,5,0.35), transparent 34%),
    linear-gradient(135deg, var(--navy), #082c69);
  box-shadow: var(--shadow);
}

.savings-panel h2,
.savings-panel p {
  color: white;
}

.savings-panel p {
  color: #d9e7ff;
  max-width: 690px;
}

.metric-card {
  padding: 28px;
  border-radius: 24px;
  background: white;
  color: var(--text);
}

.metric-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  margin-top: 50px;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--blue-soft);
  font-size: 40px;
}

.contact-card h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(24px, calc((100vw - var(--max-width)) / 2));
  color: #b8c7df;
  background: var(--deep-navy);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .header-cta {
    padding-inline: 18px;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-card {
    place-items: start;
  }

  .hero-image {
    width: 100%;
    min-height: 420px;
  }

  .hero-image img {
    height: 480px;
  }

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

  .trust-bar div:nth-child(2) {
    border-right: 0;
  }

  .section-heading,
  .savings-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .route-muted,
  .route-active {
    grid-template-columns: 1fr;
  }

  .route span:not(:last-child)::after {
    content: "↓";
    right: auto;
    bottom: -22px;
    top: auto;
  }

  /* --- Mobile Vertical Timeline --- */
  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-left: 10px;
  }
  
  .process-line {
    top: 0;
    bottom: 0;
    left: 31px; 
    right: auto;
    width: 2px;
    height: 100%;
  }
  
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  
  .process-number {
    margin-right: 28px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .process-icon {
    display: none;
  }
  
  .process-text h3 {
    margin-top: 10px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 11px 18px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 18px;
    padding: 24px 20px 32px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    border-top: 1px solid rgba(6, 26, 56, 0.08);
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    font-size: 18px;
  }

  .nav-links a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .header-cta {
    width: 100%;
    margin-top: 8px;
  }

  .brand-mark {
    width: 52px;
    height: 40px;
    font-size: 20px;
  }

  .brand-text strong {
    font-size: 26px;
  }

  .brand-text small {
    letter-spacing: 1.4px;
  }
}

@media (max-width: 620px) {
  .section-padding,
  .hero,
  .process-section,
  .savings-section {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: auto;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(48px, 18vw, 72px);
  }

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

  .site-nav .header-cta {
    display: inline-flex;
    width: 100%;
  }

  .saving-badge {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .saving-badge strong,
  .metric-card strong {
    font-size: 58px;
  }

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

  .trust-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-bar div:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: auto;
  }
  
  .service-card.uniform-card {
    padding: 36px 24px;
  }

  .savings-panel,
  .contact-card {
    padding: 28px;
  }

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

@media (max-width: 430px) {
  .site-header {
    gap: 12px;
  }

  .brand-text small {
    max-width: 140px;
    letter-spacing: 1px;
  }

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

  .hero-copy {
    font-size: 16px;
  }
}

/* ========================================================================== 
   Navbar fix — match the shared header/navigation structure
   ========================================================================== */

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: block;
  min-height: 0;
  padding: 0;
  background: var(--white);
  backdrop-filter: none;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  min-height: var(--header-height);
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.logo img {
  height: 110px;
  width: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 110;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header .btn {
  min-height: auto;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.site-header .btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.site-header .btn-navy {
  color: var(--white);
  background: var(--navy);
  box-shadow: none;
}

.site-header .btn-navy:hover {
  background: #0a2a58;
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(var(--max-width), calc(100% - 32px));
  }

  .header-inner {
    height: var(--header-height);
  }

  .logo img {
    padding-top: 20px;
    padding-bottom: 20px;
    height: 100px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--line);
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
  }

  .site-header .nav-cta {
    width: 100%;
    margin-top: 16px;
    text-align: center;
  }
}

/* --- UI/UX & GEO Enhancements --- */

.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 40px rgba(255, 91, 5, 0.35);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px max(24px, calc((100vw - var(--max-width)) / 2));
  color: #b8c7df;
  background: var(--deep-navy);
  border-top: 4px solid var(--orange);
}

.footer-info p {
  margin: 0 0 6px 0;
  font-size: 15px;
}

.footer-info .geo-text {
  font-size: 13px;
  color: #7b8ea8;
  letter-spacing: 0.03em;
}

.footer-links p {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-soft);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--blue-soft);
  flex-shrink: 0; /* Prevents the circle from squishing on smaller screens */
}

.contact-icon img {
  width: 80%; /* Keeps the image from touching the edges of the blue circle */
  height: 80%;
  object-fit: contain;
  display: block;
}

.process-icon i {
  font-size: 32px;
  color: var(--navy);
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Make the icon turn orange and scale slightly when hovering over the step */
.process-step:hover .process-icon i {
  color: var(--orange);
  transform: scale(1.1);
}