@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --orange: #ff4b0b;
    --orange-deep: #d93700;
    --ink: #171512;
    --muted: #6f6a63;
    --cream: #f6f1e8;
    --paper: #fffdf8;
    --line: rgba(23, 21, 18, .13);
    --shadow: 0 24px 70px rgba(31, 20, 12, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; background: var(--ink); color: #fff; transform: translateY(-150%); border-radius: 8px; }
.skip-link:focus { transform: none; }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(255, 253, 248, .94); backdrop-filter: blur(16px); border-color: var(--line); box-shadow: 0 8px 30px rgba(23,21,18,.06); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: block; padding: 4px 9px; border-radius: 12px; background: var(--ink); box-shadow: 0 7px 20px rgba(23,21,18,.13); }
.brand img { width: 142px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { text-decoration: none; font-size: 14px; font-weight: 700; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--orange); transition: right .2s ease; }
.main-nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 19px; border: 1px solid var(--ink); border-radius: 999px; transition: color .2s, background .2s; }
.nav-cta:hover { background: var(--ink); color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s, opacity .2s; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 145px 0 0;
    background:
        radial-gradient(circle at 78% 30%, rgba(255, 75, 11, .15), transparent 28%),
        linear-gradient(135deg, #fffdf8 0%, #f7f0e6 100%);
}
.hero::before {
    content: ""; position: absolute; inset: 0; opacity: .22; pointer-events: none;
    background-image: linear-gradient(rgba(23,21,18,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(23,21,18,.05) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-glow { position: absolute; width: 540px; height: 540px; border-radius: 50%; background: rgba(255,75,11,.08); right: -160px; top: 110px; filter: blur(2px); }
.hero-grid { position: relative; z-index: 1; min-height: 650px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 65px; }
.eyebrow { display: flex; gap: 11px; align-items: center; margin: 0 0 20px; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; }
.eyebrow span { width: 27px; height: 2px; background: var(--orange); }
h1, h2 { margin: 0; font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -.055em; line-height: .96; }
h1 { font-size: clamp(58px, 7.4vw, 104px); }
h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-lede { max-width: 600px; margin: 30px 0 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; gap: 13px; margin-top: 34px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 54px; padding: 0 24px; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 15px; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--orange); box-shadow: 0 14px 32px rgba(255,75,11,.28); }
.button-primary:hover { background: var(--orange-deep); box-shadow: 0 18px 38px rgba(255,75,11,.34); }
.button-quiet { border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.button-quiet:hover { background: #fff; }
.button-dark { color: #fff; background: var(--ink); }
.trust-row { display: flex; gap: 0; margin-top: 46px; }
.trust-row div { padding: 0 24px; border-left: 1px solid var(--line); }
.trust-row div:first-child { padding-left: 0; border-left: 0; }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { font-size: 13px; }
.trust-row span { margin-top: 5px; color: var(--muted); font-size: 12px; }

.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.phone {
    position: relative; z-index: 2; width: 292px; height: 580px; padding: 11px; overflow: hidden;
    border: 8px solid #191714; border-radius: 42px; background: #fff; box-shadow: 0 35px 70px rgba(25,18,12,.23), inset 0 0 0 1px rgba(255,255,255,.15);
    transform: rotate(2.5deg);
}
.phone-top { position: absolute; z-index: 5; left: 22px; right: 22px; top: 10px; height: 27px; display: flex; justify-content: space-between; align-items: center; font-size: 9px; font-weight: 800; }
.phone-top i { width: 68px; height: 20px; border-radius: 0 0 14px 14px; background: #191714; }
.map-ui { position: relative; height: 62%; overflow: hidden; border-radius: 27px 27px 13px 13px; background: #e9e4da; }
.map-road { position: absolute; background: #fff; box-shadow: 0 0 0 1px #d7d1c8; }
.road-one { width: 420px; height: 26px; left: -60px; top: 130px; transform: rotate(-23deg); }
.road-two { width: 350px; height: 20px; left: -35px; top: 70px; transform: rotate(65deg); }
.road-three { width: 350px; height: 22px; left: 30px; top: 220px; transform: rotate(25deg); }
.map-block { position: absolute; border-radius: 10px; background: #d8d1c5; }
.block-one { width: 80px; height: 50px; top: 58px; left: 18px; }
.block-two { width: 105px; height: 65px; top: 172px; right: 5px; }
.block-three { width: 68px; height: 72px; top: 240px; left: 14px; }
.map-route { position: absolute; width: 110px; height: 215px; left: 93px; top: 65px; border: 5px solid var(--orange); border-width: 0 0 5px 5px; border-radius: 0 0 0 70px; transform: rotate(-9deg); }
.map-pin { position: absolute; z-index: 2; width: 18px; height: 18px; border: 4px solid #fff; border-radius: 50%; box-shadow: 0 3px 9px rgba(0,0,0,.2); }
.start-pin { left: 87px; top: 62px; background: var(--ink); }
.end-pin { right: 69px; bottom: 45px; background: var(--orange); }
.car-marker { position: absolute; z-index: 3; left: 80px; top: 165px; display: grid; place-items: center; width: 36px; height: 36px; border: 4px solid #fff; border-radius: 13px; color: #fff; background: var(--orange); box-shadow: 0 5px 15px rgba(0,0,0,.2); }
.ride-sheet { position: absolute; z-index: 4; left: 11px; right: 11px; bottom: 11px; min-height: 235px; padding: 11px 18px 18px; border-radius: 23px 23px 27px 27px; background: #fff; box-shadow: 0 -10px 30px rgba(0,0,0,.1); }
.sheet-handle { width: 35px; height: 4px; margin: 0 auto 14px; border-radius: 4px; background: #d6d1ca; }
.ride-sheet > p { margin: 0 0 14px; font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.driver-line { display: grid; grid-template-columns: 42px 1fr auto; gap: 10px; align-items: center; }
.avatar { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; background: var(--ink); border-radius: 50%; font-size: 12px; font-weight: 800; }
.driver-line div strong, .driver-line div small { display: block; }
.driver-line div strong { font-size: 13px; }
.driver-line div small { color: var(--muted); font-size: 9px; margin-top: 3px; }
.driver-line > b { padding: 6px 7px; border: 1px solid var(--line); border-radius: 6px; font-size: 8px; }
.trip-progress { height: 3px; margin: 26px 0 9px; border-radius: 2px; background: #e5e0d9; }
.trip-progress span { display: block; width: 42%; height: 100%; background: var(--orange); }
.trip-points { display: flex; justify-content: space-between; font-size: 9px; color: var(--muted); }
.trip-points strong { color: var(--ink); }
.route-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; min-width: 210px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.8); border-radius: 15px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.route-card-top { top: 62px; right: 0; }
.route-card-bottom { bottom: 70px; left: -10px; }
.route-card span:first-child { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 11px; color: #fff; background: var(--orange); font-weight: 900; }
.route-card small, .route-card strong { display: block; }
.route-card small { color: var(--muted); font-size: 9px; }
.route-card strong { margin-top: 2px; font-size: 11px; }
.route-card b { margin-left: auto; font-size: 11px; }
.hero-ticker { position: relative; z-index: 5; overflow: hidden; padding: 14px 0; color: #fff; background: var(--orange); transform: rotate(-1.2deg) scale(1.02); }
.hero-ticker div { display: flex; width: max-content; gap: 23px; align-items: center; animation: ticker 26s linear infinite; font-family: "Manrope"; font-weight: 800; font-size: 12px; letter-spacing: .14em; }
.hero-ticker i { font-style: normal; color: var(--ink); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; align-items: end; margin-bottom: 48px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
h2 { font-size: clamp(46px, 6vw, 78px); }
.section-heading > p:last-child { margin: 0 0 4px; max-width: 430px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { position: relative; min-height: 425px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.step-card.featured { color: #fff; background: var(--ink); border-color: var(--ink); transform: translateY(-16px); }
.step-number { font-family: "Manrope"; color: var(--orange); font-weight: 800; font-size: 13px; }
.step-illustration { position: relative; height: 205px; margin: 14px -5px 20px; overflow: hidden; border-radius: 17px; background: var(--cream); }
.featured .step-illustration { background: #282522; }
.step-card h3 { margin: 0 0 10px; font: 800 22px/1.2 "Manrope"; letter-spacing: -.025em; }
.step-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }
.step-card.featured p { color: #b9b2aa; }
.search-illustration { padding: 28px 22px; }
.search-bar { position: relative; z-index: 2; padding: 15px; border-radius: 12px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.08); font-size: 13px; }
.search-bar span { margin-left: 8px; color: var(--muted); }
.search-illustration i { display: block; height: 9px; margin: 15px 8px; border-radius: 4px; background: #ded8cf; }
.search-illustration i:nth-of-type(2) { width: 76%; }
.search-illustration i:nth-of-type(3) { width: 55%; }
.match-illustration { display: grid; place-items: center; }
.radar { position: absolute; border: 1px solid rgba(255,75,11,.5); border-radius: 50%; }
.r-one { width: 100px; height: 100px; }
.r-two { width: 175px; height: 175px; }
.radar-car { position: relative; display: grid; place-items: center; width: 50px; height: 50px; border: 6px solid #fff; border-radius: 16px; color: #fff; background: var(--orange); box-shadow: 0 0 0 14px rgba(255,75,11,.12); }
.arrive-illustration { display: grid; place-items: center; }
.arrive-line { position: absolute; width: 72%; height: 5px; background: repeating-linear-gradient(90deg, var(--orange) 0 10px, transparent 10px 18px); }
.arrive-illustration span { position: relative; display: grid; place-items: center; width: 70px; height: 70px; border: 7px solid #fff; border-radius: 50%; color: #fff; background: var(--orange); box-shadow: 0 10px 25px rgba(255,75,11,.25); font-size: 28px; font-weight: 800; }

.safety { color: #fff; background: var(--ink); overflow: hidden; }
.safety-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.safety-art { position: relative; min-height: 520px; display: grid; place-items: center; }
.safety-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit-one { width: 390px; height: 390px; }
.orbit-two { width: 510px; height: 510px; }
.safety-badge { position: relative; z-index: 2; display: grid; place-items: center; width: 280px; height: 320px; text-align: center; border-radius: 140px 140px 42% 42%; background: var(--orange); box-shadow: 0 30px 70px rgba(255,75,11,.25); clip-path: polygon(50% 0, 91% 13%, 87% 68%, 50% 100%, 13% 68%, 9% 13%); }
.safety-badge span { display: grid; place-items: center; width: 70px; height: 70px; margin-bottom: -35px; border-radius: 50%; color: var(--orange); background: #fff; font-size: 30px; font-weight: 800; }
.safety-badge strong { font: 800 27px/1.15 "Manrope"; }
.safety-chip { position: absolute; z-index: 3; padding: 12px 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(39,36,32,.94); box-shadow: 0 14px 35px rgba(0,0,0,.25); font-size: 12px; font-weight: 700; }
.safety-chip::first-letter { color: var(--orange); }
.chip-one { left: 0; top: 130px; }
.chip-two { right: -10px; bottom: 105px; }
.eyebrow.light { color: #cbc4bb; }
.safety-copy > p:not(.eyebrow) { max-width: 590px; margin: 28px 0 0; color: #a9a29a; font-size: 17px; line-height: 1.7; }
.feature-list { list-style: none; padding: 0; margin: 40px 0 0; }
.feature-list li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.13); }
.feature-list li > span { color: var(--orange); font: 800 12px "Manrope"; }
.feature-list strong { display: block; font: 700 17px "Manrope"; }
.feature-list p { margin: 6px 0 0; color: #8e8881; font-size: 14px; line-height: 1.55; }

.driver-section { background: var(--cream); }
.driver-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; padding: 70px; border-radius: 34px; background: var(--orange); box-shadow: 0 25px 60px rgba(255,75,11,.18); overflow: hidden; }
.driver-copy > p:not(.eyebrow) { max-width: 570px; margin: 25px 0; color: rgba(23,21,18,.75); font-size: 17px; line-height: 1.65; }
.driver-copy h2 em { color: #fff; }
.driver-points { list-style: none; padding: 0; margin: 28px 0 34px; }
.driver-points li { margin: 12px 0; font-weight: 700; font-size: 14px; }
.driver-points span { display: inline-grid; place-items: center; width: 23px; height: 23px; margin-right: 9px; border-radius: 50%; color: #fff; background: var(--ink); font-size: 11px; }
.driver-dashboard { align-self: center; padding: 22px; border: 8px solid var(--ink); border-radius: 28px; background: #f7f4ee; box-shadow: 0 25px 60px rgba(31,14,5,.28); transform: rotate(2deg); }
.dashboard-head { display: grid; grid-template-columns: 12px 1fr; gap: 3px 8px; align-items: center; padding: 10px 2px 20px; }
.dashboard-head small { grid-column: 2; color: var(--muted); }
.online-dot { width: 10px; height: 10px; border-radius: 50%; background: #2fac66; box-shadow: 0 0 0 4px rgba(47,172,102,.15); }
.earnings-card { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; padding: 23px; color: #fff; border-radius: 18px; background: var(--ink); }
.earnings-card small { width: 100%; color: #9f9890; margin-bottom: 10px; }
.earnings-card strong { font: 800 28px "Manrope"; }
.earnings-card span { color: var(--orange); font-size: 11px; font-weight: 700; }
.offer-card { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: end; margin-top: 14px; padding: 21px; border-radius: 18px; background: #fff; box-shadow: 0 8px 25px rgba(0,0,0,.07); }
.offer-card div > * { display: block; }
.offer-label { color: var(--orange); font-size: 8px; letter-spacing: .12em; font-weight: 800; }
.offer-card strong { margin-top: 9px; font: 800 17px "Manrope"; }
.offer-card small { margin-top: 5px; color: var(--muted); }
.offer-card button { border: 0; border-radius: 999px; padding: 10px 16px; color: #fff; background: var(--orange); font-weight: 800; }

.apps-section { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.apps-section::before { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -210px; border-radius: 50%; background: rgba(255,75,11,.13); }
.apps-heading { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: end; margin-bottom: 48px; }
.apps-heading h2 em { color: var(--orange); }
.apps-heading > p { max-width: 470px; margin: 0 0 5px; color: #aaa39b; font-size: 17px; line-height: 1.7; }
.app-cards { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.app-card { display: flex; min-width: 0; min-height: 485px; flex-direction: column; align-items: flex-start; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 25px; background: #24211e; box-shadow: 0 20px 45px rgba(0,0,0,.18); }
.app-card:hover { border-color: rgba(255,75,11,.6); transform: translateY(-4px); transition: transform .22s ease, border-color .22s ease; }
.app-icon { width: 88px; height: 88px; flex: 0 0 88px; object-fit: cover; border-radius: 21px; background: #fff; box-shadow: 0 13px 30px rgba(0,0,0,.27); }
.super-elba-card .app-icon { padding: 7px; object-fit: contain; }
.app-card-copy { margin-top: 26px; }
.app-type { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.super-elba-card .app-type { color: #62a6ff; }
.app-card h3 { margin: 9px 0 12px; font: 800 25px/1.2 "Manrope", sans-serif; letter-spacing: -.03em; }
.app-card p { margin: 0; color: #aaa39b; font-size: 14px; line-height: 1.65; }
.store-links { display: grid; width: 100%; gap: 9px; margin-top: auto; padding-top: 28px; }
.store-button { display: flex; align-items: center; gap: 13px; min-height: 58px; padding: 9px 15px; color: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; background: #0d0c0b; text-decoration: none; transition: border-color .2s, background .2s; }
.store-button:hover { border-color: var(--orange); background: #171411; }
.store-button > span:last-child { display: grid; }
.store-button small { color: #aaa39b; font-size: 9px; line-height: 1; }
.store-button strong { margin-top: 3px; font: 700 17px/1 "Manrope", sans-serif; }
.store-symbol { display: grid; place-items: center; width: 26px; height: 26px; color: #fff; font-size: 18px; }
.play-symbol { display: grid; place-items: center; width: 26px; height: 26px; color: var(--orange); font-size: 20px; }

.contact-section { background: linear-gradient(180deg, var(--paper) 0%, #f7f2e9 100%); }
.contact-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: end; margin-bottom: 46px; }
.contact-heading .eyebrow { grid-column: 1 / -1; color: var(--orange); margin-bottom: 0; }
.contact-heading > p:last-child { max-width: 430px; margin: 0 0 4px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.contact-panel { display: grid; grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr); min-height: 590px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.contact-details { display: flex; flex-direction: column; align-items: flex-start; padding: 48px; }
.contact-details img.official-logo-large { width: min(175px, 55vw); height: auto; margin-bottom: 28px; padding: 8px 10px; border-radius: 13px; background: var(--ink); box-shadow: 0 12px 28px rgba(23,21,18,.13); }
.contact-country { margin: 0 0 28px; color: var(--orange); font: 800 13px "Manrope", sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.contact-item { width: 100%; padding: 19px 0; border-top: 1px solid var(--line); }
.contact-item > span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-item > a { display: inline-block; max-width: 330px; color: var(--ink); font: 700 17px/1.5 "Manrope", sans-serif; text-decoration: none; }
.contact-item > a:hover { color: var(--orange); }
.contact-actions { display: flex; align-items: stretch; gap: 10px; width: 100%; margin-top: auto; padding-top: 28px; }
.contact-actions .button { min-height: 50px; padding: 0 18px; gap: 12px; font-size: 13px; }
.contact-map { position: relative; min-height: 590px; background: #e7e2d9; }
.contact-map iframe { display: block; width: 100%; height: 100%; min-height: 590px; border: 0; filter: saturate(.8) contrast(.96); }
.map-link { position: absolute; right: 20px; bottom: 20px; padding: 12px 16px; color: #fff; border-radius: 999px; background: rgba(23,21,18,.9); box-shadow: 0 10px 24px rgba(0,0,0,.2); backdrop-filter: blur(10px); font-size: 12px; font-weight: 800; text-decoration: none; }
.map-link:hover { background: var(--orange); }
.site-footer { padding: 60px 0; color: #c4bdb5; background: #11100e; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; align-items: end; }
.footer-grid img.official-logo-footer { width: 140px; height: auto; }
.footer-grid > div p { max-width: 350px; margin: 18px 0 0; font-size: 13px; line-height: 1.6; }
.footer-grid nav { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 25px; }
.footer-grid nav a { text-decoration: none; font-size: 13px; }
.footer-grid nav a:hover { color: var(--orange); }
.copyright { margin: 0; text-align: right; font-size: 12px; line-height: 1.7; }

.legal-page { background: var(--paper); }
.legal-page .site-header { background: rgba(255,253,248,.95); }
.legal-back-link { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: 14px; font-weight: 800; text-decoration: none; }
.legal-back-link:hover { color: var(--orange); }
.legal-hero { padding: 165px 0 78px; overflow: hidden; background: radial-gradient(circle at 78% 35%, rgba(255,75,11,.17), transparent 25%), linear-gradient(135deg, #fffdf8, #f4ede2); }
.legal-hero-inner { position: relative; }
.legal-hero h1 { font-size: clamp(58px, 8vw, 104px); }
.legal-hero h1 em { color: var(--orange); font-style: normal; }
.legal-hero-inner > p:not(.eyebrow) { max-width: 720px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.legal-meta { display: inline-flex; flex-direction: column; gap: 4px; margin-top: 34px; padding: 14px 18px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.62); }
.legal-meta span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.legal-meta strong { font-size: 14px; }
.legal-layout { display: grid; grid-template-columns: 245px minmax(0, 790px); justify-content: space-between; gap: 70px; padding-top: 80px; padding-bottom: 120px; }
.legal-toc { position: sticky; top: 110px; align-self: start; max-height: calc(100vh - 140px); overflow-y: auto; padding: 24px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.legal-toc > p { margin: 0 0 15px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.legal-toc nav { display: grid; gap: 3px; }
.legal-toc a { padding: 6px 8px; color: var(--muted); border-radius: 7px; font-size: 12px; line-height: 1.35; text-decoration: none; }
.legal-toc a:hover { color: var(--ink); background: var(--cream); }
.legal-document { min-width: 0; }
.legal-introduction { padding: 34px; border-left: 5px solid var(--orange); border-radius: 0 18px 18px 0; background: var(--cream); }
.legal-document section { padding-top: 58px; scroll-margin-top: 100px; }
.legal-document h2 { display: flex; gap: 14px; align-items: flex-start; margin: 0 0 24px; font-size: clamp(27px, 4vw, 38px); line-height: 1.12; letter-spacing: -.04em; }
.legal-document h2 span { flex: 0 0 auto; margin-top: 5px; color: var(--orange); font: 800 11px "Manrope", sans-serif; letter-spacing: .1em; }
.legal-document h3 { margin: 34px 0 16px; font: 800 22px/1.25 "Manrope", sans-serif; }
.legal-document p, .legal-document li { color: #4f4b46; font-size: 15px; line-height: 1.82; }
.legal-document p { margin: 0 0 17px; }
.legal-document ul { margin: 14px 0 20px; padding-left: 23px; }
.legal-document li { padding-left: 6px; margin: 10px 0; }
.legal-document a:not(.button) { color: var(--orange-deep); font-weight: 700; }
.legal-callout { margin-top: 28px; padding: 24px; color: var(--ink); border-radius: 16px; background: #ffe5d9; font-size: 15px; font-weight: 700; line-height: 1.7; }
.permission-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.permission-list code { padding: 8px 11px; color: #5c270f; border: 1px solid rgba(255,75,11,.18); border-radius: 8px; background: #fff0e9; font-size: 12px; overflow-wrap: anywhere; }
.legal-home-button { margin-top: 58px; }
.legal-footer { position: relative; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .main-nav { gap: 18px; }
    .hero-grid { grid-template-columns: 1fr; padding-bottom: 60px; }
    .hero-copy { max-width: 720px; }
    .hero-visual { min-height: 610px; }
    .route-card-top { right: 10%; }
    .route-card-bottom { left: 10%; }
    .section-heading { grid-template-columns: 1fr; }
    .section-heading > p:last-child { margin-top: 24px; }
    .safety-grid { grid-template-columns: 1fr; gap: 35px; }
    .safety-art { order: 2; }
    .driver-panel { grid-template-columns: 1fr; }
    .driver-dashboard { max-width: 520px; width: 100%; justify-self: center; }
    .apps-heading { grid-template-columns: 1fr; gap: 22px; }
    .app-cards { grid-template-columns: 1fr 1fr; }
    .super-elba-card { grid-column: 1 / -1; min-height: 430px; }
    .contact-heading { grid-template-columns: 1fr; }
    .contact-heading > p:last-child { margin-top: 22px; }
    .contact-panel { grid-template-columns: 1fr; }
    .contact-details { min-height: 560px; }
    .contact-map, .contact-map iframe { min-height: 470px; }
    .legal-layout { grid-template-columns: 1fr; gap: 35px; }
    .legal-toc { position: static; max-height: none; }
    .legal-toc nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .shell { width: min(100% - 28px, 1180px); }
    .site-header { background: rgba(255,253,248,.96); }
    .site-header.menu-active, .site-header.menu-active.scrolled { background: transparent; border-color: transparent; box-shadow: none; backdrop-filter: none; }
    .nav-wrap { height: 70px; }
    .brand { position: relative; z-index: 3; padding: 3px 7px; border-radius: 10px; }
    .brand img { width: 116px; }
    .menu-toggle { display: block; position: relative; z-index: 2; }
    .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); }
    .main-nav { position: fixed; z-index: 1; inset: 0; width: 100vw; min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: 94px 28px 32px; overflow-y: auto; background: var(--paper); transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility 0s linear .25s; }
    .main-nav.open { transform: none; }
    .main-nav.open { visibility: visible; transition-delay: 0s; }
    .main-nav a { font: 800 24px "Manrope"; }
    .nav-cta { font-size: 17px !important; }
    .hero { padding-top: 115px; }
    .hero-grid { min-height: auto; gap: 50px; }
    h1 { font-size: clamp(51px, 15vw, 75px); }
    .hero-lede { margin-top: 23px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .button { width: 100%; }
    .trust-row { display: grid; grid-template-columns: 1fr 1fr; row-gap: 20px; }
    .trust-row div { padding: 0 14px; }
    .trust-row div:nth-child(3) { border-left: 0; padding-left: 0; }
    .hero-visual { min-height: 560px; transform: scale(.92); margin: -20px 0; }
    .route-card-top { right: 0; }
    .route-card-bottom { left: 0; }
    .section { padding: 85px 0; }
    .steps { grid-template-columns: 1fr; gap: 14px; }
    .step-card, .step-card.featured { min-height: 390px; transform: none; }
    .safety-art { min-height: 440px; transform: scale(.88); margin: -25px -20px; }
    .driver-panel { padding: 40px 24px; border-radius: 26px; gap: 45px; }
    .driver-dashboard { transform: none; }
    .app-cards { grid-template-columns: 1fr; }
    .app-card, .super-elba-card { grid-column: auto; min-height: 450px; padding: 25px; }
    .contact-panel { border-radius: 24px; }
    .contact-details { min-height: auto; padding: 34px 24px; }
    .contact-actions { width: 100%; flex-direction: column; margin-top: 12px; }
    .contact-map, .contact-map iframe { min-height: 380px; }
    .footer-grid { grid-template-columns: 1fr; align-items: start; }
    .copyright { text-align: left; }
    .legal-hero { padding: 125px 0 60px; }
    .legal-layout { padding-top: 45px; padding-bottom: 85px; }
    .legal-toc { padding: 18px; }
    .legal-toc nav { grid-template-columns: 1fr; }
    .legal-introduction { padding: 25px 22px; }
    .legal-document section { padding-top: 46px; }
    .legal-document h2 { gap: 10px; }
}

@media (max-width: 420px) {
    .hero-visual { transform: scale(.82); margin: -55px -28px; }
    .route-card { min-width: 196px; }
    .route-card-top { right: -15px; }
    .route-card-bottom { left: -15px; }
    .offer-card { grid-template-columns: 1fr; }
    .offer-card button { width: 100%; }
}

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