:root {
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-500: #ff6b00;
    --orange-600: #f05f00;
    --orange-700: #c94a00;
    --green-500: #18b66a;
    --green-600: #0ea45b;
    --ink-900: #111827;
    --ink-800: #1f2937;
    --ink-700: #374151;
    --ink-600: #4b5563;
    --ink-500: #6b7280;
    --line: #e5e7eb;
    --soft: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 12px 30px rgba(17, 24, 39, .08);
    --shadow-md: 0 24px 60px rgba(17, 24, 39, .12);
    --shadow-lg: 0 36px 90px rgba(255, 107, 0, .22);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--white);
    color: var(--ink-900);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }


.icon-ui {
    width: 1em;
    height: 1em;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.site-shell { overflow: hidden; min-height: 100vh; }

.top-announcement {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    color: #7c2d12;
    background: linear-gradient(90deg, #fff7ed, #fff1e6 50%, #ecfdf5);
    border-bottom: 1px solid rgba(249, 115, 22, .14);
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--green-500);
    box-shadow: 0 0 0 0 rgba(24, 182, 106, .48);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 10px rgba(24, 182, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 182, 106, 0); }
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, .75);
    transition: box-shadow .25s ease, background .25s ease;
}

.main-header.scrolled {
    box-shadow: 0 14px 34px rgba(17, 24, 39, .08);
    background: rgba(255, 255, 255, .94);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -.04em;
}
.brand-logo { width: 42px; height: 42px; }
.brand-text {
    font-size: 26px;
    background: linear-gradient(135deg, var(--ink-900), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav a {
    padding: 10px 13px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-600);
    border-radius: 999px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-nav a:hover { color: var(--ink-900); background: var(--soft); }
.main-nav .nav-cta {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-500), #ff8a00);
    box-shadow: 0 12px 28px rgba(255, 107, 0, .24);
    margin-left: 8px;
}
.main-nav .nav-cta:hover { color: var(--white); transform: translateY(-1px); background: linear-gradient(135deg, var(--orange-600), #ff7900); }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 14px;
    padding: 10px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink-800);
    margin: 5px 0;
    border-radius: 2px;
}

.hero-section {
    position: relative;
    padding: 86px 0 76px;
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 107, 0, .14), transparent 31%),
        radial-gradient(circle at 83% 28%, rgba(24, 182, 106, .12), transparent 27%),
        linear-gradient(180deg, #fffdfb 0%, #fff 66%);
}
.hero-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    opacity: .75;
    pointer-events: none;
}
.hero-bg-orb-1 {
    width: 320px;
    height: 320px;
    top: 90px;
    left: -180px;
    background: rgba(255, 107, 0, .10);
}
.hero-bg-orb-2 {
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: 40px;
    background: rgba(24, 182, 106, .10);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 52px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    color: #9a3412;
    background: #fff7ed;
    border: 1px solid rgba(255, 107, 0, .18);
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}
.badge-icon { display: grid; place-items: center; width: 20px; height: 20px; color: var(--orange-600); }
.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: .96;
    letter-spacing: -.045em;
    font-weight: 900;
    color: var(--ink-900);
}
.hero-copy h1 span {
    background: linear-gradient(135deg, var(--orange-500), #ff9f1c 45%, var(--green-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-lead {
    max-width: 640px;
    margin: 0 0 30px;
    color: var(--ink-600);
    font-size: 19px;
    line-height: 1.75;
}
.hero-actions, .inline-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: -.015em;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-500), #ff8a00);
    box-shadow: var(--shadow-lg);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--orange-600), #ff7800); }
.btn-secondary {
    color: var(--ink-900);
    background: var(--white);
    border-color: rgba(17, 24, 39, .10);
    box-shadow: var(--shadow-sm);
}
.btn-light {
    color: var(--ink-900);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}
