:root {
  --orange: #ff7600;
  --orange-dark: #df5c00;
  --cream: #fffaf2;
  --ink: #211b17;
  --muted: #6f665f;
  --line: rgba(33, 27, 23, .12);
  --green: #1d684e;
  --yellow: #ffd950;
  --white: #fff;
  --shadow: 0 24px 70px rgba(72, 45, 20, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; padding: 10px 16px; background: var(--ink); color: white; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.7);
  background: rgba(255,250,242,.88);
  backdrop-filter: blur(18px);
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand img { width: 37px; height: 45px; object-fit: cover; object-position: center; }
.brand strong { font-family: "Manrope", sans-serif; font-size: 1.2rem; letter-spacing: -.04em; }
.desktop-nav { display: flex; gap: 34px; margin-left: auto; }
.desktop-nav a { color: var(--muted); font-size: .94rem; font-weight: 600; }
.desktop-nav a:hover { color: var(--orange-dark); }
.menu-toggle, .mobile-nav { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; color: white; background: var(--ink); font-size: .9rem; }
.button-primary { color: white; background: var(--orange); box-shadow: 0 15px 35px rgba(255,118,0,.28); }
.button-primary:hover { background: var(--orange-dark); }
.button-light { background: white; color: var(--green); }
.button-dark { width: 100%; color: white; background: var(--ink); }

.hero {
  position: relative;
  min-height: 750px;
  padding: 92px 0 70px;
  overflow: hidden;
  background: linear-gradient(135deg, #fffaf2 0%, #fff4e3 52%, #fff9ef 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.hero-copy { padding-bottom: 15px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--orange-dark); text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; font-weight: 800; }
.eyebrow span { width: 26px; height: 2px; background: currentColor; }
.hero h1, .section h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.hero h1 { max-width: 650px; font-size: clamp(2.8rem, 4.7vw, 4.35rem); font-weight: 800; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 610px; margin: 28px 0 30px; color: var(--muted); font-size: 1.18rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { padding: 10px 0; border-bottom: 1px solid var(--ink); font-weight: 700; }
.proof { display: flex; align-items: center; gap: 14px; margin-top: 44px; }
.proof strong { color: var(--orange); font-family: "Manrope"; font-size: 2.15rem; line-height: 1; }
.proof span { color: var(--muted); font-size: .86rem; line-height: 1.35; }
.proof-note { display: block; margin-top: 8px; color: #8b8178; font-size: .69rem; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-glow-one { width: 470px; height: 470px; right: -130px; top: 20px; background: rgba(255,217,80,.25); }
.hero-glow-two { width: 260px; height: 260px; left: -110px; bottom: -100px; background: rgba(255,118,0,.11); }
.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.phone {
  position: relative;
  z-index: 2;
  width: 305px;
  height: 610px;
  padding: 11px;
  border: 8px solid #201b17;
  border-radius: 48px;
  background: #201b17;
  box-shadow: 0 45px 80px rgba(55, 36, 19, .28);
  transform: rotate(3deg);
}
.phone-top { position: absolute; z-index: 4; top: 12px; left: 50%; width: 88px; height: 23px; border-radius: 20px; background: #201b17; transform: translateX(-50%); }
.phone-top span { position: absolute; top: 8px; right: 13px; width: 6px; height: 6px; border-radius: 50%; background: #4d4944; }
.phone-screen { height: 100%; overflow: hidden; border-radius: 31px; background: #faf7f1; }
.phone-screen img { width: 100%; height: auto; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.9); border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.floating-card small, .floating-card strong { display: block; line-height: 1.35; }
.floating-card small { color: var(--muted); font-size: .7rem; }
.floating-card strong { font-size: .88rem; }
.floating-card-search { top: 92px; left: -38px; }
.floating-card-near { right: -30px; bottom: 95px; }
.floating-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: white; background: var(--orange); font-size: 1.35rem; font-weight: 700; }
.pulse-dot { position: relative; width: 15px; height: 15px; border-radius: 50%; background: #33bd78; box-shadow: 0 0 0 7px rgba(51,189,120,.15); }
.orbit { position: absolute; border: 1px solid rgba(255,118,0,.18); border-radius: 50%; }
.orbit-one { width: 500px; height: 500px; }
.orbit-two { width: 390px; height: 390px; border-style: dashed; animation: spin 28s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.guide-categories { padding: 72px 0 78px; color: var(--ink); background: var(--cream); }
.categories-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 28px; }
.categories-heading .eyebrow { margin: 0 0 8px; }
.categories-heading h2 { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(1.75rem, 2.8vw, 2.5rem); letter-spacing: -.045em; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.guide-category { display: flex; min-height: 190px; padding: 28px 22px; flex-direction: column; align-items: center; justify-content: center; gap: 16px; border-radius: 25px; color: white; box-shadow: inset 0 -7px 0 rgba(0,0,0,.11), 0 16px 35px rgba(60,42,24,.1); }
.guide-category-icon { font-size: 3rem; filter: drop-shadow(0 5px 5px rgba(0,0,0,.12)); }
.guide-category strong { font-family: "Manrope", sans-serif; font-size: 1.05rem; text-align: center; text-shadow: 0 2px 3px rgba(0,0,0,.18); }
.guide-category-food { background: linear-gradient(145deg, #ff8c19, #ff6412); }
.guide-category-shop { background: linear-gradient(145deg, #64d86c, #35b862); }
.guide-category-sleep { background: linear-gradient(145deg, #52b7f8, #357be0); }
.guide-category-out { background: linear-gradient(145deg, #c35ff4, #8544d8); }

.section { padding: 120px 0; }
.section h2 { font-size: clamp(2.1rem, 3.5vw, 3.25rem); }
.mobility { background: #fffdf9; }
.mobility-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: center; }
.mobility-copy > p:not(.eyebrow) { max-width: 560px; margin: 26px 0; color: var(--muted); font-size: 1.08rem; }
.mobility-copy > small { display: block; max-width: 580px; margin-top: 20px; color: #8b8178; font-size: .72rem; }
.department-list { display: flex; flex-wrap: wrap; gap: 9px; }
.department-list span { padding: 8px 13px; border: 1px solid rgba(255,118,0,.2); border-radius: 100px; color: var(--orange-dark); background: rgba(255,118,0,.06); font-size: .78rem; font-weight: 700; }
.mobility-visual { overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: var(--shadow); transform: rotate(1deg); }
.map-topbar, .map-footer { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; }
.map-topbar > div { display: flex; align-items: center; gap: 9px; }
.map-topbar small { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.map-topbar strong { padding: 6px 11px; border-radius: 100px; color: #13754f; background: #e2f7ed; font-size: .75rem; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #28b975; box-shadow: 0 0 0 5px rgba(40,185,117,.13); }
.map-canvas { position: relative; height: 390px; overflow: hidden; background: #eee9df; }
.map-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .58;
  background-image:
    linear-gradient(28deg, transparent 47%, rgba(255,255,255,.9) 48%, rgba(255,255,255,.9) 52%, transparent 53%),
    linear-gradient(92deg, transparent 47%, rgba(255,255,255,.8) 48%, rgba(255,255,255,.8) 52%, transparent 53%);
  background-size: 160px 110px, 125px 170px;
}
.street { position: absolute; z-index: 1; display: block; height: 13px; border: 2px solid white; background: #d6d0c5; transform-origin: left center; }
.street-one { top: 80px; left: -20px; width: 620px; transform: rotate(14deg); }
.street-two { top: 300px; left: 25px; width: 620px; transform: rotate(-20deg); }
.street-three { top: -20px; left: 310px; width: 520px; transform: rotate(72deg); }
.route { position: absolute; z-index: 2; display: block; height: 5px; border-radius: 10px; background: var(--orange); transform-origin: left center; }
.route-one { top: 96px; left: -10px; width: 590px; transform: rotate(14deg); }
.route-two { top: 315px; left: 20px; width: 560px; transform: rotate(-20deg); background: var(--green); }
.bus-marker { position: absolute; z-index: 4; display: grid; place-items: center; width: 43px; height: 43px; border: 4px solid white; border-radius: 50%; background: var(--yellow); box-shadow: 0 8px 20px rgba(55,35,17,.18); font-size: 1.2rem; }
.bus-one { top: 92px; left: 18%; }
.bus-two { top: 185px; right: 17%; }
.bus-three { right: 33%; bottom: 54px; }
.place-marker { position: absolute; z-index: 4; top: 47%; left: 47%; display: grid; place-items: center; width: 38px; height: 38px; border: 7px solid white; border-radius: 50%; color: var(--orange); background: var(--orange); box-shadow: 0 8px 20px rgba(55,35,17,.22); }
.map-business-card { position: absolute; z-index: 5; right: 22px; bottom: 20px; width: min(250px, calc(100% - 44px)); padding: 15px 17px; border-radius: 15px; background: white; box-shadow: 0 15px 35px rgba(55,35,17,.18); }
.map-business-card small, .map-business-card strong, .map-business-card span { display: block; }
.map-business-card small { color: var(--orange-dark); font-size: .62rem; font-weight: 800; letter-spacing: .09em; }
.map-business-card strong { margin: 3px 0; font-family: "Manrope"; }
.map-business-card span { color: var(--muted); font-size: .73rem; }
.map-footer { border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.map-footer strong { color: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 55px; }
.section-heading > p { max-width: 470px; margin: 0 0 6px; color: var(--muted); font-size: 1.1rem; }
.benefit-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.benefit-card { position: relative; min-height: 0; padding: 30px 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fffdf9; }
.benefit-card-featured { grid-row: 1 / span 3; min-height: 610px; color: white; background: var(--orange); }
.card-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; color: var(--orange); background: rgba(255,118,0,.1); font-size: 1.6rem; }
.benefit-card-featured .card-icon { color: white; background: rgba(255,255,255,.18); }
.card-number { position: absolute; top: 35px; right: 35px; color: #c5bcb3; font-family: "Manrope"; font-size: .8rem; }
.benefit-card-featured .card-number { color: rgba(255,255,255,.65); }
.benefit-card h3 { margin: 26px 0 8px; font-family: "Manrope"; font-size: 1.35rem; line-height: 1.2; }
.benefit-card-featured h3 { margin-top: 45px; font-size: 1.55rem; }
.benefit-card p { max-width: 470px; margin: 0; color: var(--muted); }
.benefit-card-featured p { color: rgba(255,255,255,.82); }
.mini-result { position: absolute; right: 36px; bottom: 36px; left: 36px; display: flex; align-items: center; gap: 13px; padding: 17px; border-radius: 17px; color: var(--ink); background: white; box-shadow: 0 22px 45px rgba(135,54,0,.25); }
.mini-result-image { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; color: white; background: var(--ink); font-weight: 800; }
.mini-result div { flex: 1; }
.mini-result strong, .mini-result small { display: block; }
.mini-result small { color: var(--muted); font-size: .75rem; }

.plans { background: #f5eee4; }
.plans-heading { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.plans-heading .eyebrow { justify-content: center; }
.plans-heading > p:not(.eyebrow) { max-width: 650px; margin: 22px auto 0; color: var(--muted); font-size: 1.06rem; }
.plans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 970px; margin: 0 auto; }
.plan-card { position: relative; display: flex; min-height: 590px; padding: 42px; flex-direction: column; border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: 0 18px 45px rgba(58,39,21,.08); }
.plan-card-expanded { color: white; border-color: var(--ink); background: var(--ink); box-shadow: 0 25px 60px rgba(33,27,23,.2); }
.recommended-badge { position: absolute; top: 22px; right: 22px; padding: 7px 12px; border-radius: 100px; color: var(--ink); background: var(--yellow); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.plan-label { display: block; margin-bottom: 15px; color: var(--orange-dark); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.plan-card-expanded .plan-label { color: var(--yellow); }
.plan-price { display: block; font-family: "Manrope", sans-serif; font-size: clamp(2.2rem, 4vw, 3.4rem); letter-spacing: -.055em; line-height: 1; }
.plan-head p { min-height: 55px; margin: 18px 0 0; color: var(--muted); }
.plan-card-expanded .plan-head p { color: rgba(255,255,255,.66); }
.plan-card ul { margin: 35px 0; padding: 26px 0 0; border-top: 1px solid var(--line); list-style: none; }
.plan-card-expanded ul { border-top-color: rgba(255,255,255,.14); }
.plan-card li { display: flex; gap: 12px; margin: 13px 0; }
.plan-card li span { color: var(--orange); font-weight: 800; }
.plan-card li.is-muted { color: #9a9189; }
.plan-card li.is-muted span { color: #b8afa7; }
.plan-card .button { width: 100%; margin-top: auto; }
.plan-button { color: var(--ink); border: 1px solid var(--ink); background: white; }
.plan-button:hover { color: white; background: var(--ink); }
.plans-note { max-width: 760px; margin: 26px auto 0; color: var(--muted); text-align: center; font-size: .78rem; }

.steps { position: relative; color: white; background: var(--green); }
.steps::after { content: ""; position: absolute; top: 0; right: 0; width: 38%; height: 100%; background: radial-gradient(circle at 100% 0, rgba(255,217,80,.17), transparent 65%); pointer-events: none; }
.steps-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.eyebrow-light { color: var(--yellow); }
.steps-intro p:not(.eyebrow) { margin: 28px 0 34px; color: rgba(255,255,255,.7); }
.step-list { margin: 0; padding: 0; list-style: none; }
.step-list li { display: grid; grid-template-columns: 62px 1fr; gap: 25px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.17); }
.step-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.17); }
.step-list > li > span { display: grid; place-items: center; width: 49px; height: 49px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--yellow); font-weight: 800; }
.step-list h3 { margin: 0 0 7px; font-family: "Manrope"; font-size: 1.3rem; }
.step-list p { margin: 0; color: rgba(255,255,255,.66); }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-lead { max-width: 390px; color: var(--muted); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; list-style: none; font-family: "Manrope"; font-size: 1.12rem; font-weight: 700; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--orange); font-size: 1.5rem; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -8px 40px 25px 0; color: var(--muted); }

.contact-section { padding-top: 20px; background: linear-gradient(var(--cream), #f7efe3); }
.contact-card { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; padding: 75px; border-radius: 36px; color: white; background: var(--orange); box-shadow: 0 30px 70px rgba(168,72,0,.18); }
.contact-copy p:not(.eyebrow) { color: rgba(255,255,255,.84); }
.contact-copy ul { margin: 30px 0 0; padding: 0; list-style: none; }
.contact-copy li { margin: 10px 0; }
.contact-copy li span { display: inline-grid; place-items: center; width: 23px; height: 23px; margin-right: 9px; border-radius: 50%; color: var(--orange); background: white; font-size: .78rem; font-weight: 800; }
.contact-form { padding: 34px; border-radius: 24px; color: var(--ink); background: white; box-shadow: 0 24px 60px rgba(120,47,0,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 17px; font-size: .8rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #ded7cf; border-radius: 10px; outline: none; color: var(--ink); background: #fffdf9; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,118,0,.11); }
.contact-form textarea { resize: vertical; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: .72rem; }
.form-status { min-height: 24px; margin: 4px 0 0; color: var(--green); text-align: center; font-weight: 700; }
.form-status.is-sending { color: var(--muted); }
.form-status.is-error { color: #b42318; }
.contact-form button[aria-busy="true"] { cursor: wait; opacity: .72; }

footer { padding: 38px 0; color: #7b726b; background: #f7efe3; }
.footer-inner { display: flex; align-items: center; gap: 28px; }
.footer-brand img { width: 37px; }
.footer-branding { flex: 1; color: var(--ink); }
.footer-branding span { margin: 0 8px; color: var(--orange); }
.footer-legal { font-size: .78rem; }
.footer-inner a { color: var(--ink); font-weight: 700; }

@media (max-width: 980px) {
  .hero { padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { min-height: 600px; }
  .mobility-grid { grid-template-columns: 1fr; gap: 55px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading, .steps-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; }
  .section-heading, .steps-grid, .faq-grid, .contact-card { gap: 50px; }
  .benefit-card-featured { grid-row: auto; min-height: 500px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .plans-grid { max-width: 800px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .desktop-nav { display: none; }
  .header-inner { height: 68px; }
  .brand img { width: 32px; height: 40px; }
  .brand strong { font-size: 1.05rem; }
  .header-cta { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 52;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px 9px;
    border: 0;
    border-radius: 12px;
    background: var(--ink);
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: auto;
    border-radius: 2px;
    background: white;
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    border-top: 1px solid var(--line);
    background: rgba(255,250,242,.98);
    box-shadow: 0 20px 45px rgba(54,35,19,.13);
    opacity: 0;
    transition: max-height .28s ease, opacity .2s ease, visibility .2s ease;
  }
  .mobile-nav.is-open { max-height: 430px; visibility: visible; opacity: 1; }
  .mobile-nav-inner { display: flex; flex-direction: column; padding-top: 15px; padding-bottom: 22px; }
  .mobile-nav-inner > a:not(.button) {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 3px;
    border-bottom: 1px solid var(--line);
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
  }
  .mobile-nav-inner > a:not(.button) span { color: var(--orange); font-size: .69rem; letter-spacing: .08em; }
  .mobile-nav-inner .button { margin-top: 18px; color: white; }
  body.menu-open { overflow: hidden; }
  .hero { min-height: auto; padding: 62px 0 45px; }
  .hero h1 { max-width: 390px; font-size: clamp(2rem, 9.2vw, 2.75rem); line-height: 1.08; }
  .hero-lead { font-size: 1.04rem; }
  .hero-actions { width: 100%; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .proof { margin-top: 35px; }
  .hero-visual { min-height: 525px; transform: scale(.88); margin: -25px 0 -45px; }
  .phone { width: 280px; height: 560px; }
  .floating-card-search { left: -15px; }
  .floating-card-near { right: -15px; }
  .orbit-one { width: 420px; height: 420px; }
  .orbit-two { width: 340px; height: 340px; }
  .guide-categories { padding: 58px 0; }
  .categories-heading { display: block; margin-bottom: 24px; }
  .categories-heading h2 { margin-top: 8px; }
  .category-grid { gap: 11px; }
  .guide-category { min-height: 145px; padding: 20px 12px; border-radius: 20px; }
  .guide-category-icon { font-size: 2.45rem; }
  .guide-category strong { font-size: .9rem; }
  .mobility-visual { transform: none; }
  .map-canvas { height: 330px; }
  .section { padding: 82px 0; }
  .section-heading { gap: 25px; margin-bottom: 38px; }
  .benefit-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .benefit-card { min-height: 290px; padding: 28px; }
  .benefit-card-featured { min-height: 470px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: auto; padding: 32px 25px; }
  .plan-head p { min-height: 0; }
  .plan-card .button { margin-top: 28px; }
  .mini-result { right: 25px; bottom: 25px; left: 25px; }
  .steps-grid { gap: 45px; }
  .step-list li { grid-template-columns: 50px 1fr; gap: 17px; }
  .contact-card { width: 100%; padding: 55px 20px 20px; border-radius: 0; }
  .contact-form { padding: 24px 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-inner p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
