@font-face {
  font-family: "Acherus Grotesque";
  src: url("assets/fonts/AcherusGrotesque-Regular.woff2") format("woff2"),
       url("assets/fonts/AcherusGrotesque-Regular.woff") format("woff"),
       url("assets/fonts/AcherusGrotesque-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Acherus Grotesque";
  src: url("assets/fonts/AcherusGrotesque-Bold.woff2") format("woff2"),
       url("assets/fonts/AcherusGrotesque-Bold.woff") format("woff"),
       url("assets/fonts/AcherusGrotesque-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #3b2ce2;
  --primary-dark: #2719ad;
  --primary-deep: #17105f;
  --green: #4de86c;
  --green-dark: #22b946;
  --white: #fff;
  --ink: #151427;
  --muted: #68677a;
  --light: #f5f6fb;
  --line: #e7e7ef;
  --danger: #dc3b4c;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow: 0 18px 50px rgba(30, 25, 95, .11);
  --shadow-strong: 0 28px 70px rgba(18, 12, 91, .22);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Acherus Grotesque", "Poppins", "Montserrat", sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; transform: translateY(-150%); padding: 10px 14px; border-radius: 8px; color: var(--white); background: var(--primary-deep); }
.skip-link:focus { transform: translateY(0); }
.section { padding: 104px 0; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 22px; border: 0; border-radius: 15px; font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; }
.button-primary { color: #102718; background: var(--green); box-shadow: 0 12px 28px rgba(77, 232, 108, .25); }
.button-primary:hover { background: #67f282; box-shadow: 0 16px 34px rgba(77, 232, 108, .35); }
.button-small { min-height: 43px; padding: 9px 16px; border-radius: 12px; font-size: .88rem; }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.14); }
.button-text { min-height: auto; color: var(--primary); background: transparent; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--primary); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-light { color: var(--green); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-heading h2, .coverage-copy h2 { max-width: 670px; margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.13; letter-spacing: -.045em; }
.section-heading h2 span, .coverage-copy h2 span { color: var(--primary); }
.section-heading p { max-width: 450px; margin: 0 0 7px; color: var(--muted); }
.section-heading.centered { display: block; max-width: 650px; margin: 0 auto 52px; text-align: center; }
.section-heading.centered p { margin: 12px auto 0; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; border-bottom: 1px solid transparent; transition: background .3s ease, border-color .3s ease, box-shadow .3s ease; }
.site-header.scrolled { border-color: var(--line); background: rgba(255,255,255,.94); box-shadow: 0 8px 25px rgba(22,20,60,.06); backdrop-filter: blur(15px); }
.navbar { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); }
.brand-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--white); box-shadow: 0 8px 22px rgba(77,232,108,.2); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-size: 1rem; letter-spacing: .02em; }
.brand-copy small { opacity: .72; font-size: .58rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.site-header.scrolled .brand { color: var(--primary-deep); }
.main-nav { display: flex; align-items: center; gap: 29px; color: rgba(255,255,255,.84); font-size: .84rem; font-weight: 600; }
.main-nav > a:not(.button) { position: relative; padding: 8px 0; }
.main-nav > a:not(.button)::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; content: ""; background: var(--green); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.main-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.site-header.scrolled .main-nav { color: var(--ink); }
.nav-cta { color: #102718 !important; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 12px; color: var(--white); background: rgba(255,255,255,.1); }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 2px; background: currentColor; transition: transform .25s, opacity .25s; }
.site-header.scrolled .menu-toggle { color: var(--primary); background: var(--light); }

.hero { position: relative; overflow: hidden; min-height: 760px; padding: 155px 0 120px; color: var(--white); background: radial-gradient(circle at 70% 30%, #6457fa 0, transparent 32%), linear-gradient(140deg, #21147f 0%, #3b2ce2 50%, #271aa6 100%); }
.hero::before { position: absolute; inset: 0; content: ""; opacity: .09; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 55px; }
.hero-copy h1 { max-width: 680px; margin: 0; font-size: clamp(3.25rem, 6.2vw, 5.65rem); line-height: 1.01; letter-spacing: -.07em; }
.hero-copy h1 span { color: var(--green); }
.hero-copy > p { max-width: 600px; margin: 25px 0 30px; color: rgba(255,255,255,.78); font-size: 1.06rem; }
.pulse-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(77,232,108,.16); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: rgba(255,255,255,.7); font-size: .75rem; font-weight: 600; }
.trust-row span { display: flex; align-items: center; gap: 7px; }
.trust-row svg { width: 17px; color: var(--green); }
.hero-visual { position: relative; min-height: 480px; }
.delivery-scene { position: absolute; top: 45px; right: 10px; width: 430px; height: 400px; border: 1px solid rgba(255,255,255,.19); border-radius: 45% 45% 28% 28%; background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.04)); box-shadow: inset 0 1px rgba(255,255,255,.2), 0 35px 60px rgba(15,9,70,.22); backdrop-filter: blur(8px); }
.scene-badge { position: absolute; top: 54px; right: 48px; display: grid; place-items: center; width: 57px; height: 57px; border-radius: 50%; color: var(--primary-deep); background: var(--green); font-weight: 800; transform: rotate(10deg); box-shadow: 0 10px 25px rgba(77,232,108,.3); }
.scene-package { position: absolute; z-index: 2; top: 91px; left: 78px; width: 275px; height: 245px; filter: drop-shadow(0 23px 20px rgba(22,13,90,.3)); }
.scene-package path { stroke: var(--primary-deep); stroke-width: 3; }
.scene-package .package-back { fill: #92fa9f; }
.scene-package .package-side { fill: #4de86c; }
.scene-package .package-front { fill: #77f18c; }
.scene-package .package-tape { fill: #f2eeff; }
.scene-package .package-line, .scene-package .package-smile { fill: none; }
.scene-floor { position: absolute; right: 50px; bottom: 49px; left: 50px; height: 16px; border-radius: 50%; background: rgba(15,9,70,.18); filter: blur(7px); }
.location-pin { position: absolute; z-index: 3; top: 94px; left: 42px; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 19px; color: var(--white); background: #ff5e73; transform: rotate(-8deg); box-shadow: 0 14px 30px rgba(26,14,105,.24); }
.location-pin svg { width: 26px; }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.3); border-radius: 16px; color: var(--ink); background: rgba(255,255,255,.94); box-shadow: var(--shadow-strong); animation: float 4s ease-in-out infinite; }
.floating-card small, .floating-card strong { display: block; line-height: 1.3; }
.floating-card small { color: var(--muted); font-size: .58rem; }
.floating-card strong { font-size: .75rem; }
.status-card { right: -10px; bottom: 72px; }
.status-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; color: var(--primary-deep); background: var(--green); }
.status-icon svg { width: 19px; }
.time-card { top: 48px; left: -26px; animation-delay: -1.2s; }
.time-card > svg { width: 32px; height: 32px; padding: 6px; border-radius: 10px; color: var(--primary); background: #eeecff; }
.route { position: absolute; border: 2px dashed rgba(77,232,108,.55); border-radius: 50%; }
.route-one { right: -95px; bottom: 17px; width: 235px; height: 125px; transform: rotate(-15deg); }
.route-two { top: 11px; left: 14px; width: 235px; height: 135px; transform: rotate(19deg); }
.hero-glow { position: absolute; border-radius: 50%; background: var(--green); filter: blur(2px); opacity: .18; }
.hero-glow-one { top: 130px; right: 4%; width: 120px; height: 120px; }
.hero-glow-two { bottom: 120px; left: -50px; width: 160px; height: 160px; }
.hero-wave { position: absolute; right: -5%; bottom: -90px; left: -5%; height: 150px; border-radius: 50% 50% 0 0; background: var(--white); }
@keyframes float { 50% { transform: translateY(-9px); } }

.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.service-card { grid-column: span 2; min-height: 280px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 30px rgba(31,27,91,.05); transition: transform .3s, border-color .3s, box-shadow .3s; }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:hover { border-color: rgba(59,44,226,.23); transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card.featured { position: relative; color: var(--white); border-color: transparent; background: linear-gradient(145deg, var(--primary), var(--primary-dark)); }
.service-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 24px; border-radius: 15px; color: var(--primary); background: #eeecff; }
.service-icon svg { width: 25px; height: 25px; }
.featured .service-icon { color: var(--primary-deep); background: var(--green); }
.card-tag { position: absolute; top: 26px; right: 25px; padding: 5px 9px; border-radius: 20px; color: var(--green); background: rgba(255,255,255,.12); font-size: .57rem; font-weight: 700; text-transform: uppercase; }
.service-card h3 { margin: 0 0 8px; font-size: 1.12rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .84rem; }
.service-card.featured p { color: rgba(255,255,255,.7); }
.service-card a { display: inline-flex; gap: 7px; margin-top: 22px; color: var(--primary); font-size: .75rem; font-weight: 700; }
.service-card.featured a { color: var(--green); }

.process-section { background: var(--light); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-grid::before { position: absolute; z-index: 0; top: 47px; right: 10%; left: 10%; border-top: 2px dashed #cecaec; content: ""; }
.process-card { position: relative; z-index: 1; padding: 28px 23px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 10px 35px rgba(26,20,90,.05); }
.step-number { position: absolute; top: 12px; right: 16px; color: #d8d5f4; font-size: 1.3rem; font-weight: 800; }
.process-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 19px; border-radius: 18px; color: var(--primary-deep); background: var(--green); box-shadow: 0 10px 22px rgba(77,232,108,.22); }
.process-icon svg { width: 27px; }
.process-card h3 { margin: 0 0 7px; font-size: .98rem; }
.process-card p { margin: 0; color: var(--muted); font-size: .77rem; }

.request-section { position: relative; overflow: hidden; color: var(--white); background: radial-gradient(circle at 10% 20%, #5a49ed 0, transparent 30%), linear-gradient(140deg, var(--primary-deep), var(--primary)); }
.request-section::before { position: absolute; top: -140px; right: -130px; width: 400px; height: 400px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; content: ""; box-shadow: 0 0 0 70px rgba(255,255,255,.03), 0 0 0 140px rgba(255,255,255,.02); }
.request-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 72px; }
.request-copy { position: sticky; top: 120px; padding-top: 35px; }
.request-copy h2 { margin: 0; font-size: clamp(2.25rem, 4.2vw, 3.6rem); line-height: 1.12; letter-spacing: -.05em; }
.request-copy > p { margin: 22px 0 30px; color: rgba(255,255,255,.7); font-size: .92rem; }
.request-benefits { display: grid; gap: 18px; }
.request-benefits > div { display: flex; align-items: center; gap: 13px; }
.request-benefits > div > span { display: grid; flex: 0 0 auto; place-items: center; width: 37px; height: 37px; border-radius: 12px; color: var(--primary-deep); background: var(--green); }
.request-benefits svg { width: 19px; }
.request-benefits p, .request-benefits strong, .request-benefits small { display: block; margin: 0; }
.request-benefits strong { font-size: .83rem; }
.request-benefits small { color: rgba(255,255,255,.6); font-size: .68rem; }
.support-card { margin-top: 33px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 17px; background: rgba(255,255,255,.07); }
.support-card span, .support-card strong, .support-card a { display: block; }
.support-card span { color: rgba(255,255,255,.6); font-size: .66rem; }
.support-card strong { margin: 2px 0 7px; font-size: .8rem; }
.support-card a { color: var(--green); font-size: .7rem; font-weight: 700; }
.form-card { padding: 35px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); color: var(--ink); background: var(--white); box-shadow: 0 35px 80px rgba(12,6,77,.28); }
.form-card-heading { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-kicker { color: var(--primary); font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.form-card-heading h3 { margin: 3px 0 0; font-size: 1.45rem; }
.secure-label { display: inline-flex; align-items: center; gap: 5px; padding: 6px 10px; border-radius: 20px; color: #15772b; background: #e7faeb; font-size: .62rem; font-weight: 700; }
.secure-label svg { width: 13px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: #333244; font-size: .72rem; font-weight: 700; }
.field label > span:not(.optional) { color: var(--danger); }
.optional { color: #9997a5; font-weight: 500; }
.input-wrap { position: relative; }
.input-wrap > svg { position: absolute; z-index: 1; top: 15px; left: 14px; width: 18px; height: 18px; color: #aaa8b6; pointer-events: none; }
.input-wrap input, .input-wrap textarea, .input-wrap select { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); outline: none; color: var(--ink); background: #fafafd; transition: border-color .2s, box-shadow .2s, background .2s; }
.input-wrap input, .input-wrap select { height: 49px; padding: 0 13px 0 42px; }
.input-wrap textarea { display: block; min-height: 88px; padding: 13px 13px 13px 42px; resize: vertical; }
.input-wrap select { appearance: none; cursor: pointer; }
.select-wrap::after { position: absolute; top: 18px; right: 16px; width: 8px; height: 8px; border-right: 2px solid #9997a5; border-bottom: 2px solid #9997a5; content: ""; pointer-events: none; transform: rotate(45deg); }
.input-wrap input::placeholder, .input-wrap textarea::placeholder { color: #aaa8b6; font-size: .72rem; }
.input-wrap input:focus, .input-wrap textarea:focus, .input-wrap select:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(59,44,226,.09); }
.readonly-wrap input { color: var(--primary); background: #f1f0ff; font-weight: 700; letter-spacing: .04em; cursor: default; }
.field-help { display: block; margin-top: 5px; color: #92909f; font-size: .58rem; }
.field.invalid .input-wrap input, .field.invalid .input-wrap textarea, .field.invalid .input-wrap select { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(220,59,76,.08); }
.error-message { display: block; min-height: 0; margin-top: 4px; color: var(--danger); font-size: .6rem; font-weight: 600; }
.form-status { display: none; margin-bottom: 15px; padding: 11px 13px; border-radius: 10px; font-size: .68rem; font-weight: 600; }
.form-status.error { display: block; color: #9b1d2b; background: #fff0f1; }
.form-status.success { display: block; color: #126226; background: #eafbed; }
.submit-button { position: relative; width: 100%; overflow: hidden; }
.submit-button.loading { pointer-events: none; opacity: .8; }
.submit-button.loading > span:first-child, .submit-button.loading > svg { visibility: hidden; }
.button-loader { position: absolute; display: none; width: 20px; height: 20px; border: 2px solid rgba(18,39,24,.25); border-top-color: #102718; border-radius: 50%; animation: spin .7s linear infinite; }
.submit-button.loading .button-loader { display: block; }
.form-note { margin: 11px 0 0; color: #93919e; font-size: .57rem; text-align: center; }
@keyframes spin { to { transform: rotate(360deg); } }

.coverage-section { overflow: hidden; background: var(--white); }
.coverage-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.coverage-map { position: relative; height: 470px; border-radius: 48% 52% 45% 55%; background: radial-gradient(circle, #f4f2ff 0 26%, #ebe9ff 27% 42%, #f8f7ff 43% 60%, #eeecff 61%); }
.coverage-map::after { position: absolute; inset: 18px; border: 1px dashed #bdb7ed; border-radius: inherit; content: ""; }
.map-orbit { position: absolute; z-index: 1; border: 2px dashed rgba(59,44,226,.25); border-radius: 50%; }
.orbit-one { inset: 75px 40px; transform: rotate(20deg); }
.orbit-two { inset: 42px 115px; transform: rotate(-30deg); }
.map-center { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; place-items: center; width: 105px; height: 105px; border: 8px solid var(--white); border-radius: 50%; color: var(--white); background: var(--primary); transform: translate(-50%, -50%); box-shadow: 0 17px 35px rgba(59,44,226,.27); }
.map-center span { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.map-center small { margin-top: -25px; font-size: .46rem; }
.map-pin { position: absolute; z-index: 3; width: 17px; height: 17px; border: 4px solid var(--white); border-radius: 50%; background: var(--green); box-shadow: 0 5px 12px rgba(30,20,100,.2); }
.pin-one { top: 85px; left: 110px; }
.pin-two { top: 110px; right: 80px; }
.pin-three { right: 105px; bottom: 85px; }
.pin-four { bottom: 150px; left: 155px; }
.map-label { position: absolute; z-index: 4; padding: 7px 10px; border-radius: 9px; background: var(--white); box-shadow: 0 8px 20px rgba(31,25,105,.12); font-size: .55rem; font-weight: 700; }
.label-one { top: 60px; left: 33px; }
.label-two { top: 77px; right: 22px; }
.label-three { right: 38px; bottom: 55px; }
.label-four { left: 70px; bottom: 110px; }
.coverage-copy > p { margin: 18px 0 27px; color: var(--muted); }
.coverage-list { display: flex; flex-wrap: wrap; gap: 9px; }
.coverage-list span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 20px; color: #535165; background: var(--light); font-size: .65rem; font-weight: 600; }
.coverage-list span::before { margin-right: 5px; color: var(--green-dark); content: "•"; }
.coverage-note { display: flex; align-items: center; gap: 12px; margin-top: 25px; padding: 15px; border-radius: 14px; background: #efedff; }
.coverage-note svg { flex: 0 0 auto; width: 23px; color: var(--primary); }
.coverage-note span, .coverage-note strong { display: block; }
.coverage-note strong { color: var(--primary-deep); font-size: .7rem; }
.coverage-note span { color: var(--muted); font-size: .62rem; }

.contact-section { padding-top: 25px; background: var(--white); }
.contact-card { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 55px 60px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(125deg, var(--primary-deep), var(--primary)); box-shadow: var(--shadow-strong); }
.contact-card::after { position: absolute; top: -120px; right: 14%; width: 300px; height: 300px; border: 40px solid rgba(255,255,255,.04); border-radius: 50%; content: ""; }
.contact-copy { position: relative; z-index: 1; }
.contact-copy h2 { max-width: 660px; margin: 0; font-size: clamp(1.9rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -.045em; }
.contact-copy > p { max-width: 650px; margin: 13px 0 22px; color: rgba(255,255,255,.68); font-size: .8rem; }
.contact-links { display: flex; flex-wrap: wrap; gap: 24px; }
.contact-links a { display: flex; align-items: center; gap: 9px; }
.contact-links svg { width: 24px; color: var(--green); }
.contact-links span, .contact-links small, .contact-links strong { display: block; }
.contact-links small { color: rgba(255,255,255,.55); font-size: .55rem; }
.contact-links strong { font-size: .72rem; }
.contact-button { position: relative; z-index: 1; flex: 0 0 auto; }

.site-footer { padding: 65px 0 20px; color: rgba(255,255,255,.68); background: #100b3f; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 50px; }
.brand-light { color: var(--white); }
.footer-brand p { max-width: 300px; margin: 18px 0 0; font-size: .7rem; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; color: var(--white); background: rgba(255,255,255,.06); transition: transform .2s, color .2s, background .2s, border-color .2s; }
.footer-social a:hover { color: var(--primary-deep); background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-grid h3 { margin: 4px 0 14px; color: var(--white); font-size: .75rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a, .footer-grid span { font-size: .65rem; transition: color .2s; }
.footer-grid a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.1); font-size: .58rem; }

.success-modal { position: fixed; z-index: 300; inset: 0; display: none; place-items: center; padding: 20px; }
.success-modal.open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(12,7,57,.77); backdrop-filter: blur(8px); }
.modal-card { position: relative; z-index: 1; width: min(100%, 480px); padding: 40px; border-radius: 27px; text-align: center; background: var(--white); box-shadow: 0 30px 90px rgba(8,4,50,.35); animation: modal-in .3s ease; }
.modal-close { position: absolute; top: 13px; right: 15px; width: 36px; height: 36px; border: 0; border-radius: 50%; color: var(--muted); background: var(--light); font-size: 1.4rem; }
.success-check { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 23px; color: var(--primary-deep); background: var(--green); box-shadow: 0 14px 30px rgba(77,232,108,.28); transform: rotate(-4deg); }
.success-check svg { width: 36px; stroke-width: 2.5; }
.modal-kicker { color: var(--primary); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.modal-card h2 { margin: 7px 0 10px; font-size: 1.7rem; line-height: 1.2; letter-spacing: -.04em; }
.modal-card p { margin: 0 auto 17px; color: var(--muted); font-size: .75rem; }
.order-confirmation { margin-bottom: 20px; padding: 11px; border-radius: 10px; color: var(--muted); background: var(--light); font-size: .7rem; }
.order-confirmation strong { margin-left: 5px; color: var(--primary); }
.modal-card .button { width: 100%; }
@keyframes modal-in { from { opacity: 0; transform: translateY(15px) scale(.97); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .hero-grid { gap: 25px; }
  .delivery-scene { right: -20px; transform: scale(.87); }
  .request-grid { gap: 40px; }
  .coverage-grid { gap: 45px; }
}
@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 66px; right: 20px; left: 20px; display: flex; align-items: stretch; flex-direction: column; gap: 2px; padding: 17px; border: 1px solid var(--line); border-radius: 19px; color: var(--ink); background: var(--white); box-shadow: var(--shadow-strong); opacity: 0; pointer-events: none; transform: translateY(-15px); transition: opacity .25s, transform .25s; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.button) { padding: 10px; }
  .main-nav > a:not(.button)::after { display: none; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-copy > p { margin-inline: auto; }
  .hero-actions, .trust-row, .hero-copy .eyebrow { justify-content: center; }
  .hero-visual { min-height: 420px; }
  .delivery-scene { right: 50%; transform: translateX(50%) scale(.9); }
  .time-card { left: calc(50% - 240px); }
  .status-card { right: calc(50% - 230px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card:nth-child(4) { grid-column: auto; }
  .service-card:last-child { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .request-grid { grid-template-columns: 1fr; }
  .request-copy { position: static; padding-top: 0; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-map { width: min(100%, 540px); margin: auto; }
  .contact-card { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .navbar { min-height: 68px; }
  .brand-logo { width: 42px; height: 42px; }
  .hero { min-height: auto; padding: 118px 0 90px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-copy > p { margin: 20px 0 25px; font-size: .86rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 10px; margin-top: 22px; font-size: .6rem; }
  .hero-visual { min-height: 345px; margin-top: 15px; }
  .delivery-scene { top: 14px; width: 360px; height: 335px; transform: translateX(50%) scale(.82); }
  .time-card { top: 17px; left: -3px; }
  .status-card { right: -4px; bottom: 20px; }
  .hero-wave { bottom: -110px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading p { margin-top: 13px; }
  .section-heading h2, .coverage-copy h2 { font-size: 2.15rem; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: auto; }
  .process-card { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; text-align: left; }
  .process-icon { grid-row: span 2; width: 50px; height: 50px; margin: 0; }
  .process-card h3 { align-self: end; }
  .request-section::before { display: none; }
  .request-copy h2 { font-size: 2.25rem; }
  .form-card { padding: 23px 17px; border-radius: 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-card-heading { align-items: flex-start; }
  .coverage-map { height: 350px; }
  .orbit-one { inset: 70px 28px; }
  .orbit-two { inset: 38px 85px; }
  .map-center { width: 90px; height: 90px; }
  .label-one { top: 38px; left: 10px; }
  .label-two { top: 53px; right: 4px; }
  .label-three { right: 13px; bottom: 38px; }
  .label-four { left: 30px; bottom: 74px; }
  .pin-one { top: 75px; left: 77px; }
  .pin-two { top: 88px; right: 61px; }
  .pin-three { right: 72px; bottom: 73px; }
  .pin-four { bottom: 112px; left: 92px; }
  .contact-section { padding-top: 10px; }
  .contact-card { padding: 34px 24px; border-radius: 24px; }
  .contact-button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .modal-card { padding: 38px 20px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