.text-link {
    font-weight: 900;
    color: var(--orange-600);
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
    max-width: 620px;
}
.hero-trust div {
    padding: 16px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .05);
}
.hero-trust strong {
    display: block;
    font-size: 22px;
    letter-spacing: -.04em;
}
.hero-trust span { display: block; color: var(--ink-500); font-size: 13px; font-weight: 700; }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 650px;
}
.phone-mockup {
    position: relative;
    width: min(100%, 374px);
    height: 654px;
    padding: 14px;
    border-radius: 44px;
    background: linear-gradient(145deg, #111827, #273244);
    box-shadow: 0 40px 100px rgba(17, 24, 39, .25), inset 0 0 0 1px rgba(255,255,255,.08);
}
.phone-topbar {
    height: 38px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 800;
}
.phone-sensors { display: flex; gap: 5px; }
.phone-sensors i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.8); }
.app-screen {
    height: calc(100% - 38px);
    overflow: hidden;
    border-radius: 32px;
    padding: 18px;
    background: #fffaf5;
}
.app-hero-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 22px;
    min-height: 148px;
    color: white;
    border-radius: 28px;
    background: linear-gradient(135deg, #ff6b00, #ff9f1c 62%, #18b66a);
    box-shadow: 0 20px 42px rgba(255, 107, 0, .28);
}
.app-eyebrow { display: block; font-size: 12px; font-weight: 850; opacity: .85; }
.app-hero-card h2 { margin: 10px 0 0; font-size: 29px; line-height: 1.05; letter-spacing: -.04em; }
.mini-logo {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255,255,255,.22);
    font-weight: 900;
}
.search-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0;
    padding: 14px;
    color: var(--ink-500);
    background: var(--white);
    border: 1px solid rgba(255, 107, 0, .12);
    box-shadow: 0 12px 26px rgba(17, 24, 39, .06);
    border-radius: 18px;
    font-size: 13px;
    font-weight: 700;
}
.search-pill svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--orange-500);
    stroke-width: 2.4;
    stroke-linecap: round;
}
.category-row { display: flex; gap: 8px; margin-bottom: 14px; overflow: hidden; }
.category-row span {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 11px;
    font-size: 12px;
    font-weight: 800;
    background: white;
    border-radius: 999px;
    border: 1px solid rgba(229,231,235,.9);
}
.category-row .icon-ui { width: 15px; height: 15px; color: var(--orange-600); }
.restaurant-card {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 12px;
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(17, 24, 39, .05);
}
.restaurant-card.active { border-color: rgba(255, 107, 0, .28); }
.food-thumb {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--orange-600);
    background: var(--orange-50);
}
.food-thumb .icon-ui { width: 27px; height: 27px; }
.food-thumb.green { background: #ecfdf5; }
.restaurant-info { min-width: 0; }
.restaurant-info strong { display: block; font-size: 13px; letter-spacing: -.02em; }
.restaurant-info span, .restaurant-info small { display: block; color: var(--ink-500); font-size: 11px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.restaurant-card button {
    border: 0;
    border-radius: 999px;
    color: white;
    background: var(--ink-900);
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 900;
}
.order-status-card {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border-radius: 22px;
    background: #111827;
    color: white;
}
.order-status-card .rider { width: 42px; height: 42px; display: grid; place-items: center; color: #fed7aa; background: rgba(255,255,255,.08); border-radius: 15px; }
.order-status-card .rider .icon-ui { width: 25px; height: 25px; }
.order-status-card strong, .order-status-card span { display: block; }
.order-status-card span { opacity: .72; font-size: 12px; font-weight: 700; }
.floating-card {
    position: absolute;
    padding: 15px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.78);
    box-shadow: var(--shadow-md);
}
.floating-card strong { display: block; letter-spacing: -.03em; }
.floating-card span { display: block; color: var(--ink-500); font-size: 13px; font-weight: 700; }
.floating-card-top { top: 58px; left: 26px; }
.floating-card-bottom { right: 2px; bottom: 70px; }

.logo-strip {
    padding: 22px 0;
    background: var(--ink-900);
    color: white;
}
.strip-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}
.strip-inner::-webkit-scrollbar { display: none; }
.strip-inner span {
    flex: 0 0 auto;
    color: rgba(255,255,255,.75);
    font-weight: 900;
    letter-spacing: -.02em;
}

.section { padding: 98px 0; }
.section.muted { background: var(--soft); }
.section-heading {
    max-width: 770px;
    margin: 0 auto 48px;
    text-align: center;
}
.section-heading.compact { margin-bottom: 36px; }
.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--orange-600);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.section-kicker.light { color: #ffedd5; }
.section-heading h2, .split-copy h2, .driver-content h2, .contact-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -.045em;
}
.section-heading p, .split-copy p, .driver-content p, .contact-copy p {
    margin: 0;
    color: var(--ink-600);
    font-size: 17px;
    line-height: 1.75;
}

