:root {
  --yellow: #f7c800;
  --yellow-deep: #d9a900;
  --yellow-soft: #fff4b8;
  --ink: #292a26;
  --ink-2: #3d3e39;
  --muted: #6d6d65;
  --line: #dedbd0;
  --cream: #f6f3e9;
  --paper: #fffef9;
  --white: #fff;
  --green: #1da66b;
  --shadow: 0 24px 70px rgba(38, 39, 34, .12);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", sans-serif; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }

.loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: var(--paper); transition: opacity .45s ease, visibility .45s ease; }
.loader.hide { opacity: 0; visibility: hidden; }
.loader span { width: 42px; height: 42px; border: 4px solid var(--line); border-top-color: var(--yellow); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; border-bottom: 1px solid transparent; transition: .3s ease; }
.site-header.scrolled { background: rgba(255, 254, 249, .9); border-bottom-color: rgba(41, 42, 38, .1); backdrop-filter: blur(18px); }
.navbar { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.logo-mark { width: 43px; height: 43px; display: grid; place-items: center; background: var(--yellow); border: 2px solid var(--ink); border-radius: 12px 4px 12px 4px; font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 800; box-shadow: 4px 4px 0 var(--ink); }
.logo-copy { display: grid; line-height: 1.1; }
.logo-copy strong { font-family: "Manrope", sans-serif; font-size: 15px; }
.logo-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.menu { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.menu a { position: relative; font-size: 14px; font-weight: 600; }
.menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--yellow-deep); transition: right .25s ease; }
.menu a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.burger { width: 44px; height: 44px; display: none; place-items: center; gap: 5px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: .25s ease; }

