:root {
  --ink: #13221d;
  --paper: #f4f1e9;
  --card: #fffdf7;
  --lime: #dfff63;
  --mint: #d5f7df;
  --blue: #cbdff9;
  --orange: #ff7448;
  --line: rgba(19, 34, 29, .16);
  --sans: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.topline {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}
.topline__inner { height: 34px; display: flex; align-items: center; justify-content: space-between; }
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(223,255,99,.14);
}
.topline .phone-link { color: var(--lime); }

.header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(244,241,233,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header__inner { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 19px; font-weight: 800; letter-spacing: -.05em; }
.brand > span:last-child > span { font-weight: 500; opacity: .65; }
.brand__mark { display: grid; width: 35px; height: 35px; place-items: center; background: var(--ink); border-radius: 50%; color: var(--lime); }
.brand__mark svg { width: 20px; stroke: none; fill: currentColor; }
.brand__mark .brand__cut { fill: none; stroke: var(--ink); stroke-width: 2; }
.nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 600; }
.nav a { position: relative; }
.nav a::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transition: transform .25s; }
.nav a:hover::after { transform: scaleX(1); }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(19,34,29,.14); }
.button svg { width: 17px; fill: currentColor; stroke: none; }
.button--dark { color: #fff; background: var(--ink); }
.button--primary { color: var(--ink); background: var(--lime); border-color: rgba(19,34,29,.3); }
.button--light { color: var(--ink); background: #fff; }
.button--large { min-height: 68px; padding: 8px 23px 8px 10px; border-radius: 10px; }
.button--large > span:last-child { display: grid; text-align: left; }
.button--large small { margin-bottom: 1px; font-size: 10px; font-weight: 600; letter-spacing: .05em; opacity: .65; }
.button--large strong { font: 800 19px/1.2 var(--display); letter-spacing: -.03em; }
.button__icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 7px; background: var(--ink); color: var(--lime); }
.button__icon svg { width: 22px; }
.header__call { min-height: 42px; padding: 0 16px; font-family: var(--display); }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 6px auto; background: var(--ink); transition: transform .2s; }
.mobile-menu { display: none; }