.steps-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.step-card, .benefit-card, .category-card {
    position: relative;
    background: white;
    border: 1px solid rgba(229,231,235,.92);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.step-card:hover, .benefit-card:hover, .category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255,107,0,.26);
}
.step-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(255, 107, 0, .16);
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.045em;
}
.step-icon, .benefit-icon, .category-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 20px;
    color: var(--orange-600);
    background: var(--orange-50);
}
.step-card h3, .benefit-card h3, .category-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    letter-spacing: -.04em;
}
.step-card p, .benefit-card p, .category-card p { margin: 0; color: var(--ink-600); }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}
.category-card { padding: 22px; border-radius: 26px; }
.category-icon { width: 50px; height: 50px; margin-bottom: 16px; }
.category-icon .icon-ui, .step-icon .icon-ui, .benefit-icon .icon-ui { width: 27px; height: 27px; }
.category-card h3 { font-size: 17px; }
.category-card p { font-size: 13px; line-height: 1.55; }

.split-section { background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%); }
.split-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 54px;
    align-items: center;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    display: grid;
    gap: 14px;
}
.feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--ink-700);
    font-weight: 700;
}
.feature-list span {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    margin-top: 1px;
    color: white;
    background: var(--green-500);
    border-radius: 999px;
}
.feature-list span .icon-ui { width: 14px; height: 14px; stroke-width: 2.4; }
.dashboard-card {
    padding: 30px;
    border-radius: 38px;
    background: #111827;
    color: white;
    box-shadow: 0 36px 92px rgba(17, 24, 39, .24);
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}
.dashboard-header span { color: rgba(255,255,255,.62); font-size: 13px; font-weight: 800; }
.dashboard-header strong { display: block; font-size: 28px; letter-spacing: -.04em; }
.status-pill {
    padding: 8px 12px;
    color: #bbf7d0 !important;
    background: rgba(24, 182, 106, .16);
    border: 1px solid rgba(24, 182, 106, .28);
    border-radius: 999px;
}
.order-list { display: grid; gap: 12px; }
.order-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
}
.order-code {
    color: #fed7aa;
    font-weight: 900;
}
.order-item strong, .order-item small { display: block; }
.order-item strong { font-size: 14px; }
.order-item small { color: rgba(255,255,255,.56); font-size: 12px; font-weight: 700; }
.order-item em {
    font-style: normal;
    color: #fed7aa;
    background: rgba(249, 115, 22, .12);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 900;
}
.order-item em.green { color: #bbf7d0; background: rgba(24, 182, 106, .12); }
.order-item em.warm { color: #fde68a; background: rgba(250, 204, 21, .10); }
.dashboard-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.dashboard-summary div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
}
.dashboard-summary strong { display: block; font-size: 30px; letter-spacing: -.04em; }
.dashboard-summary span { color: rgba(255,255,255,.58); font-size: 12px; font-weight: 800; }

.benefit-card.highlight {
    color: white;
    background: linear-gradient(135deg, var(--orange-500), #ff8a00);
    border: 0;
    box-shadow: var(--shadow-lg);
}
.benefit-card.highlight p { color: rgba(255,255,255,.82); }
.benefit-card.highlight .benefit-icon { color: white; background: rgba(255,255,255,.20); }

.driver-section { padding-top: 40px; }
.driver-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 420px;
    border-radius: 42px;
    color: white;
    background:
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, .18), transparent 26%),
        linear-gradient(135deg, #111827, #1f2937 45%, #ff6b00);
    box-shadow: 0 34px 92px rgba(17, 24, 39, .18);
}
.driver-content { padding: 56px; align-self: center; }
.driver-content p { color: rgba(255,255,255,.72); margin-bottom: 28px; max-width: 580px; }
.driver-visual { position: relative; min-height: 100%; }
.route-dot {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: white;
    box-shadow: 0 0 0 10px rgba(255,255,255,.12);
}
.dot-a { left: 16%; top: 62%; }
.dot-b { right: 20%; top: 28%; }
.route-line {
    position: absolute;
    left: 20%;
    right: 24%;
    top: 42%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,.14), rgba(255,255,255,.72));
    transform: rotate(-24deg);
    transform-origin: center;
}
.driver-bike {
    position: absolute;
    top: 42%;
    left: 38%;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 34px;
    filter: drop-shadow(0 18px 20px rgba(0,0,0,.28));
    animation: float-bike 3.4s ease-in-out infinite;
}
.driver-bike .icon-ui { width: 68px; height: 68px; stroke-width: 1.55; }
@keyframes float-bike {
    50% { transform: translate(12px, -12px) rotate(3deg); }
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: center;
}
.contact-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 34px;
    background: var(--soft);
    border: 1px solid rgba(229,231,235,.9);
}
.contact-option {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    box-shadow: 0 10px 26px rgba(17, 24, 39, .04);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-option:hover { transform: translateY(-3px); border-color: rgba(255,107,0,.28); box-shadow: var(--shadow-sm); }
.contact-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--orange-600);
    background: var(--orange-50);
}
.contact-icon .icon-ui { width: 28px; height: 28px; }
.contact-option strong, .contact-option small { display: block; }
.contact-option small { color: var(--ink-500); font-weight: 700; }