.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 10px; font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn svg, .text-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-yellow { color: var(--ink); background: var(--yellow); box-shadow: 0 12px 30px rgba(218, 169, 0, .22); }
.btn-yellow:hover { background: #ffd322; box-shadow: 0 16px 34px rgba(218, 169, 0, .3); }
.btn-dark { color: var(--white); background: var(--ink); }
.btn-dark:hover { background: #41423d; box-shadow: 0 12px 28px rgba(41, 42, 38, .18); }
.btn-ghost { border-color: rgba(41, 42, 38, .25); background: rgba(255, 255, 255, .35); }
.btn-ghost:hover { border-color: var(--ink); background: var(--white); }
.btn-sm { min-height: 44px; padding-inline: 18px; font-size: 12px; }
.btn-block { width: 100%; }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; padding: 128px 0 62px; overflow: hidden; background:
  radial-gradient(circle at 80% 17%, rgba(247, 200, 0, .46), transparent 27%),
  radial-gradient(circle at 46% 50%, rgba(255, 255, 255, .96), transparent 34%),
  linear-gradient(115deg, #fffef9 0%, #fffdf2 48%, #f6eab0 100%); }
.hero::before { content: ""; position: absolute; width: 460px; height: 460px; right: -100px; top: 60px; border: 1px solid rgba(41, 42, 38, .12); border-radius: 50%; }
.hero::after { content: ""; position: absolute; width: 720px; height: 720px; right: -180px; top: -72px; border: 1px solid rgba(41, 42, 38, .08); border-radius: 50%; }
.hero-lines { position: absolute; inset: 0; opacity: .3; background-image: repeating-linear-gradient(117deg, transparent 0 78px, rgba(41,42,38,.08) 79px, transparent 80px 160px); mask-image: linear-gradient(to right, transparent 0, #000 65%, transparent 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 28px; }
.hero-content { max-width: 610px; animation: rise .75s .15s both; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-family: "Manrope", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow i { width: 28px; height: 2px; background: var(--yellow-deep); }
.eyebrow--light { color: rgba(255,255,255,.68); }
.eyebrow--light i { background: var(--yellow); }
.hero h1, .section-heading h2, .application-copy h2, .benefit-intro h2, .final-cta h2 { margin: 20px 0 22px; font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -.052em; line-height: 1.04; }
.hero h1 { max-width: 640px; font-size: clamp(48px, 5.2vw, 78px); }
.hero h1 em { position: relative; font-style: normal; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 9px; background: var(--yellow); z-index: -1; transform: rotate(-1deg); }
.hero-content > p { max-width: 570px; margin: 0; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin: 34px 0 30px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 0; padding: 0; list-style: none; }
.trust-list li { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; }
.trust-list svg { width: 17px; height: 17px; fill: none; stroke: var(--yellow-deep); stroke-width: 2; }
.hero-visual { position: relative; min-height: 590px; animation: rise .85s .3s both; }
.mobility-art { width: 118%; max-width: none; margin-left: -10%; overflow: visible; }
.money-note--one { animation: float 5s ease-in-out infinite; transform-origin: center; }
.money-note--two { animation: float 4.4s .8s ease-in-out infinite; transform-origin: center; }
.bike-art { animation: bikeBob 4s ease-in-out infinite; }
.visual-label { position: absolute; z-index: 4; padding: 8px 12px; border: 1px solid rgba(41,42,38,.18); border-radius: 999px; background: rgba(255,255,255,.82); box-shadow: 0 10px 28px rgba(41,42,38,.1); backdrop-filter: blur(8px); font-size: 11px; font-weight: 700; }
.label-car { right: 2%; top: 49%; }.label-bike { right: -2%; bottom: 12%; }.label-cash { left: 3%; bottom: 17%; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes float { 50% { translate: 0 -12px; rotate: -2deg; } }
@keyframes bikeBob { 50% { translate: 0 -5px; } }

.section-heading h2, .application-copy h2, .benefit-intro h2 { font-size: clamp(36px, 4vw, 56px); }
.section-heading > p, .section-heading--row > p { color: var(--muted); }
.section-heading--row { display: grid; grid-template-columns: 1.2fr .55fr; align-items: end; gap: 70px; margin-bottom: 52px; }
.section-heading--row h2 { max-width: 680px; margin-bottom: 0; }
.section-heading--row > p { margin: 0 0 6px; }
.section-heading--center { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p { max-width: 620px; margin-inline: auto; }

.about { background: var(--ink); color: var(--white); }
.about-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.sticky-heading { align-self: start; position: sticky; top: 120px; }
.sticky-heading h2 { margin-bottom: 0; }
.about-copy .lead { margin: 0 0 46px; color: rgba(255,255,255,.82); font-size: clamp(20px, 2.2vw, 29px); line-height: 1.5; }
.about-points article { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.14); }
.about-points article > span { color: var(--yellow); font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 800; }
.about-points h3 { margin: 0 0 8px; font: 700 18px "Manrope", sans-serif; }
.about-points p { margin: 0; color: rgba(255,255,255,.58); }

.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 300px; display: flex; flex-direction: column; align-items: flex-start; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.44); overflow: hidden; transition: background .3s ease, transform .3s ease, box-shadow .3s ease; }
.service-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -80px; bottom: -80px; border: 1px solid rgba(41,42,38,.12); border-radius: 50%; transition: transform .35s ease; }
.service-card:hover { z-index: 2; background: var(--white); transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.5); }
.service-card--wide { grid-column: span 1; background: var(--yellow); }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--white); border: 1px solid rgba(41,42,38,.12); }
.service-icon svg { width: 27px; height: 27px; fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-no { position: absolute; top: 38px; right: 36px; color: var(--muted); font: 700 11px "Manrope", sans-serif; }
.service-card h3 { margin: 36px 0 10px; font: 800 23px "Manrope", sans-serif; letter-spacing: -.03em; }
.service-card p { max-width: 290px; margin: 0 0 24px; color: var(--muted); }
.service-card--wide p, .service-card--wide .service-no { color: rgba(41,42,38,.72); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-size: 13px; font-weight: 800; }

.process { color: var(--white); background: #242521; }
.process .section-heading h2 { color: var(--white); }
.process .section-heading--row > p { color: rgba(255,255,255,.58); }
.process-accordions { border-top: 1px solid rgba(255,255,255,.18); }
.process-item { border-bottom: 1px solid rgba(255,255,255,.18); }
.accordion-trigger { width: 100%; border: 0; background: transparent; cursor: pointer; text-align: left; }
.process-trigger { min-height: 98px; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; color: var(--white); }
.process-trigger > span { display: flex; align-items: center; gap: 18px; font: 700 clamp(19px, 2.4vw, 29px) "Manrope", sans-serif; }
.process-trigger svg { width: 28px; height: 28px; fill: none; stroke: var(--yellow); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.accordion-toggle { position: relative; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid currentColor; border-radius: 50%; opacity: .8; }
.accordion-toggle::before, .accordion-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1px; background: currentColor; transform: translate(-50%,-50%); transition: transform .3s ease; }
.accordion-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-trigger[aria-expanded="true"] .accordion-toggle::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .42s cubic-bezier(.22,.8,.25,1); }
.accordion-item.open > .accordion-content { grid-template-rows: 1fr; }
.accordion-inner { min-height: 0; overflow: hidden; }
.process-panel { display: grid; grid-template-columns: 1fr .78fr; gap: 75px; padding: 20px 8px 66px; }
.process-steps { counter-reset: steps; }
.process-step { position: relative; display: grid; grid-template-columns: 66px 1fr; gap: 22px; padding-bottom: 26px; }
.process-step:not(:last-child)::after { content: ""; position: absolute; left: 32px; top: 54px; bottom: 4px; width: 1px; background: rgba(255,255,255,.24); }
.process-step > span { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: #2c2d29; }
.process-step svg { width: 25px; height: 25px; fill: none; stroke: var(--yellow); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.process-step small { color: rgba(255,255,255,.38); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.process-step h3 { margin: 2px 0 3px; font: 700 19px "Manrope", sans-serif; }
.process-step p { margin: 0; color: rgba(255,255,255,.54); font-size: 14px; }
.consult-art, .vehicle-panel-art { align-self: center; padding: 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: rgba(255,255,255,.04); }
.consult-art svg, .vehicle-panel-art svg { width: 100%; }
.consult-art div { display: grid; padding: 0 18px 14px; }
.consult-art span { color: rgba(255,255,255,.52); font-size: 13px; }
.vehicle-panel-art { display: grid; align-content: center; text-align: center; }
.vehicle-panel-art strong { padding-bottom: 24px; }

.requirements { background: var(--paper); }
.requirement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.requirement-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 30px rgba(41,42,38,.04); overflow: hidden; }
.requirement-card.open { border-color: #d1b126; box-shadow: 0 18px 50px rgba(41,42,38,.09); }
.requirement-trigger { min-height: 108px; display: grid; grid-template-columns: 56px 1fr 36px; align-items: center; gap: 18px; padding: 20px 24px; }
.requirement-trigger small, .requirement-trigger strong { display: block; }
.requirement-trigger small { color: var(--muted); font-size: 11px; }
.requirement-trigger strong { font: 800 19px "Manrope", sans-serif; }
.requirement-trigger .service-icon { background: var(--yellow-soft); }
.requirement-content { padding: 0 24px 26px; }
.requirement-content ul { display: grid; gap: 10px; margin: 0 0 24px; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.requirement-content li { position: relative; padding-left: 25px; color: var(--muted); font-size: 14px; }
.requirement-content li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px var(--yellow-soft); }
.quick-form { padding-top: 22px; border-top: 1px solid var(--line); }
.quick-form fieldset { display: flex; gap: 10px; margin: 0 0 18px; padding: 0; border: 0; }
.quick-form legend { width: 100%; margin-bottom: 8px; font-size: 12px; font-weight: 700; }
.quick-form fieldset label { flex: 1; }
.quick-form fieldset input { position: absolute; opacity: 0; pointer-events: none; }
.quick-form fieldset span { display: grid; place-items: center; height: 46px; border: 1px solid var(--line); border-radius: 9px; font-weight: 700; cursor: pointer; }
.quick-form fieldset input:checked + span { border-color: var(--yellow-deep); background: var(--yellow-soft); }
.quick-form > label { display: grid; gap: 7px; margin-bottom: 15px; font-size: 12px; font-weight: 700; }
.quick-form input, .application-form input, .application-form select { width: 100%; height: 51px; padding: 0 15px; color: var(--ink); border: 1px solid var(--line); border-radius: 9px; outline: 0; background: var(--paper); transition: border .2s ease, box-shadow .2s ease; }
.quick-form input:focus, .application-form input:focus, .application-form select:focus { border-color: var(--yellow-deep); box-shadow: 0 0 0 4px rgba(247,200,0,.16); }

.application { background: var(--ink); color: var(--white); }
.application-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.application-copy { position: sticky; top: 120px; }
.application-copy > p { max-width: 520px; color: rgba(255,255,255,.58); }
.message-preview { margin-top: 38px; padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.04); }
.message-preview span { color: var(--yellow); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.message-preview p { margin: 12px 0 0; color: rgba(255,255,255,.7); font-size: 13px; white-space: pre-line; }
.application-form { padding: 36px; border-radius: 24px; background: var(--paper); color: var(--ink); box-shadow: 0 28px 80px rgba(0,0,0,.24); }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 700; }
.form-field input, .form-field select { height: 54px; background: var(--white); }
.field-error { display: none; margin-top: 5px; color: #a03a31; font-size: 11px; }
.form-field.invalid input, .form-field.invalid select { border-color: #b64b42; }
.form-field.invalid .field-error { display: block; }
.dynamic-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.dynamic-fields .form-field.full { grid-column: 1 / -1; }
.btn-submit { min-height: 57px; margin-top: 4px; }
.btn-submit svg { width: 22px; height: 22px; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 16px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.form-note svg { width: 15px; height: 15px; fill: none; stroke: var(--green); stroke-width: 2; }

.benefit { background: var(--cream); }
.benefit-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.benefit-intro p { margin: 0 0 28px; color: var(--muted); }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; }
.benefit-list article { min-height: 245px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.4); }
.benefit-list article:nth-child(odd) { border-left: 1px solid var(--line); }
.benefit-list article:nth-child(-n+2) { border-top: 1px solid var(--line); }
.benefit-list article.featured { background: var(--yellow); }
.benefit-list article > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--white); }
.benefit-list svg { width: 23px; height: 23px; fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefit-list small { display: block; margin: 24px 0 6px; color: var(--muted); font-size: 10px; }
.benefit-list h3 { margin: 0 0 7px; font: 800 18px "Manrope", sans-serif; }
.benefit-list p { margin: 0; color: var(--muted); font-size: 13px; }

.testimonials { background: var(--paper); }
.testimonial-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 18px; }
.testimonial-grid blockquote { min-height: 330px; display: flex; flex-direction: column; margin: 0; padding: 34px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.testimonial-grid blockquote:first-child { color: var(--white); background: var(--ink); }
.quote-mark { color: var(--yellow); font: 800 52px/1 "Manrope", sans-serif; }
.testimonial-grid blockquote > p { margin: 22px 0 30px; font-size: 17px; line-height: 1.7; }
.testimonial-grid footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-grid footer > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--yellow); font-size: 11px; font-weight: 800; }
.testimonial-grid footer div { display: grid; }
.testimonial-grid footer small { color: var(--muted); font-size: 11px; }
.testimonial-grid blockquote:first-child footer small { color: rgba(255,255,255,.5); }

.faq { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; align-items: start; }
.faq .sticky-heading h2 { margin-bottom: 18px; }
.faq-tabs { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.faq-tabs button { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }
.faq-tabs button.active { border-color: var(--ink); color: var(--white); background: var(--ink); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item.hidden { display: none; }
.faq-trigger { min-height: 78px; display: grid; grid-template-columns: 1fr 34px; align-items: center; gap: 20px; padding: 0 6px; font: 700 16px "Manrope", sans-serif; }
.faq-item .accordion-inner { padding: 0 55px 24px 6px; }
.faq-item .accordion-inner p { margin: 0; color: var(--muted); }

.final-cta { padding: 90px 0; background: var(--yellow); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { margin: 12px 0 10px; font-size: clamp(37px, 4.5vw, 62px); }
.final-cta p { margin: 0; }
.final-cta .eyebrow { color: rgba(41,42,38,.7); }
.final-cta .eyebrow i { background: var(--ink); }

.footer { padding: 64px 0 24px; color: var(--white); background: #20211e; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.3fr .8fr; gap: 60px; align-items: start; }
.logo--footer .logo-copy small { color: rgba(255,255,255,.42); }
.footer-grid > p { max-width: 390px; margin: 0; color: rgba(255,255,255,.5); }
.footer-links { display: grid; justify-content: end; gap: 10px; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 10px; }

.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; align-items: center; gap: 12px; padding: 10px 16px 10px 10px; border: 1px solid rgba(29,166,107,.3); border-radius: 18px; background: var(--white); box-shadow: 0 14px 45px rgba(22,83,58,.22); transition: transform .25s ease, box-shadow .25s ease; }
.wa-float:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(22,83,58,.28); }
.wa-wave { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; color: var(--white); background: var(--green); }
.wa-wave svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.wa-copy { display: grid; line-height: 1.2; }
.wa-copy small { color: var(--green); font-size: 10px; font-weight: 800; }
.wa-copy strong { margin: 2px 0; font-size: 13px; }
.wa-copy em { color: var(--muted); font-size: 10px; font-style: normal; text-transform: uppercase; letter-spacing: .06em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .menu { gap: 18px; }
  .menu a { font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 500px; }
  .about-layout, .application-layout, .benefit-layout, .faq-layout { gap: 55px; }
  .process-panel { gap: 40px; }
}

@media (max-width: 900px) {
  :root { --container: min(calc(100% - 32px), 720px); }
  .section { padding: 86px 0; }
  .nav-actions .btn { display: none; }
  .burger { display: grid; }
  .menu { position: fixed; inset: 84px 0 auto; display: grid; gap: 0; padding: 18px 24px 28px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px rgba(41,42,38,.1); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
  .menu.open { opacity: 1; visibility: visible; transform: none; }
  .menu li { border-bottom: 1px solid var(--line); }
  .menu a { display: block; padding: 15px 0; font-size: 15px; }
  .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 680px; }
  .hero-visual { min-height: 550px; max-width: 720px; }
  .mobility-art { width: 100%; margin: -20px 0 0; }
  .about-layout, .application-layout, .benefit-layout, .faq-layout { grid-template-columns: 1fr; }
  .sticky-heading, .application-copy { position: static; }
  .section-heading--row { grid-template-columns: 1fr; gap: 18px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-panel { grid-template-columns: 1fr; }
  .consult-art, .vehicle-panel-art { max-width: 520px; margin: auto; }
  .application-copy > p { max-width: 650px; }
  .message-preview { display: none; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid blockquote:first-child { grid-column: 1 / -1; }
  .faq .sticky-heading { margin-bottom: 20px; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 28px); --radius: 17px; }
  .section { padding: 70px 0; }
  .navbar { min-height: 74px; }
  .logo-copy small { display: none; }
  .menu { inset-block-start: 74px; }
  .hero { padding: 112px 0 38px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-content > p { font-size: 15px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { flex: 1; padding-inline: 12px; font-size: 12px; }
  .trust-list { display: grid; gap: 9px; }
  .hero-visual { min-height: 360px; margin-top: 18px; }
  .mobility-art { width: 115%; margin-left: -10%; }
  .visual-label { font-size: 9px; }
  .label-car { right: -2%; top: 46%; }.label-bike { right: -3%; bottom: 7%; }.label-cash { left: -2%; bottom: 8%; }
  .section-heading h2, .application-copy h2, .benefit-intro h2 { font-size: 36px; }
  .about-layout { gap: 40px; }
  .about-points article { grid-template-columns: 42px 1fr; gap: 14px; }
  .service-grid, .requirement-grid, .benefit-list, .testimonial-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; padding: 28px; }
  .benefit-list article, .benefit-list article:nth-child(odd), .benefit-list article:nth-child(-n+2) { border: 0; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .benefit-list article:first-child { border-top: 1px solid var(--line); }
  .process-trigger { min-height: 84px; padding-inline: 2px; }
  .process-trigger > span { gap: 12px; font-size: 17px; }
  .process-trigger svg { width: 23px; height: 23px; }
  .process-panel { padding-bottom: 38px; }
  .process-step { grid-template-columns: 54px 1fr; gap: 15px; }
  .process-step > span { width: 52px; height: 52px; }
  .process-step:not(:last-child)::after { left: 26px; top: 48px; }
  .requirement-trigger { grid-template-columns: 50px 1fr 32px; padding: 17px; }
  .application-form { padding: 24px 18px; }
  .dynamic-fields { grid-template-columns: 1fr; }
  .dynamic-fields .form-field.full { grid-column: auto; }
  .testimonial-grid blockquote:first-child { grid-column: auto; }
  .testimonial-grid blockquote { min-height: 285px; }
  .final-cta-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .final-cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { justify-content: start; }
  .wa-float { right: 14px; bottom: 14px; padding-right: 11px; }
  .wa-copy em { display: none; }
}

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