        /* Minimalist icon helper */
        .ico { display:inline-flex;align-items:center;vertical-align:middle }
        .ico svg { width:1em;height:1em;stroke-width:2 }
        .ico-lg svg { width:1.5em;height:1.5em }
        .ico-xl svg { width:2em;height:2em }
        .t-icon .ico svg, .pay-icon .ico svg, .tb-icon .ico svg, .cs-icon .ico svg { width:1.4em;height:1.4em }

        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            --red: #E31B4E;
            --red2: #C2173F;
            --red-bg: #FFF0F3;
            --red-border: #FFD0DA;
            --text: #1A1A2E;
            --dim: #6B7280;
            --light: #9CA3AF;
            --border: #E5E7EB;
            --bg: #FFFFFF;
            --green: #22C55E;
            --gold: #F59E0B;
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased
        }

        a {
            color: inherit;
            text-decoration: none
        }

        /* HEADER — Unified with chupatel_tienda */

        /* HERO */
        .hero {
            background: linear-gradient(135deg, #4A0E1E 0%, #6B1530 40%, #8B1A3C 100%);
            padding: 56px 24px 40px;
            color: #fff;
            position: relative;
            overflow: hidden
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(ellipse at 70% 50%, rgba(227, 27, 78, .15) 0%, transparent 70%);
            pointer-events: none
        }

        .hero-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 48px
        }

        .hero-text {
            flex: 1;
            min-width: 0
        }

        .hero-card-wrap {
            flex-shrink: 0;
            perspective: 1000px;
            position: relative
        }

        /* RED GLOW */
        .hero-card-wrap::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 340px;
            height: 500px;
            transform: translate(-50%, -50%);
            background: radial-gradient(ellipse at center, rgba(227, 27, 78, .35) 0%, rgba(227, 27, 78, .12) 40%, transparent 70%);
            filter: blur(40px);
            z-index: 0;
            pointer-events: none;
            animation: glowPulse 4s ease-in-out infinite
        }

        @keyframes glowPulse {

            0%,
            100% {
                opacity: .7;
                transform: translate(-50%, -50%) scale(1)
            }

            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.08)
            }
        }

        .phone-mockup {
            width: 280px;
            height: 480px;
            border-radius: 36px;
            background: #1a1a1a;
            padding: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .4), 0 0 0 2px #333, inset 0 0 0 2px #2a2a2a;
            transform: rotateY(-8deg) rotateX(3deg);
            transition: transform .5s;
            animation: phoneFloat 6s ease-in-out infinite;
            position: relative;
            overflow: hidden;
            z-index: 1
        }

        .phone-mockup:hover {
            transform: rotateY(-2deg) rotateX(1deg)
        }

        @keyframes phoneFloat {

            0%,
            100% {
                transform: rotateY(-8deg) rotateX(3deg) translateY(0)
            }

            50% {
                transform: rotateY(-8deg) rotateX(3deg) translateY(-10px)
            }
        }

        .phone-notch {
            width: 120px;
            height: 28px;
            background: #1a1a1a;
            border-radius: 0 0 16px 16px;
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            border-radius: 26px;
            overflow: hidden;
            background: #0b141a;
            display: flex;
            flex-direction: column
        }

        .wa-header {
            background: #1f2c33;
            padding: 10px 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, .05)
        }

        .wa-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #E31B4E, #8B0A2D);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 800;
            color: #fff
        }

        .wa-name {
            font-size: 13px;
            font-weight: 600;
            color: #e9edef
        }

        .wa-online {
            font-size: 10px;
            color: #00a884
        }

        .wa-chat {
            flex: 1;
            padding: 12px 10px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            overflow: hidden;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0z' fill='%23080d11'/%3E%3Cpath d='M20 20h1v1h-1z' fill='%230d1418' fill-opacity='.5'/%3E%3C/svg%3E")
        }

        /* STAGGERED MSG ANIMATION */
        .wa-msg {
            max-width: 82%;
            padding: 6px 10px 4px;
            border-radius: 8px;
            font-size: 11px;
            line-height: 1.4;
            position: relative;
            opacity: 0;
            animation: msgFadeIn .5s ease forwards
        }

        .wa-msg:nth-child(1) {
            animation-delay: .3s
        }

        .wa-msg:nth-child(2) {
            animation-delay: 1s
        }

        .wa-msg:nth-child(3) {
            animation-delay: 2s
        }

        .wa-msg:nth-child(4) {
            animation-delay: 3.2s
        }

        .wa-msg:nth-child(5) {
            animation-delay: 4.8s
        }

        @keyframes msgFadeIn {
            0% {
                opacity: 0;
                transform: translateY(10px)
            }

            100% {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .wa-msg.sent {
            background: #005c4b;
            color: #e9edef;
            align-self: flex-end;
            border-bottom-right-radius: 2px
        }

        .wa-msg.recv {
            background: #1f2c33;
            color: #e9edef;
            align-self: flex-start;
            border-bottom-left-radius: 2px
        }

        .wa-msg .wa-time {
            font-size: 9px;
            color: rgba(255, 255, 255, .4);
            float: right;
            margin: 2px 0 -2px 8px
        }

        .wa-msg .wa-check {
            color: #53bdeb;
            font-size: 9px;
            margin-left: 2px
        }

        .wa-msg.recv .wa-sender {
            font-size: 10px;
            font-weight: 600;
            color: #FF6B8A;
            margin-bottom: 2px
        }

        .wa-link {
            display: block;
            background: rgba(255, 255, 255, .06);
            border-radius: 6px;
            padding: 6px 8px;
            margin-top: 4px;
            font-size: 10px;
            border-left: 3px solid #00a884
        }

        .wa-link-title {
            color: #53bdeb;
            font-weight: 600
        }

        .wa-link-desc {
            color: rgba(255, 255, 255, .5);
            margin-top: 1px
        }

        .wa-input {
            background: #1f2c33;
            padding: 8px 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-top: 1px solid rgba(255, 255, 255, .05)
        }

        .wa-input-box {
            flex: 1;
            background: #2a3942;
            border-radius: 20px;
            padding: 6px 12px;
            font-size: 11px;
            color: rgba(255, 255, 255, .3)
        }

        .wa-send {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #00a884;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px
        }

        /* FLOATING BADGES */
        .float-badge {
            position: absolute;
            z-index: 2;
            background: rgba(255, 255, 255, .95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 0, 0, .06);
            border-radius: 12px;
            padding: 8px 14px;
            font-size: 12px;
            font-weight: 700;
            color: #1a1a1a;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
            white-space: nowrap;
            animation: badgeBounce 3s ease-in-out infinite
        }

        .float-badge .fb-icon {
            margin-right: 5px
        }

        .float-badge:nth-child(2) {
            top: 60px;
            left: -60px;
            animation-delay: 0s
        }

        .float-badge:nth-child(3) {
            top: 220px;
            right: -50px;
            left: auto;
            animation-delay: 1s
        }

        .float-badge:nth-child(4) {
            bottom: 70px;
            left: -40px;
            animation-delay: 2s
        }

        @keyframes badgeBounce {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-6px)
            }
        }

        /* DELIVERY RIDER SVG */
        .rider-wrap {
            position: absolute;
            bottom: -50px;
            left: -120px;
            z-index: 0;
            width: 220px;
            height: 160px;
            animation: riderRide 3s ease-in-out infinite;
            filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .2))
        }

        @keyframes riderRide {

            0%,
            100% {
                transform: translateX(0) rotate(0deg)
            }

            50% {
                transform: translateX(6px) rotate(1deg)
            }
        }

        .rider-wrap svg {
            width: 100%;
            height: 100%
        }

        .rider-motion {
            position: absolute;
            left: -20px;
            top: 60%;
            width: 30px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            animation: motionFade 1.5s ease-in-out infinite
        }

        .rider-motion span {
            display: block;
            height: 2px;
            border-radius: 2px;
            background: rgba(255, 255, 255, .25)
        }

        .rider-motion span:nth-child(1) {
            width: 20px
        }

        .rider-motion span:nth-child(2) {
            width: 14px;
            margin-left: 3px
        }

        .rider-motion span:nth-child(3) {
            width: 24px
        }

        @keyframes motionFade {

            0%,
            100% {
                opacity: .3;
                transform: translateX(0)
            }

            50% {
                opacity: .7;
                transform: translateX(-5px)
            }
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(227, 27, 78, .2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(227, 27, 78, .3);
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            color: #FF6B8A;
            margin-bottom: 20px;
            position: relative
        }

        .hero-pill .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #FF6B8A;
            animation: pulse 2s infinite
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .4
            }
        }

        .hero h1 {
            font-size: 44px;
            font-weight: 900;
            letter-spacing: -.02em;
            line-height: 1.1;
            margin-bottom: 14px;
            position: relative
        }

        .hero h1 .accent {
            color: #FF6B8A
        }

        .hero-sub {
            color: rgba(255, 255, 255, .6);
            font-size: 16px;
            max-width: 480px;
            margin-bottom: 24px;
            position: relative;
            line-height: 1.7
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            flex-wrap: wrap
        }

        .hero-features {
            display: flex;
            gap: 20px;
            font-size: 11px;
            color: rgba(255, 255, 255, .4);
            margin-top: 20px
        }

        .hero-features span {
            display: flex;
            align-items: center;
            gap: 4px
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 800;
            border: none;
            cursor: pointer;
            font-family: inherit;
            transition: all .25s;
            letter-spacing: .3px
        }

        .hero-cta.primary {
            background: #fff;
            color: var(--red);
            box-shadow: 0 4px 20px rgba(0, 0, 0, .15)
        }

        .hero-cta.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, .25)
        }

        .hero-cta.secondary {
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .2);
            color: #fff;
            backdrop-filter: blur(10px)
        }

        .hero-cta.secondary:hover {
            background: rgba(255, 255, 255, .18)
        }

        /* TRUST BAR */
        .trust-bar {
            max-width: 900px;
            margin: -40px auto 0;
            padding: 0 24px;
            position: relative;
            z-index: 2
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .08)
        }

        .trust-item {
            background: #fff;
            padding: 20px 16px;
            text-align: center
        }

        .trust-item .t-icon {
            font-size: 24px;
            margin-bottom: 6px
        }

        .trust-item .t-value {
            font-size: 18px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 2px
        }

        .trust-item .t-label {
            font-size: 11px;
            color: var(--dim);
            font-weight: 500
        }

        /* SECTION */
        .section {
            max-width: 1100px;
            margin: 64px auto 0;
            padding: 0 24px
        }

        .section-head {
            text-align: center;
            margin-bottom: 40px
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .5px;
            margin-bottom: 12px;
            background: var(--red-bg);
            color: var(--red)
        }

        .section-head h2 {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -.02em;
            margin-bottom: 8px
        }

        .section-head p {
            font-size: 15px;
            color: var(--dim);
            max-width: 600px;
            margin: 0 auto
        }

        /* PROCESS TIMELINE */
        .process-timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            max-width: 800px;
            margin: 0 auto
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 39px;
            top: 48px;
            bottom: 48px;
            width: 2px;
            background: linear-gradient(to bottom, var(--red), #C2173F, #A01235, #8B0A2D, var(--red));
            border-radius: 1px
        }

        .process-step {
            display: flex;
            gap: 24px;
            align-items: flex-start;
            padding: 20px 0;
            position: relative
        }

        .step-marker {
            width: 80px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px
        }

        .step-num-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            position: relative;
            z-index: 1;
            background: linear-gradient(135deg, #E31B4E, #C2173F);
            box-shadow: 0 4px 15px rgba(227, 27, 78, .3)
        }

        .step-content {
            flex: 1;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            transition: all .25s
        }

        .step-content:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
            transform: translateX(4px)
        }

        .step-content h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px
        }

        .step-content p {
            font-size: 14px;
            color: var(--dim);
            line-height: 1.7
        }

        .step-content .step-detail {
            margin-top: 12px;
            padding: 12px;
            background: #FAFAFA;
            border-radius: 10px;
            font-size: 12px
        }

        .step-content .step-detail span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-right: 12px;
            font-weight: 600
        }

        /* PAYMENT CARDS */
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px
        }

        .pay-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
            transition: all .25s;
            position: relative;
            overflow: hidden
        }

        .pay-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
            transform: translateY(-4px)
        }

        .pay-card .pay-icon {
            font-size: 36px;
            margin-bottom: 12px
        }

        .pay-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px
        }

        .pay-card p {
            font-size: 13px;
            color: var(--dim);
            line-height: 1.6
        }

        .pay-card .pay-badge {
            display: inline-block;
            margin-top: 12px;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700
        }

        .pay-badge.success {
            background: #ECFDF5;
            color: #059669
        }

        .pay-badge.info {
            background: #EFF6FF;
            color: #3B82F6
        }

        .pay-badge.warn {
            background: #FFFBEB;
            color: #D97706
        }

        /* TECH BADGES */
        .tech-strip {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            padding: 40px 24px;
            max-width: 800px;
            margin: 0 auto
        }

        .tech-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center
        }

        .tech-badge .tb-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800
        }

        .tech-badge .tb-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--text)
        }

        .tech-badge .tb-desc {
            font-size: 11px;
            color: var(--dim)
        }

        /* COVERAGE */
        .coverage-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            max-width: 700px;
            margin: 0 auto
        }

        .coverage-header {
            background: linear-gradient(135deg, #4A0E1E, #6B1530);
            padding: 28px;
            text-align: center;
            color: #fff
        }

        .coverage-header h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 4px
        }

        .coverage-header p {
            font-size: 13px;
            opacity: .7
        }

        .coverage-body {
            padding: 28px
        }

        .cov-info {
            display: flex;
            align-items: center;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap
        }

        .cov-stat {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--red-bg);
            border: 1px solid var(--red-border);
            padding: 14px 24px;
            border-radius: 12px;
            flex: 1;
            min-width: 200px
        }

        .cov-stat .cs-icon {
            font-size: 28px
        }

        .cov-stat .cs-val {
            font-size: 22px;
            font-weight: 800;
            color: var(--red)
        }

        .cov-stat .cs-label {
            font-size: 12px;
            color: var(--dim);
            font-weight: 500
        }

        .cov-note {
            text-align: center;
            margin-top: 16px;
            font-size: 13px;
            color: var(--dim);
            line-height: 1.6
        }

        /* SCHEDULE */
        .schedule-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px;
            max-width: 800px;
            margin: 0 auto
        }

        .sched-status {
            text-align: center;
            margin-bottom: 20px
        }

        .sched-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 700
        }

        .sched-badge.open {
            background: #ECFDF5;
            color: #059669
        }

        .sched-badge.closed {
            background: #FEF2F2;
            color: #DC2626
        }

        .sched-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px
        }

        .day-cell {
            text-align: center;
            padding: 14px 6px;
            border-radius: 12px;
            background: #FAFAFA;
            transition: all .2s
        }

        .day-cell.today {
            background: var(--red-bg);
            border: 2px solid var(--red)
        }

        .day-cell .d-name {
            font-size: 11px;
            font-weight: 600;
            color: var(--dim);
            margin-bottom: 4px
        }

        .day-cell .d-hours {
            font-size: 12px;
            font-weight: 700
        }

        .day-cell.today .d-name,
        .day-cell.today .d-hours {
            color: var(--red)
        }

        /* FAQ */
        .faq-list {
            max-width: 700px;
            margin: 0 auto
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 8px;
            overflow: hidden;
            transition: all .2s
        }

        .faq-item:hover {
            border-color: #D1D5DB
        }

        .faq-q {
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            user-select: none;
            position: relative;
            z-index: 2;
            background: #fff
        }

        .faq-q > span:first-child {
            flex: 1;
            transform: none !important
        }

        .faq-q .fq-icon {
            font-size: 18px;
            color: var(--dim);
            transition: transform .2s;
            flex-shrink: 0;
            width: 20px;
            text-align: center
        }

        .faq-item.open .fq-icon {
            transform: rotate(45deg)
        }

        .faq-a {
            padding: 0 20px 0;
            font-size: 13px;
            color: var(--dim);
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease, padding .3s ease
        }

        .faq-item.open .faq-a {
            max-height: 300px;
            padding: 0 20px 18px
        }

        /* BOTTOM CTA */
        .bottom-cta {
            max-width: 1100px;
            margin: 64px auto;
            padding: 0 24px
        }

        .cta-card {
            background: linear-gradient(135deg, #4A0E1E 0%, #6B1530 50%, #8B1A3C 100%);
            border-radius: 24px;
            padding: 56px 48px;
            text-align: center;
            position: relative;
            overflow: hidden
        }

        .cta-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 0%, rgba(227, 27, 78, .2), transparent 50%),
                radial-gradient(circle at 70% 100%, rgba(227, 27, 78, .15), transparent 50%);
            pointer-events: none
        }

        .cta-card h2 {
            color: #fff;
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 12px;
            position: relative
        }

        .cta-card p {
            color: rgba(255, 255, 255, .6);
            font-size: 15px;
            margin-bottom: 28px;
            position: relative
        }

        /* FOOTER */
        .footer {
            background: linear-gradient(135deg, #E31B4E 0%, #C2173F 50%, #8B0A2D 100%);
            color: rgba(255, 255, 255, .7);
            padding: 40px 24px
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px
        }

        .footer h4 {
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 12px
        }

        .footer a {
            display: block;
            font-size: 12px;
            color: rgba(255, 255, 255, .65);
            padding: 3px 0;
            transition: color .15s
        }

        .footer a:hover {
            color: #fff
        }

        .footer-bot {
            max-width: 1200px;
            margin: 20px auto 0;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, .2);
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            flex-wrap: wrap;
            gap: 8px
        }

        .footer-bot .brand {
            color: #fff;
            font-weight: 700
        }

        /* FLOAT WA */
        .float-wa {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 150;
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--red);
            color: #fff;
            padding: 14px 24px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(227, 27, 78, .4);
            transition: all .25s;
            text-decoration: none
        }

        .float-wa:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(227, 27, 78, .5)
        }

        /* RESPONSIVE */
        @media(max-width:900px) {

            .hero h1 {
                font-size: 32px
            }

            .hero {
                padding: 48px 24px 40px
            }

            .hero-inner {
                gap: 24px
            }

            .phone-mockup {
                width: 220px;
                height: 380px;
                border-radius: 28px;
                padding: 8px
            }

            .phone-notch {
                width: 90px;
                height: 22px;
                top: 8px
            }

            .phone-screen {
                border-radius: 22px
            }

            .wa-msg {
                font-size: 10px
            }

            .float-badge {
                font-size: 10px;
                padding: 6px 10px
            }

            .float-badge:nth-child(2) {
                left: -40px
            }

            .float-badge:nth-child(3) {
                right: -30px
            }

            .float-badge:nth-child(4) {
                left: -20px
            }

            .rider-wrap {
                width: 140px;
                height: 100px;
                bottom: -20px;
                left: -50px
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .payment-grid {
                grid-template-columns: 1fr
            }

            .sched-grid {
                grid-template-columns: repeat(4, 1fr)
            }

            .footer-inner {
                grid-template-columns: repeat(2, 1fr)
            }

            .section-head h2 {
                font-size: 24px
            }

            .process-timeline::before {
                left: 23px
            }

            .step-marker {
                width: 48px
            }

            .step-num-circle {
                width: 36px;
                height: 36px;
                font-size: 14px
            }

            .tech-strip {
                gap: 20px
            }
        }

        @media(max-width:500px) {
            .hero h1 {
                font-size: 26px
            }

            .hero-inner {
                flex-direction: column;
                text-align: center
            }

            .hero-sub {
                margin-left: auto;
                margin-right: auto
            }

            .hero-actions {
                justify-content: center;
                flex-direction: column
            }

            .hero-features {
                justify-content: center
            }

            .hero-cta {
                width: 100%;
                justify-content: center
            }

            .phone-mockup {
                width: 200px;
                height: 340px;
                border-radius: 24px;
                padding: 6px
            }

            .phone-notch {
                width: 80px;
                height: 18px;
                top: 6px
            }

            .phone-screen {
                border-radius: 20px
            }

            .wa-header {
                padding: 6px 8px
            }

            .float-badge {
                display: none
            }

            .rider-wrap {
                display: none
            }

            .wa-avatar {
                width: 24px;
                height: 24px;
                font-size: 9px
            }

            .wa-msg {
                font-size: 9px;
                padding: 4px 8px 3px
            }

            .trust-grid {
                grid-template-columns: 1fr 1fr
            }

            .sched-grid {
                grid-template-columns: repeat(4, 1fr)
            }

            .cta-card {
                padding: 40px 24px
            }

            .cov-stat {
                min-width: 150px
            }
        }
