:root {
  --navy: #0B1D3A;
  --teal: #00B58A;
  --teal-dark: #008C6B;
  --text: #41516A;
  --muted: #6B7890;
  --line: #E5EAF0;
  --page: #F7FAFC;
  --white: #FFFFFF;
  --soft: #EEF8F5;
  --shadow: 0 18px 48px rgba(11, 29, 58, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Exo 2", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.narrow { width: min(820px, calc(100% - 40px)); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.top-notice {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
}
.notice-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.notice-inner a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 234, 240, 0.9);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 800;
  text-decoration: none;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--teal), #49D7B3);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(0, 181, 138, 0.25);
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}
nav a:hover { color: var(--teal-dark); }
.nav-call {
  padding: 11px 17px;
  color: var(--white) !important;
  background: var(--teal);
  border-radius: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background:
    linear-gradient(115deg, rgba(247, 250, 252, 0.98), rgba(238, 248, 245, 0.96)),
    radial-gradient(circle at 80% 30%, rgba(0,181,138,.18), transparent 40%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(11,29,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,29,58,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to right, transparent, black 55%, black);
}
.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}
.hero-orb-one {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 20px;
  background: rgba(0,181,138,.11);
}
.hero-orb-two {
  width: 200px;
  height: 200px;
  right: 28%;
  bottom: -100px;
  background: rgba(11,29,58,.07);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  align-items: center;
  gap: 72px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(43px, 6vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.hero-text {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 20px;
  color: var(--text);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 32px 0 0;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 14px 30px rgba(0, 181, 138, 0.25);
}
.button-primary:hover { box-shadow: 0 18px 34px rgba(0, 181, 138, 0.31); }
.button-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: rgba(255,255,255,.8);
}
.button-full { width: 100%; }
.button-icon { font-size: 18px; }
.availability {
  margin-top: 22px;
  color: var(--navy);
  font-size: 15px;
}
.hero-disclosure {
  max-width: 760px;
  margin-top: 22px;
  padding: 15px 17px;
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  background: rgba(255,255,255,.7);
  color: var(--text);
  font-size: 14px;
}
.call-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.call-card-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--white);
  background: var(--navy);
  font-size: 25px;
}
.call-card-kicker {
  margin: 24px 0 4px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.call-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.18;
}
.call-card p { margin: 16px 0 24px; }
.call-card-note {
  margin: 13px 0 0 !important;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid > div {
  min-height: 116px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-content: center;
  column-gap: 12px;
  padding: 20px 34px;
  border-right: 1px solid var(--line);
}
.trust-grid > div:last-child { border-right: 0; }
.trust-grid span {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--teal-dark);
  background: var(--soft);
  font-weight: 900;
}
.trust-grid strong { color: var(--navy); }
.trust-grid small { color: var(--muted); }

.section { padding: 92px 0; }
.section-soft { background: var(--page); }
.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.section-heading p:last-child {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11,29,58,.06);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--teal-dark);
  background: var(--soft);
  font-size: 23px;
  font-weight: 800;
}
.service-card h3 {
  margin: 22px 0 9px;
  color: var(--navy);
  font-size: 21px;
}
.service-card p { margin: 0; color: var(--muted); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.steps article {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.steps article > span {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}
.steps h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
}
.steps p { margin: 0; color: var(--muted); }
.center-cta { margin-top: 34px; text-align: center; }

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.route-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--white), var(--page));
}
.route-grid strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}
.route-grid span { color: var(--muted); font-size: 14px; }

.faq-list {
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}
summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 21px;
  top: 16px;
  font-size: 24px;
  color: var(--teal-dark);
}
details[open] summary::after { content: "–"; }
details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 66px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 50%, rgba(73,215,179,.22), transparent 36%),
    var(--navy);
}
.final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 38px;
}
.eyebrow-light { color: #82E6CC; }
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.1;
}
.final-cta p:last-child { margin: 12px 0 0; color: #D6DEE8; }
.button-white {
  color: var(--navy);
  background: var(--white);
  white-space: nowrap;
}

.business-info { padding: 72px 0; background: var(--white); }
.business-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
}
.business-info h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 25px;
}
.business-info p { margin: 7px 0; }
.business-info a { color: var(--teal-dark); font-weight: 700; }

.site-footer {
  padding: 62px 0 100px;
  color: #C9D3E0;
  background: #07162D;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 60px;
}
.brand-footer { color: var(--white); }
.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}
.footer-grid a,
.footer-grid span {
  display: block;
  margin: 7px 0;
  color: #C9D3E0;
  text-decoration: none;
}
.footer-grid a:hover { color: var(--white); }
.footer-disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: #98A7BA;
}
.footer-disclaimer p { margin: 7px 0; }

.mobile-call-bar { display: none; }

@media (max-width: 980px) {
  nav a:not(.nav-call) { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .call-card { max-width: 660px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .business-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .container { width: min(100% - 28px, 1160px); }
  .notice-inner { justify-content: center; }
  .notice-inner span { display: none; }
  .site-header { top: 38px; }
  .header-inner { min-height: 68px; }
  .brand { font-size: 20px; }
  .brand-mark { width: 36px; height: 36px; }
  nav .nav-call { display: none; }
  .hero { padding: 64px 0 54px; }
  .hero h1 { font-size: 43px; }
  .hero-text { font-size: 18px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .call-card { padding: 26px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 66px 0; }
  .section-heading { margin-bottom: 34px; }
  .service-grid,
  .route-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .mobile-call-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 10px 10px 16px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    color: var(--white);
    background: rgba(7,22,45,.96);
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
  }
  .mobile-call-bar small,
  .mobile-call-bar strong { display: block; line-height: 1.2; }
  .mobile-call-bar small { color: #B9C6D6; }
  .mobile-call-bar a {
    flex: 0 0 auto;
    padding: 12px 17px;
    border-radius: 12px;
    color: var(--white);
    background: var(--teal);
    font-weight: 800;
    text-decoration: none;
  }
}

.legal-page {
  min-height: 100vh;
  padding: 54px 0 90px;
  background: var(--page);
}
.legal-page h1 {
  margin: 54px 0 4px;
  color: var(--navy);
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.08;
}
.legal-page h2 {
  margin: 34px 0 8px;
  color: var(--navy);
  font-size: 23px;
}
.legal-page p { color: var(--text); }
.legal-page a:not(.brand):not(.button) { color: var(--teal-dark); font-weight: 700; }
.legal-updated { color: var(--muted) !important; }
.legal-note {
  margin: 38px 0 26px;
  padding: 18px;
  border: 1px solid #F3C969;
  border-radius: 14px;
  background: #FFF9E8;
}