.site-footer {
    padding: 64px 0 28px;
    color: rgba(255,255,255,.72);
    background: #101827;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-brand .brand-text { color: white; background: none; -webkit-text-fill-color: currentColor; }
.site-footer p { max-width: 370px; }
.site-footer strong { display: block; margin-bottom: 13px; color: white; }
.site-footer a {
    display: block;
    margin: 9px 0;
    color: rgba(255,255,255,.68);
    font-weight: 700;
}
.site-footer a:hover { color: white; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    font-size: 14px;
}
.footer-bottom strong { display: inline; }

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: white;
    background: #25d366;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(37, 211, 102, .36);
    transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

.legal-page {
    min-height: 100vh;
    padding: 42px 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 107, 0, .12), transparent 34%),
        var(--soft);
}
.legal-container { max-width: 900px; }
.legal-card {
    margin-top: 28px;
    padding: clamp(28px, 6vw, 58px);
    border-radius: 34px;
    background: white;
    border: 1px solid rgba(229,231,235,.9);
    box-shadow: var(--shadow-md);
}
.legal-card h1 { margin: 0 0 18px; font-size: clamp(34px, 5vw, 54px); letter-spacing: -.045em; line-height: 1.04; }
.legal-card h2 { margin: 32px 0 8px; font-size: 22px; letter-spacing: -.03em; }
.legal-card p { color: var(--ink-600); }
.legal-card .btn { margin-top: 24px; }
.legal-card a:not(.btn) { color: var(--orange-600); font-weight: 800; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1080px) {
    .hero-grid, .split-grid, .contact-grid, .driver-card { grid-template-columns: 1fr; }
    .hero-visual { min-height: 620px; }
    .categories-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .driver-card { min-height: auto; }
    .driver-visual { min-height: 250px; }
}

@media (max-width: 880px) {
    .top-announcement { height: auto; min-height: 42px; text-align: center; }
    .nav-toggle { display: block; }
    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: grid;
        gap: 6px;
        padding: 14px;
        background: rgba(255,255,255,.98);
        border: 1px solid rgba(229,231,235,.9);
        border-radius: 22px;
        box-shadow: var(--shadow-md);
        transform-origin: top;
        transform: scaleY(.95);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }
    .main-nav.is-open { opacity: 1; pointer-events: auto; transform: scaleY(1); }
    .main-nav a { padding: 12px 14px; }
    .main-nav .nav-cta { margin-left: 0; text-align: center; }
    .steps-grid, .benefits-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 28px, var(--container)); }
    .hero-section { padding: 56px 0 48px; }
    .hero-copy h1 { font-size: clamp(42px, 14vw, 62px); }
    .hero-lead { font-size: 17px; }
    .hero-actions .btn, .inline-actions .btn { width: 100%; }
    .hero-trust { grid-template-columns: 1fr; }
    .hero-visual { min-height: auto; margin-top: 26px; }
    .phone-mockup { width: 100%; height: 640px; }
    .floating-card { display: none; }
    .section { padding: 70px 0; }
    .categories-grid { grid-template-columns: 1fr; }
    .dashboard-card, .driver-content { padding: 24px; border-radius: 30px; }
    .order-item { grid-template-columns: 1fr; }
    .dashboard-summary { grid-template-columns: 1fr; }
    .contact-option { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .whatsapp-float { width: 56px; height: 56px; border-radius: 18px; }
    .brand-text { font-size: 24px; }
}