.hero { position: relative; overflow: hidden; padding-top: 72px; }
.hero::before {
  position: absolute;
  top: -110px; left: 50%;
  width: 560px; height: 560px;
  content: "";
  background: radial-gradient(circle, rgba(213,247,223,.9), rgba(213,247,223,0) 68%);
  pointer-events: none;
}
.hero__grid { position: relative; display: grid; min-height: 620px; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding-bottom: 90px; }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before, .kicker::before { width: 24px; height: 1px; content: ""; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(52px, 5.4vw, 82px); line-height: .98; letter-spacing: -.07em; }
h1 em { color: var(--orange); font-style: normal; }
.hero__lead { max-width: 580px; margin-bottom: 31px; font-size: 18px; line-height: 1.6; opacity: .75; }
.hero__actions { display: flex; align-items: center; gap: 28px; }
.text-link { display: inline-flex; gap: 9px; align-items: center; border-bottom: 1px solid var(--ink); padding-bottom: 4px; font-size: 13px; font-weight: 700; }
.text-link span { font-size: 17px; }
.trust-list { display: flex; gap: 20px; margin: 28px 0 0; padding: 0; list-style: none; font-size: 12px; font-weight: 600; opacity: .75; }
.trust-list li { display: flex; align-items: center; gap: 6px; }
.trust-list svg { width: 15px; color: #3b7b4d; stroke-width: 3; }

.hero__visual { position: relative; min-width: 0; }
.route-card { position: relative; z-index: 2; padding: 20px; background: var(--card); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 28px 70px rgba(19,34,29,.16); transform: rotate(2.5deg); }
.route-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 23px; }
.status-pill { display: flex; align-items: center; gap: 7px; padding: 7px 10px; background: var(--mint); border-radius: 99px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: #24914a; }
.route-card__time { font: 800 13px var(--display); letter-spacing: .1em; }
.route-card__route { display: grid; grid-template-columns: 1fr 1.2fr 1fr; align-items: center; margin-bottom: 22px; }
.route-card__route div:not(.route-line) { display: grid; }
.route-card__route small { font-size: 9px; font-weight: 800; letter-spacing: .15em; opacity: .48; }
.route-card__route strong { font: 800 36px/1.1 var(--display); letter-spacing: -.06em; }
.route-card__route div > span { font-size: 11px; opacity: .58; }
.route-card__destination { text-align: right; }
.route-line { display: flex; align-items: center; padding: 0 8px; }
.route-line span { height: 1px; flex: 1; background: repeating-linear-gradient(90deg, var(--ink) 0 3px, transparent 3px 6px); opacity: .4; }
.route-line svg { width: 22px; margin: 0 4px; fill: var(--orange); stroke: none; transform: rotate(45deg); }
.route-card__photo { position: relative; height: 330px; overflow: hidden; border-radius: 15px; }
.route-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.route-card__photo::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(10,22,17,.72), transparent 60%); }
.photo-label { position: absolute; z-index: 1; bottom: 20px; left: 20px; display: grid; color: #fff; }
.photo-label span { font-size: 11px; opacity: .75; }
.photo-label strong { font: 700 20px var(--display); letter-spacing: -.03em; }
.agent-card { position: absolute; z-index: 4; right: -35px; bottom: 28px; display: flex; min-width: 275px; align-items: center; gap: 11px; padding: 12px 15px; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 16px 34px rgba(19,34,29,.16); transform: rotate(-3deg); }
.agent-card__avatar { position: relative; display: grid; width: 40px; height: 40px; place-items: center; flex: none; background: var(--ink); border-radius: 50%; color: #fff; font-size: 11px; font-weight: 800; }
.agent-card__avatar span { position: absolute; right: 0; bottom: 1px; width: 10px; height: 10px; border: 2px solid white; border-radius: 50%; background: #44c76b; }
.agent-card div:nth-child(2) { display: grid; }
.agent-card small { font-size: 9px; opacity: .55; }
.agent-card strong { font: 700 13px var(--display); }
.agent-card__wave { margin-left: auto; color: var(--orange); font-size: 8px; letter-spacing: 2px; }
.hero__orbit { position: absolute; border: 1px solid rgba(19,34,29,.12); border-radius: 50%; pointer-events: none; }
.hero__orbit--one { inset: -60px -70px -60px -80px; }
.hero__orbit--two { inset: -120px -130px -130px -150px; }
.hero__ticker { overflow: hidden; padding: 14px 0; background: var(--lime); border-block: 1px solid rgba(19,34,29,.5); transform: rotate(-1deg) scale(1.01); }
.hero__ticker > div { display: flex; width: max-content; align-items: center; gap: 30px; animation: ticker 22s linear infinite; font: 800 12px var(--display); letter-spacing: .12em; }
.hero__ticker b { color: var(--orange); font-size: 16px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; margin-bottom: 54px; }
.section-heading h2, .process h2, .why h2, .faq h2, .final-cta h2 { margin-bottom: 0; font-size: clamp(42px, 4.5vw, 68px); line-height: 1.02; letter-spacing: -.065em; }
.section-heading p { max-width: 420px; margin-bottom: 4px; font-size: 16px; line-height: 1.65; opacity: .68; }
.kicker { margin-bottom: 17px; color: #477157; }
.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.service-card { position: relative; display: flex; min-height: 300px; grid-column: span 3; flex-direction: column; padding: 25px; overflow: hidden; background: var(--card); border: 1px solid var(--line); border-radius: 18px; transition: transform .25s, box-shadow .25s; }
.service-card:hover { z-index: 2; transform: translateY(-7px) rotate(-.5deg); box-shadow: 0 20px 45px rgba(19,34,29,.12); }
.service-card--wide { grid-column: span 6; }
.service-card--accent { background: var(--blue); }
.service-card__number { position: absolute; top: 25px; right: 25px; font: 700 11px var(--display); opacity: .4; }
.service-card__icon { display: grid; width: 50px; height: 50px; margin-bottom: auto; place-items: center; background: var(--paper); border-radius: 50%; }
.service-card__icon svg { width: 24px; }
.service-card h3 { max-width: 300px; margin: 25px 0 8px; font-size: 24px; line-height: 1.05; letter-spacing: -.04em; }
.service-card p { max-width: 330px; margin-bottom: 0; font-size: 13px; line-height: 1.55; opacity: .65; }
.service-card > a { position: absolute; right: 22px; bottom: 22px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 18px; transition: background .2s, color .2s; }
.service-card > a:hover { background: var(--ink); color: var(--lime); }
.service-card--wide:not(.service-card--image) { display: flex; }
.service-card--wide:not(.service-card--image) .service-card__icon { align-self: flex-start; margin-bottom: auto; }
.service-card--image { min-height: 310px; grid-column: 1 / -1; color: #fff; }
.service-card--image > img, .service-card__overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-card__overlay { background: linear-gradient(90deg, rgba(12,27,21,.91), rgba(12,27,21,.15)); }
.service-card--image .service-card__number { z-index: 2; }
.service-card--image .service-card__content { position: relative; z-index: 2; display: grid; height: 100%; grid-template-columns: 80px 1fr; align-items: end; }
.service-card--image .service-card__icon { margin: 0; color: var(--ink); }
.service-card--image h3 { margin-top: 0; }
.service-card--image > a { z-index: 3; border-color: rgba(255,255,255,.5); }

.process { background: #e8eadf; }
.process__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.process__intro { position: sticky; top: 130px; align-self: start; }
.process__intro p { max-width: 420px; margin: 25px 0 32px; line-height: 1.65; opacity: .68; }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 50px 1fr auto; gap: 24px; align-items: start; padding: 38px 0; border-bottom: 1px solid var(--line); }
.step > span { display: grid; width: 38px; height: 38px; place-items: center; background: var(--ink); border-radius: 50%; color: var(--lime); font: 700 13px var(--display); }
.step h3 { margin-bottom: 8px; font-size: 23px; letter-spacing: -.04em; }
.step p { max-width: 420px; margin-bottom: 0; font-size: 14px; line-height: 1.55; opacity: .62; }
.step b { font: 700 10px var(--display); letter-spacing: .1em; opacity: .35; }

.why { padding-bottom: 70px; background: #e8eadf; }
.why__banner { position: relative; display: grid; min-height: 510px; grid-template-columns: 1fr 1fr; overflow: hidden; padding: 64px; color: #fff; background: var(--ink); border-radius: 28px; }
.why__banner::before, .why__banner::after { position: absolute; content: ""; border: 1px solid rgba(223,255,99,.16); border-radius: 50%; }
.why__banner::before { width: 620px; height: 620px; right: -230px; bottom: -350px; }
.why__banner::after { width: 400px; height: 400px; right: -120px; bottom: -240px; }
.kicker--light { color: var(--lime); }
.why__copy { position: relative; z-index: 1; }
.why__copy p { margin: 23px 0 33px; opacity: .65; }
.why__facts { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); align-self: end; }
.why__facts div { display: grid; padding: 0 24px; border-left: 1px solid rgba(255,255,255,.19); }
.why__facts strong { color: var(--lime); font: 700 45px var(--display); letter-spacing: -.06em; }
.why__facts span { font-size: 11px; opacity: .55; }

.faq { background: var(--card); }
.faq__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq__grid > div:first-child { position: sticky; top: 130px; align-self: start; }
.faq__grid > div:first-child p { max-width: 330px; margin-top: 20px; line-height: 1.6; opacity: .65; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; border: 0; background: none; cursor: pointer; text-align: left; font: 700 18px var(--display); letter-spacing: -.025em; }
.accordion__item i { position: relative; width: 22px; height: 22px; flex: none; }
.accordion__item i::before, .accordion__item i::after { position: absolute; top: 10px; left: 3px; width: 16px; height: 1px; content: ""; background: currentColor; transition: transform .2s; }
.accordion__item i::after { transform: rotate(90deg); }
.accordion__item button[aria-expanded="true"] i::after { transform: rotate(0); }
.accordion__content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion__content > p { min-height: 0; overflow: hidden; margin: 0; max-width: 630px; font-size: 14px; line-height: 1.65; opacity: .65; }
.accordion__item button[aria-expanded="true"] + .accordion__content { grid-template-rows: 1fr; }
.accordion__item button[aria-expanded="true"] + .accordion__content > p { padding-bottom: 27px; }

.final-cta { padding: 74px 0; background: var(--lime); border-block: 1px solid rgba(19,34,29,.4); }
.final-cta__inner { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.final-cta .kicker { color: var(--ink); }
.final-cta__inner > a { display: grid; min-width: 420px; grid-template-columns: 1fr auto; align-items: center; padding: 17px 20px; background: var(--ink); border-radius: 13px; color: #fff; transition: transform .2s; }
.final-cta__inner > a:hover { transform: rotate(-1deg) scale(1.02); }
.final-cta__inner > a span { font-size: 10px; opacity: .6; }
.final-cta__inner > a strong { grid-column: 1; font: 700 25px var(--display); letter-spacing: -.04em; }
.final-cta__inner > a i { grid-column: 2; grid-row: 1 / 3; color: var(--lime); font-size: 27px; font-style: normal; }

.footer { padding: 60px 0 32px; color: #fff; background: #0a1612; }
.footer__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 48px; }
.brand--light .brand__mark { color: var(--ink); background: var(--lime); }
.brand--light .brand__mark .brand__cut { stroke: var(--lime); }
.footer__call { display: grid; text-align: right; }
.footer__call span { font-size: 10px; opacity: .5; text-transform: uppercase; letter-spacing: .12em; }
.footer__call a { color: var(--lime); font: 700 25px var(--display); letter-spacing: -.04em; }
.footer__bottom { display: flex; align-items: end; justify-content: space-between; gap: 50px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; opacity: .5; }
.footer__bottom p { max-width: 650px; margin-bottom: 0; line-height: 1.6; }
.footer__bottom div { display: flex; flex: none; gap: 20px; }
.mobile-call { display: none; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero__lead { font-size: 16px; }
  .trust-list { flex-wrap: wrap; }
  .agent-card { right: -10px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { grid-column: span 1; }
  .service-card--wide { grid-column: 1 / -1; }
  .process__grid { gap: 55px; }
  .why__banner { padding: 48px; grid-template-columns: .8fr 1.2fr; }
  .faq__grid { gap: 55px; }
}

@media (max-width: 740px) {
  .shell { width: min(100% - 32px, 560px); }
  .topline__inner { justify-content: center; }
  .topline .phone-link { display: none; }
  .header__inner { height: 68px; }
  .header__call { display: none; }
  .menu-button { display: block; }
  .menu-open .menu-button span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-button span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: absolute; z-index: 19; top: 100%; right: 0; left: 0; display: flex; height: calc(100vh - 102px); flex-direction: column; gap: 8px; padding: 30px 24px; visibility: hidden; background: var(--paper); opacity: 0; transform: translateY(-10px); transition: .2s; }
  .menu-open .mobile-menu { visibility: visible; opacity: 1; transform: none; }
  .mobile-menu a { padding: 16px 0; border-bottom: 1px solid var(--line); font: 700 25px var(--display); }
  .hero { padding-top: 46px; }
  .hero__grid { display: flex; min-height: auto; flex-direction: column; gap: 60px; padding-bottom: 72px; }
  h1 { font-size: clamp(48px, 14vw, 70px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero__actions .button { width: 100%; }
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
  .hero__visual { width: 100%; }
  .route-card { transform: rotate(1deg); }
  .route-card__photo { height: 280px; }
  .agent-card { right: -4px; bottom: -20px; min-width: 250px; }
  .section { padding: 82px 0; }
  .section-heading { display: block; margin-bottom: 38px; }
  .section-heading p { margin-top: 24px; }
  .section-heading h2, .process h2, .why h2, .faq h2, .final-cta h2 { font-size: 44px; }
  .service-grid { display: flex; flex-direction: column; }
  .service-card { min-height: 300px; }
  .service-card--wide:not(.service-card--image), .service-card--image .service-card__content { grid-template-columns: 65px 1fr; }
  .process__grid { display: block; }
  .process__intro, .faq__grid > div:first-child { position: static; margin-bottom: 60px; }
  .steps { margin-top: 60px; }
  .step { grid-template-columns: 42px 1fr; gap: 16px; }
  .step b { display: none; }
  .why__banner { display: block; min-height: 650px; padding: 40px 28px; }
  .why__facts { position: absolute; right: 28px; bottom: 40px; left: 28px; }
  .why__facts div { padding: 0 10px; }
  .why__facts strong { font-size: 34px; }
  .why__facts span { font-size: 9px; }
  .faq__grid { display: block; }
  .final-cta__inner { align-items: stretch; flex-direction: column; }
  .final-cta__inner > a { min-width: 0; }
  .footer { padding-bottom: 110px; }
  .footer__top, .footer__bottom { align-items: flex-start; flex-direction: column; }
  .footer__call { text-align: left; }
  .footer__bottom div { flex-wrap: wrap; }
  .mobile-call { position: fixed; z-index: 30; right: 10px; bottom: 10px; left: 10px; display: flex; min-height: 67px; align-items: center; justify-content: center; gap: 12px; color: var(--ink); background: var(--lime); border: 1px solid rgba(19,34,29,.35); border-radius: 13px; box-shadow: 0 12px 35px rgba(7,20,14,.28); }
  .mobile-call svg { width: 23px; fill: currentColor; stroke: none; }
  .mobile-call span { display: grid; }
  .mobile-call small { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-call strong { font: 800 20px var(--display); letter-spacing: -.04em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