/* ==========================================================
   FIX MÓVIL ANDROID - PidiGo v1.2.0
   Evita manchas/renderizado extraño en la sección de contacto.
   Quita filtros, sombras pesadas, animaciones y capas translúcidas.
   ========================================================== */
@media (max-width: 680px) {
    body,
    .site-shell {
        background: #ffffff !important;
        overflow-x: hidden !important;
    }

    .main-header {
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .reveal,
    .reveal.is-visible,
    .delay-1,
    .delay-2 {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
    }

    #contacto,
    #contacto.section {
        position: relative !important;
        isolation: isolate !important;
        overflow: hidden !important;
        background: #ffffff !important;
        padding: 64px 0 54px !important;
        transform: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    #contacto::before,
    #contacto::after {
        content: none !important;
        display: none !important;
    }

    #contacto *,
    #contacto *::before,
    #contacto *::after {
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        mix-blend-mode: normal !important;
        transform-style: flat !important;
        will-change: auto !important;
    }

    #contacto .contact-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 26px !important;
        background: #ffffff !important;
        transform: none !important;
    }

    #contacto .contact-panel {
        display: grid !important;
        gap: 14px !important;
        padding: 0 !important;
        background: #ffffff !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        transform: none !important;
    }

    #contacto .contact-option {
        display: grid !important;
        grid-template-columns: 64px 1fr !important;
        gap: 16px !important;
        align-items: center !important;
        min-height: 132px !important;
        padding: 20px !important;
        background: #ffffff !important;
        border: 1px solid rgba(229, 231, 235, .96) !important;
        border-radius: 28px !important;
        box-shadow: 0 8px 18px rgba(17, 24, 39, .055) !important;
        overflow: hidden !important;
        transform: none !important;
        transition: none !important;
    }

    #contacto .contact-option:hover {
        transform: none !important;
        box-shadow: 0 8px 18px rgba(17, 24, 39, .055) !important;
        border-color: rgba(229, 231, 235, .96) !important;
    }

    #contacto .contact-icon {
        width: 64px !important;
        height: 64px !important;
        border-radius: 22px !important;
        background: #fff7ed !important;
        color: var(--orange-600) !important;
        box-shadow: none !important;
    }

    #contacto .contact-icon .icon-ui {
        width: 30px !important;
        height: 30px !important;
        stroke-width: 1.9 !important;
    }

    #contacto .contact-option strong {
        font-size: 21px !important;
        line-height: 1.16 !important;
        color: var(--ink-900) !important;
        word-break: break-word !important;
    }

    #contacto .contact-option small {
        margin-top: 4px !important;
        font-size: 15px !important;
        line-height: 1.35 !important;
        color: var(--ink-500) !important;
    }

    .quick-actions {
        right: 16px !important;
        bottom: 18px !important;
        gap: 10px !important;
    }

    .back-top-btn,
    .whatsapp-float,
    .whatsapp-float.whatsapp-float--pro {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        padding: 0 !important;
        border-radius: 18px !important;
    }

    .whatsapp-float.whatsapp-float--pro {
        background: #18b66a !important;
        box-shadow: 0 10px 24px rgba(22, 163, 74, .24) !important;
        border: 1px solid rgba(255, 255, 255, .30) !important;
        overflow: hidden !important;
        filter: none !important;
    }

    .whatsapp-float.whatsapp-float--pro::before {
        content: none !important;
        display: none !important;
    }

    .whatsapp-float--pro .wa-icon {
        width: 34px !important;
        height: 34px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .whatsapp-float--pro .wa-icon svg {
        width: 30px !important;
        height: 30px !important;
        overflow: visible !important;
    }

    .whatsapp-float--pro .wa-text {
        display: none !important;
    }
}
