/* ============================================================
   GHARAD DELIVERY — Premium Styles
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
---------------------------------------------------------- */
:root {
    --green-950: #050f09;
    --green-900: #081a0f;
    --green-800: #0d2e1a;
    --green-700: #134024;
    --green-600: #1b5c34;
    --green-500: #227a43;
    --green-400: #2ea055;
    --green-300: #50c877;
    --lime-500: #b8ff00;
    --lime-400: #ccff33;
    --lime-glow: rgba(184, 255, 0, 0.30);
    --white: #ffffff;
    --surface-1: #f6faf6;
    --surface-2: #edf4ed;
    --border: #d8e8d8;
    --muted: #6b876b;
    --body-text: #1e2e1e;
    --black: #08100a;
    --whatsapp: #25d366;
    --wa-dark: #1aad53;
    --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-arabic: 'Segoe UI', 'Cairo', system-ui, sans-serif;
    --max-w: 1200px;
    --pad-x: 1rem;
    --nav-h: 68px;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-2xl: 40px;
    --r-full: 9999px;
    --sh-sm: 0 1px 4px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    --sh-md: 0 4px 16px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.06);
    --sh-lg: 0 8px 32px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08);
    --sh-green: 0 8px 32px rgba(13, 46, 26, 0.35);
    --sh-lime: 0 4px 20px rgba(184, 255, 0, 0.40);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --t1: 120ms var(--ease);
    --t2: 240ms var(--ease);
    --t3: 400ms var(--ease);
}

/* ----------------------------------------------------------
   2. RESET & BASE
---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); width: 100%; overflow-x: hidden; }

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--body-text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    padding-bottom: 70px;
    position: relative;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, select, textarea { font: inherit; }
fieldset { border: none; padding: 0; }
[dir="rtl"], [lang="ar"] { font-family: var(--font-arabic); }

/* ----------------------------------------------------------
   3. LAYOUT HELPERS
---------------------------------------------------------- */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad-x); }

section { width: 100%; overflow-x: hidden; position: relative; }

.section-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
    padding: 0.3rem 0.85rem; border-radius: var(--r-full); margin-bottom: 1rem;
    background: rgba(34, 122, 67, 0.10); color: var(--green-500); border: 1px solid rgba(34, 122, 67, 0.18);
}
.section-tag--lime { background: rgba(184, 255, 0, 0.12); color: var(--lime-500); border-color: rgba(184, 255, 0, 0.22); }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header--dark { color: var(--white); }

.section-title {
    font-size: clamp(1.65rem, 3.8vw, 2.5rem); font-weight: 800; line-height: 1.15;
    letter-spacing: -0.02em; color: var(--green-800); margin-bottom: 0.5rem;
    max-width: 640px; margin-inline: auto;
}
.section-title--white { color: var(--white); }
.section-title--left { text-align: left; margin-inline: 0; }

.section-sub { font-size: 1rem; color: var(--muted); max-width: 560px; margin-inline: auto; line-height: 1.7; }
.section-sub--light { color: rgba(255, 255, 255, 0.72); }
.section-sub--left { text-align: left; margin-inline: 0; }
.section-sub--white { color: rgba(255, 255, 255, 0.72); }

.text-lime { color: var(--lime-500); }

/* ----------------------------------------------------------
   4. BUTTONS
---------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.45em;
    font-size: 0.94rem; font-weight: 700; line-height: 1; padding: 0.78rem 1.6rem;
    border-radius: var(--r-full); border: 2px solid transparent;
    transition: transform var(--t2), box-shadow var(--t2), background var(--t1), border-color var(--t1), color var(--t1);
    white-space: nowrap; cursor: pointer; text-align: center;
}
.btn:focus-visible { outline: 3px solid var(--lime-500); outline-offset: 3px; }

.btn--lime { background: var(--lime-500); color: var(--green-800); border-color: var(--lime-500); box-shadow: var(--sh-lime); }
.btn--lime:hover { background: var(--lime-400); border-color: var(--lime-400); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(184, 255, 0, 0.50); }
.btn--lime:active { transform: translateY(0); }

.btn--whatsapp { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
.btn--whatsapp:hover { background: var(--wa-dark); border-color: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }

.btn--wa { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
.btn--wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); transform: translateY(-2px); }

.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.45); }
.btn--outline-white:hover { background: rgba(255, 255, 255, 0.10); border-color: var(--white); transform: translateY(-2px); }

.btn--outline-dark { background: transparent; color: var(--green-800); border-color: var(--green-700); }
.btn--outline-dark:hover { background: var(--green-800); color: var(--white); transform: translateY(-2px); }

.btn--sm  { font-size: 0.82rem; padding: 0.55rem 1.1rem; }
.btn--lg  { font-size: 1rem;    padding: 0.88rem 1.9rem; }
.btn--xl  { font-size: 1.05rem; padding: 1rem 2.1rem; }

.wa-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ----------------------------------------------------------
   5. NAVBAR
---------------------------------------------------------- */
.navbar {
    position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 1000;
    height: var(--nav-h); background: rgba(8, 26, 15, 0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184, 255, 0, 0.08);
    transition: background var(--t2), box-shadow var(--t2);
}
.navbar.scrolled { background: rgba(8, 26, 15, 0.98); box-shadow: 0 2px 24px rgba(0, 0, 0, 0.28); border-bottom-color: rgba(184, 255, 0, 0.12); }

.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 1rem; }

.navbar__logo { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; font-size: 1.18rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.navbar__logo-img { height: 44px; width: auto; display: block; object-fit: contain; max-width: 180px; }
.logo-icon { font-size: 1.5rem; line-height: 1; display: flex; align-items: center; }
.logo-accent { color: var(--lime-500); }

.navbar__links { display: none; align-items: center; gap: 2rem; flex: 1; justify-content: center; }
.navbar__links a { font-size: 0.88rem; font-weight: 600; color: rgba(255, 255, 255, 0.75); transition: color var(--t1); position: relative; padding-bottom: 2px; }
.navbar__links a::after { content: ''; position: absolute; inset-inline: 0; bottom: -3px; height: 2px; background: var(--lime-500); border-radius: var(--r-full); transform: scaleX(0); transform-origin: left; transition: transform var(--t2); }
.navbar__links a:hover, .navbar__links a.active { color: var(--white); }
.navbar__links a:hover::after, .navbar__links a.active::after { transform: scaleX(1); }

.navbar__cta { flex-shrink: 0; }

.navbar__burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; border-radius: var(--r-sm); transition: background var(--t1); }
.navbar__burger:hover { background: rgba(255, 255, 255, 0.08); }
.navbar__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: var(--r-full); transition: transform var(--t2), opacity var(--t2); margin-inline: auto; }
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    position: fixed; inset-block-start: var(--nav-h); inset-inline: 0; z-index: 999;
    background: var(--green-900); padding: 1.5rem 2rem 2rem;
    display: flex; flex-direction: column; gap: 0.5rem;
    transform: translateY(-108%); transition: transform 0.32s var(--ease);
    border-bottom: 2px solid var(--lime-500); box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav__link { display: block; font-size: 1.05rem; font-weight: 600; color: rgba(255, 255, 255, 0.82); padding: 0.65rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); transition: color var(--t1), padding-left var(--t2); }
.mobile-nav__link:hover { color: var(--lime-500); padding-left: 0.75rem; }
.mobile-nav__cta { margin-top: 1rem; text-align: center; width: 100%; justify-content: center; }

.mobile-nav-overlay { position: fixed; inset: 0; z-index: 998; background: rgba(0, 0, 0, 0.55); opacity: 0; pointer-events: none; transition: opacity var(--t2); }
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

/* ----------------------------------------------------------
   6. HERO
---------------------------------------------------------- */
.hero {
    position: relative; min-height: 100svh; min-height: 100vh;
    display: flex; align-items: center;
    padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 4rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(34, 122, 67, 0.55) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(13, 46, 26, 0.80) 0%, transparent 70%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(8, 26, 15, 1) 0%, var(--green-800) 100%);
}
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; background: var(--lime-500); filter: blur(1px); }
.shape--1 { width: min(520px, 60vw); height: min(520px, 60vw); top: -15%; right: -8%; opacity: 0.055; animation: shapeFloat 9s ease-in-out infinite; }
.shape--2 { width: min(340px, 45vw); height: min(340px, 45vw); bottom: -10%; left: -6%; opacity: 0.04; animation: shapeFloat 12s ease-in-out infinite reverse; }
.shape--3 { width: min(160px, 22vw); height: min(160px, 22vw); top: 42%; left: 38%; opacity: 0.035; animation: shapeFloat 7s ease-in-out infinite 1.5s; }
.shape--4 { width: min(220px, 30vw); height: min(220px, 30vw); bottom: 20%; right: 15%; opacity: 0.03; animation: shapeFloat 11s ease-in-out infinite 0.7s; }
@keyframes shapeFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-28px) scale(1.04); } }

.hero::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"); pointer-events: none; }

.hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 2.5rem; }
.hero__content { flex: 1 1 auto; }

.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(184, 255, 0, 0.12); border: 1px solid rgba(184, 255, 0, 0.25); color: var(--lime-500); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.38rem 0.9rem; border-radius: var(--r-full); margin-bottom: 1.25rem; animation: fadeUp 0.55s var(--ease) both; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime-500); display: inline-block; animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

.hero__title { font-size: clamp(2.1rem, 6.5vw, 4rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; color: var(--white); margin-bottom: 1.25rem; animation: fadeUp 0.55s var(--ease) 0.08s both; }
.hero__darija { font-family: var(--font-arabic); font-size: clamp(1rem, 2.8vw, 1.3rem); font-weight: 700; color: var(--lime-500); margin-bottom: 1.25rem; text-align: right; direction: rtl; animation: fadeUp 0.55s var(--ease) 0.16s both; line-height: 1.6; }
.hero__sub { font-size: 1rem; color: rgba(255, 255, 255, 0.75); line-height: 1.72; max-width: 480px; margin-bottom: 1.5rem; animation: fadeUp 0.55s var(--ease) 0.22s both; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; animation: fadeUp 0.55s var(--ease) 0.28s both; max-width: 100%; }
.hero__tags span { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.13); color: rgba(255, 255, 255, 0.88); font-size: 0.8rem; font-weight: 600; padding: 0.32rem 0.78rem; border-radius: var(--r-full); backdrop-filter: blur(4px); white-space: nowrap; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; animation: fadeUp 0.55s var(--ease) 0.34s both; max-width: 100%; }
.hero__ctas .btn { flex: 1 1 auto; min-width: 0; justify-content: center; }
.hero__phone { display: flex; align-items: center; gap: 0.75rem; animation: fadeUp 0.55s var(--ease) 0.40s both; }
.phone-link { font-size: 1.15rem; font-weight: 800; color: var(--lime-500); letter-spacing: 0.01em; transition: opacity var(--t1); }
.phone-link:hover { opacity: 0.8; }
.phone-label { font-size: 0.82rem; color: rgba(255, 255, 255, 0.50); }

.hero__visual { display: flex; justify-content: center; animation: fadeUp 0.55s var(--ease) 0.20s both; flex-shrink: 0; }
.hero__rider-card { background: rgba(255, 255, 255, 0.065); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--r-xl); padding: 1.5rem; width: 100%; max-width: 360px; }

.rider-illustration { position: relative; height: 200px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; border-radius: var(--r-lg); overflow: visible; }
.rider-bg { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(184, 255, 0, 0.10) 0%, transparent 68%); border-radius: var(--r-lg); }
.rider-emoji { font-size: 5.5rem; line-height: 1; position: relative; z-index: 1; filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35)); animation: riderRock 2.4s ease-in-out infinite; }
@keyframes riderRock { 0%, 100% { transform: rotate(-4deg) translateX(0); } 50% { transform: rotate(4deg) translateX(10px); } }

.float-badge { position: absolute; background: var(--white); color: var(--green-800); font-size: 0.72rem; font-weight: 700; padding: 0.28rem 0.65rem; border-radius: var(--r-full); box-shadow: var(--sh-md); white-space: nowrap; z-index: 2; animation: badgeFloat 3.2s ease-in-out infinite; }
.float-badge--food    { top: 12px;    left: -4px;   animation-delay: 0s;    }
.float-badge--flowers { top: 12px;    right: -4px;  animation-delay: 0.80s; }
.float-badge--meds    { bottom: 14px; left: -4px;   animation-delay: 1.60s; }
.float-badge--gift    { bottom: 14px; right: -4px;  animation-delay: 2.40s; }
@keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.rider-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 3px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--r-md); padding: 0.6rem 0.5rem; }
.stat-num { font-size: 1.3rem; line-height: 1; }
.stat-lbl { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.65); }

.hero__scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-indicator { width: 22px; height: 36px; border: 2px solid rgba(255, 255, 255, 0.28); border-radius: var(--r-full); position: relative; }
.scroll-indicator::before { content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--lime-500); border-radius: var(--r-full); animation: scrollBob 1.9s ease-in-out infinite; }
@keyframes scrollBob { 0% { top: 5px; opacity: 1; } 75% { top: 18px; opacity: 0; } 100% { top: 5px; opacity: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ----------------------------------------------------------
   7. SERVICES
---------------------------------------------------------- */
.services { padding-block: 5rem; background: var(--surface-1); }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }

.service-card { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; overflow: hidden; transition: transform var(--t2), box-shadow var(--t2), border-color var(--t2); display: flex; flex-direction: column; }
.service-card::before { content: ''; position: absolute; inset-block-start: 0; inset-inline: 0; height: 3px; background: var(--border); transition: background var(--t2); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(184, 255, 0, 0.35); }
.service-card:hover::before { background: var(--lime-500); }
.service-card__icon { width: 52px; height: 52px; background: var(--surface-2); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1rem; flex-shrink: 0; transition: background var(--t2); }
.service-card:hover .service-card__icon { background: rgba(184, 255, 0, 0.14); }
.service-card h3 { font-size: 1rem; font-weight: 800; color: var(--green-800); margin-bottom: 0.5rem; line-height: 1.25; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.service-card__list { display: flex; flex-direction: column; gap: 0.28rem; font-size: 0.82rem; color: var(--muted); margin-top: auto; }
.service-card__list li { display: flex; align-items: center; gap: 0.5rem; }
.service-card__list li::before { content: '✓'; color: var(--green-500); font-weight: 800; font-size: 0.78rem; flex-shrink: 0; }

.service-card--accent { background: linear-gradient(145deg, var(--green-800) 0%, var(--green-600) 100%); border-color: transparent; color: var(--white); }
.service-card--accent::before { background: var(--lime-500); }
.service-card--accent .service-card__icon { background: rgba(255, 255, 255, 0.10); }
.service-card--accent h3 { color: var(--white); }
.service-card--accent p { color: rgba(255, 255, 255, 0.75); }
.service-card--accent .service-card__list { color: rgba(255, 255, 255, 0.80); }
.service-card--accent .service-card__list li::before { color: var(--lime-500); }
.service-card--accent:hover { border-color: rgba(184, 255, 0, 0.30); }

.service-card--special { background: var(--green-950); border-color: rgba(184, 255, 0, 0.15); justify-content: center; min-height: 180px; }
.service-card--special::before { background: var(--lime-500); }
.service-card--special h3 { color: var(--white); }
.service-card--special p { color: rgba(255, 255, 255, 0.65); }
.service-card--special:hover { border-color: rgba(184, 255, 0, 0.35); }

/* ----------------------------------------------------------
   8. HOW IT WORKS
---------------------------------------------------------- */
.how-it-works { padding-block: 5rem; background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 100%); position: relative; overflow: hidden; }
.how-it-works::before { content: ''; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(184, 255, 0, 0.07) 0%, transparent 65%); pointer-events: none; }
.how-it-works::after { content: ''; position: absolute; bottom: -100px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(184, 255, 0, 0.05) 0%, transparent 65%); pointer-events: none; }

.steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.step { background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.10); border-radius: var(--r-lg); padding: 1.5rem; text-align: center; transition: background var(--t2), transform var(--t2), border-color var(--t2); }
.step:hover { background: rgba(255, 255, 255, 0.11); transform: translateY(-4px); border-color: rgba(184, 255, 0, 0.22); }
.step__number { width: 36px; height: 36px; background: var(--lime-500); color: var(--green-800); font-size: 0.92rem; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.step__icon { width: 56px; height: 56px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.10); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 1rem; }
.step__title { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.step__desc { font-size: 0.86rem; color: rgba(255, 255, 255, 0.70); line-height: 1.6; margin-bottom: 0.25rem; }
.step__tagline { font-size: 0.86rem; font-weight: 700; color: var(--lime-500); margin-top: 0.5rem; }
.step__examples { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 0.75rem; align-items: center; }
.step__examples span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.06); padding: 0.22rem 0.65rem; border-radius: var(--r-full); }
.step__arrow { display: none; align-self: flex-start; padding-top: 3rem; font-size: 1.5rem; color: rgba(184, 255, 0, 0.50); font-weight: 900; flex-shrink: 0; }
.how-it-works__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; position: relative; z-index: 1; }
.how-it-works__cta .btn { flex: 1 1 auto; min-width: 0; justify-content: center; }
@media (min-width: 600px) {
    .how-it-works__cta .btn { flex: 0 1 auto; min-width: 180px; }
}

/* ----------------------------------------------------------
   9. WHY GHARAD
---------------------------------------------------------- */
.why-gharad { padding-block: 5rem; background: var(--white); }
.advantages__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.advantage-card { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; transition: transform var(--t2), box-shadow var(--t2), border-color var(--t2), background var(--t2); }
.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--lime-500); background: var(--white); }
.advantage-card__icon { width: 52px; height: 52px; background: rgba(34, 122, 67, 0.08); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.55rem; margin-bottom: 1rem; transition: background var(--t2); }
.advantage-card:hover .advantage-card__icon { background: rgba(184, 255, 0, 0.14); }
.advantage-card h3 { font-size: 1rem; font-weight: 800; color: var(--green-800); margin-bottom: 0.5rem; }
.advantage-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ----------------------------------------------------------
   10. SERVICE AREA
---------------------------------------------------------- */
.service-area { padding-block: 5rem; background: var(--surface-2); }
.service-area__inner { display: flex; flex-direction: column; gap: 2.5rem; align-items: center; }
.service-area__content { width: 100%; }
.area-features { display: flex; flex-direction: column; gap: 0.75rem; margin-block: 1.5rem; }
.area-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; font-weight: 500; color: var(--body-text); }
.area-feature span:first-child { font-size: 1rem; flex-shrink: 0; }
.service-area__map { width: 100%; max-width: 300px; }
.map-visual { background: linear-gradient(145deg, var(--green-700) 0%, var(--green-500) 100%); border-radius: var(--r-xl); min-height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: var(--sh-green); padding: 2rem; }
.map-pin { font-size: 2.8rem; position: relative; z-index: 2; animation: pinBob 2.2s ease-in-out infinite; }
@keyframes pinBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.map-city { font-size: 1.7rem; font-weight: 900; color: var(--white); letter-spacing: -0.02em; position: relative; z-index: 2; margin-top: 0.5rem; }
.map-label { font-family: var(--font-arabic); font-size: 1.1rem; font-weight: 700; color: var(--lime-500); direction: rtl; position: relative; z-index: 2; }
.map-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(184, 255, 0, 0.22); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.map-ring--1 { width: 90px;  height: 90px;  animation: ripple 3s linear infinite; }
.map-ring--2 { width: 170px; height: 170px; animation: ripple 3s linear infinite 0.9s; }
.map-ring--3 { width: 260px; height: 260px; animation: ripple 3s linear infinite 1.8s; }
@keyframes ripple { 0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.85); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.35); } }

/* ----------------------------------------------------------
   11. FOR INDIVIDUALS
---------------------------------------------------------- */
.for-individuals { padding-block: 5rem; background: var(--white); }
.two-col { display: flex; flex-direction: column; gap: 2.5rem; }
.two-col__content { flex: 1 1 auto; }
.two-col__visual { flex: 0 0 auto; width: 100%; }
.use-cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-block: 1.25rem; }
.use-case { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--r-md); padding: 0.58rem 0.65rem; font-size: 0.8rem; font-weight: 600; color: var(--green-700); transition: background var(--t1), border-color var(--t1), color var(--t1), transform var(--t1); cursor: default; white-space: normal; overflow: hidden; text-overflow: ellipsis; text-align: center; word-break: break-word; }
.use-case:hover { background: rgba(184, 255, 0, 0.12); border-color: rgba(184, 255, 0, 0.35); color: var(--green-800); transform: translateY(-2px); }
.two-col__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.two-col__ctas .btn { flex: 1 1 auto; min-width: 0; justify-content: center; }
@media (min-width: 600px) {
    .two-col__ctas .btn { flex: 0 1 auto; min-width: 180px; }
}
.individual-card { background: linear-gradient(145deg, var(--green-800) 0%, var(--green-600) 100%); border-radius: var(--r-xl); padding: 1.5rem; box-shadow: var(--sh-green); }
.individual-card__quote { font-family: var(--font-arabic); font-size: 1.05rem; font-weight: 700; color: var(--lime-500); line-height: 1.75; padding: 1rem 1.25rem; background: rgba(255, 255, 255, 0.07); border-radius: var(--r-lg); border-inline-end: 3px solid var(--lime-500); margin-bottom: 1.5rem; direction: rtl; }
.individual-card__steps { display: flex; flex-direction: column; }
.mini-step { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; font-weight: 600; color: rgba(255, 255, 255, 0.88); padding: 0.45rem 0; }
.mini-step__num { width: 26px; height: 26px; background: var(--lime-500); color: var(--green-800); font-size: 0.78rem; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mini-step__line { width: 2px; height: 18px; background: rgba(255, 255, 255, 0.12); margin-left: 12px; }

/* ----------------------------------------------------------
   12. FOR BUSINESSES
---------------------------------------------------------- */
.for-businesses { padding-block: 5rem; background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 100%); position: relative; overflow: hidden; }
.for-businesses::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(184, 255, 0, 0.06) 0%, transparent 65%); pointer-events: none; }
.business-targets { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; padding-inline: 0; }
.biz-chip { background: rgba(255, 255, 255, 0.09); color: rgba(255, 255, 255, 0.88); border: 1px solid rgba(255, 255, 255, 0.13); border-radius: var(--r-full); padding: 0.45rem 1rem; font-size: 0.86rem; font-weight: 600; transition: background var(--t1), color var(--t1), border-color var(--t1); cursor: default; white-space: nowrap; }
.biz-chip:hover { background: var(--lime-500); color: var(--green-800); border-color: var(--lime-500); }
.business-benefits { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.biz-benefit { background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.10); border-radius: var(--r-lg); padding: 1.5rem; transition: background var(--t2), transform var(--t2), border-color var(--t2); }
.biz-benefit:hover { background: rgba(255, 255, 255, 0.11); transform: translateY(-3px); border-color: rgba(184, 255, 0, 0.22); }
.biz-benefit__icon { width: 48px; height: 48px; background: rgba(255, 255, 255, 0.08); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.biz-benefit h4 { font-size: 0.96rem; font-weight: 800; color: var(--lime-500); margin-bottom: 0.5rem; }
.biz-benefit p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.70); line-height: 1.65; }
.restaurant-banner { position: relative; z-index: 1; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(184, 255, 0, 0.22); border-radius: var(--r-xl); padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.restaurant-banner__text h3 { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; line-height: 1.3; }
.restaurant-banner__text p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.70); line-height: 1.65; }

/* ----------------------------------------------------------
   13. DELIVERY FORM
---------------------------------------------------------- */
.commander { padding-block: 5rem; background: var(--surface-1); }
.delivery-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.5rem; box-shadow: var(--sh-md); max-width: 760px; margin-inline: auto; }
.form-fieldset { margin-bottom: 2rem; }
.form-fieldset legend { width: 100%; font-size: 0.92rem; font-weight: 800; color: var(--green-800); padding-bottom: 0.75rem; margin-bottom: 1.25rem; border-bottom: 2px solid var(--surface-2); }
.form-row { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.83rem; font-weight: 700; color: var(--green-700); }
.req { color: #dc2626; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.72rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r-md); font-size: 0.92rem; color: var(--body-text); background: var(--white); outline: none; transition: border-color var(--t1), box-shadow var(--t1); appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(34, 122, 67, 0.12); }
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.10); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b876b'%3E%3Cpath d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 16px; padding-right: 2.5rem; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { text-align: center; margin-top: 1.5rem; }
.form-note { margin-top: 0.75rem; font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ----------------------------------------------------------
   14. PRICING
---------------------------------------------------------- */
.pricing { padding-block: 3rem; background: var(--white); }
.pricing__inner { background: linear-gradient(145deg, var(--green-800) 0%, var(--green-600) 100%); border-radius: var(--r-xl); padding: 2.5rem 1.5rem; text-align: center; box-shadow: var(--sh-green); position: relative; overflow: hidden; }
.pricing__inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(184, 255, 0, 0.08) 0%, transparent 60%); pointer-events: none; }
.pricing__icon { font-size: 2.8rem; margin-bottom: 1rem; line-height: 1; }
.pricing__inner h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.pricing__inner > p { color: rgba(255, 255, 255, 0.75); max-width: 500px; margin-inline: auto; margin-bottom: 1.5rem; font-size: 0.96rem; line-height: 1.7; }
.pricing__note { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(184, 255, 0, 0.11); border: 1px solid rgba(184, 255, 0, 0.22); border-radius: var(--r-full); padding: 0.55rem 1.1rem; font-size: 0.84rem; color: rgba(255, 255, 255, 0.88); margin-bottom: 1.5rem; }
.pricing__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; position: relative; z-index: 1; }
.pricing__ctas .btn { flex: 1 1 auto; min-width: 0; justify-content: center; }
@media (min-width: 600px) {
    .pricing__ctas .btn { flex: 0 1 auto; min-width: 180px; }
}

/* ----------------------------------------------------------
   15. TESTIMONIALS
---------------------------------------------------------- */
.testimonials { padding-block: 5rem; background: var(--surface-1); }
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--sh-sm); transition: transform var(--t2), box-shadow var(--t2); display: flex; flex-direction: column; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testimonial-card__stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.testimonial-card > p { font-size: 0.91rem; color: var(--muted); line-height: 1.72; font-style: italic; flex: 1; margin-bottom: 1.25rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.author-avatar { width: 38px; height: 38px; background: var(--surface-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-card__author > div { display: flex; flex-direction: column; gap: 1px; }
.testimonial-card__author strong { font-size: 0.86rem; font-weight: 700; color: var(--green-800); }
.testimonial-card__author span { font-size: 0.76rem; color: var(--muted); }

/* ----------------------------------------------------------
   16. SOCIAL PROOF
---------------------------------------------------------- */
.social-proof { padding-block: 3rem; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.social-proof__inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
.social-proof__text h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; color: var(--green-800); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.social-darija { font-family: var(--font-arabic); color: var(--green-500); font-size: 0.96rem; font-weight: 700; direction: rtl; margin-bottom: 0.5rem; }
.social-proof__text > p:last-child { font-size: 0.9rem; color: var(--muted); }
.social-proof__buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.social-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.2rem; border-radius: var(--r-full); font-size: 0.88rem; font-weight: 700; border: none; transition: transform var(--t2), box-shadow var(--t2), filter var(--t1); white-space: nowrap; }
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn--ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: var(--white); }
.social-btn--ig:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220, 39, 67, 0.38); }
.social-btn--fb { background: #1877f2; color: var(--white); }
.social-btn--fb:hover { background: #1165d8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24, 119, 242, 0.38); }
.social-btn--tt { background: #010101; color: var(--white); }
.social-btn--tt:hover { background: #161616; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.40); }

/* ----------------------------------------------------------
   17. FAQ
---------------------------------------------------------- */
.faq { padding-block: 5rem; background: var(--surface-1); }
.faq__list { max-width: 740px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq__item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--t1), box-shadow var(--t1); }
.faq__item:has(.faq__question[aria-expanded="true"]) { border-color: var(--green-500); box-shadow: var(--sh-sm); }
.faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; font-size: 0.92rem; font-weight: 700; color: var(--green-800); text-align: left; transition: background var(--t1); }
.faq__question:hover { background: var(--surface-1); }
.faq__question[aria-expanded="true"] { background: rgba(34, 122, 67, 0.04); color: var(--green-600); }
.faq__chevron { font-size: 0.65rem; color: var(--muted); flex-shrink: 0; transition: transform var(--t2), color var(--t1); }
.faq__question[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); color: var(--green-500); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease), padding var(--t2); }
.faq__answer.open { max-height: 320px; padding: 0 1.25rem 1.25rem; }
.faq__answer p { font-size: 0.88rem; color: var(--muted); line-height: 1.72; }

/* ----------------------------------------------------------
   18. CONTACT
---------------------------------------------------------- */
.contact { padding-block: 5rem; background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 100%); position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; bottom: -100px; right: -80px; width: 440px; height: 440px; background: radial-gradient(circle, rgba(184, 255, 0, 0.06) 0%, transparent 65%); pointer-events: none; }
.contact__inner { position: relative; z-index: 1; }
.contact__content { max-width: 100%; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; margin-block: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.10); border-radius: var(--r-lg); padding: 1.5rem 1.75rem; transition: background var(--t2), transform var(--t1), border-color var(--t1); }
.contact-item:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.18); }
.contact-item--phone { border-inline-start: 4px solid var(--lime-500); }
.contact-item--wa    { border-inline-start: 4px solid var(--whatsapp); }
.contact-item__icon { font-size: 2rem; flex-shrink: 0; line-height: 1; width: 56px; height: 56px; background: rgba(255, 255, 255, 0.08); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
.contact-item > div { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.contact-item__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255, 255, 255, 0.50); }
.contact-item__value { font-size: 1.15rem; font-weight: 800; color: var(--white); transition: color var(--t1); }
.contact-item__value:hover { color: var(--lime-500); }
.contact-item__desc { font-size: 0.82rem; color: rgba(255, 255, 255, 0.60); margin-top: 2px; font-weight: 400; }
.contact__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.contact__ctas .btn { flex: 1 1 auto; min-width: 0; justify-content: center; }
@media (min-width: 600px) {
    .contact__ctas .btn { flex: 0 1 auto; min-width: 180px; }
}
.contact__note { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); line-height: 1.6; margin-top: 1rem; padding: 0.85rem 1.15rem; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--r-md); border-inline-start: 3px solid var(--lime-500); }
.contact__hours { display: flex; align-items: center; gap: 0.5rem; background: rgba(184, 255, 0, 0.10); border: 1px solid rgba(184, 255, 0, 0.18); border-radius: var(--r-full); padding: 0.5rem 1rem; font-size: 0.85rem; color: var(--lime-500); font-weight: 600; margin-top: 1rem; justify-content: center; }
.contact__hours-icon { font-size: 1rem; }

/* ----------------------------------------------------------
   19. FOOTER
---------------------------------------------------------- */
.footer { background: var(--black); padding-top: 3rem; }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.footer__logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer__logo-img { height: 38px; width: auto; display: block; object-fit: contain; max-width: 180px; }
.footer__brand > p { font-size: 0.86rem; color: rgba(255, 255, 255, 0.45); line-height: 1.6; }
.footer__arabic { font-family: var(--font-arabic); color: var(--lime-500); font-size: 0.9rem; font-weight: 700; margin-top: 0.5rem; direction: rtl; }
.footer__nav h4, .footer__contact h4, .footer__social h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; color: rgba(255, 255, 255, 0.85); margin-bottom: 1rem; }
.footer__nav ul, .footer__contact ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a, .footer__contact a, .footer__contact li { font-size: 0.86rem; color: rgba(255, 255, 255, 0.48); transition: color var(--t1); }
.footer__nav a:hover, .footer__contact a:hover { color: var(--lime-500); }
.footer__social-links { display: flex; gap: 0.75rem; margin-top: 0.25rem; }
.footer__social-btn { width: 38px; height: 38px; background: rgba(255, 255, 255, 0.07); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.60); transition: background var(--t1), color var(--t1), transform var(--t1); }
.footer__social-btn svg { width: 17px; height: 17px; }
.footer__social-btn:hover { background: var(--lime-500); color: var(--green-800); transform: translateY(-2px); }
.footer__bottom { padding-block: 1.25rem; }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 0.5rem; text-align: center; }
.footer__bottom p { font-size: 0.78rem; color: rgba(255, 255, 255, 0.28); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.footer__legal a { font-size: 0.74rem; color: rgba(255, 255, 255, 0.28); transition: color var(--t1); }
.footer__legal a:hover { color: var(--lime-500); }

/* ----------------------------------------------------------
   20. FLOATING WHATSAPP
---------------------------------------------------------- */
.whatsapp-float { position: fixed; bottom: calc(70px + 1.25rem); right: 1.25rem; z-index: 900; width: 54px; height: 54px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.50); transition: transform var(--t2), box-shadow var(--t2), background var(--t1); }
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float:hover { background: var(--wa-dark); transform: scale(1.10); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.60); }
.whatsapp-float__tooltip { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); background: var(--green-800); color: var(--white); font-size: 0.78rem; font-weight: 600; padding: 0.38rem 0.72rem; border-radius: var(--r-full); white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity var(--t2); box-shadow: var(--sh-md); }
.whatsapp-float__tooltip::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--green-800); }
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ----------------------------------------------------------
   21. MOBILE STICKY BAR
---------------------------------------------------------- */
.mobile-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; height: 70px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--green-900); border-top: 1px solid rgba(184, 255, 0, 0.12); box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.22); }
.sticky-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); border-right: 1px solid rgba(255, 255, 255, 0.06); transition: background var(--t1), color var(--t1); -webkit-tap-highlight-color: transparent; padding: 0.5rem 0.25rem; text-align: center; line-height: 1.2; }
.sticky-btn:last-child { border-right: none; }
.sticky-btn span { font-size: 1.25rem; line-height: 1; }
.sticky-btn:active { background: rgba(255, 255, 255, 0.06); }
.sticky-btn--phone:hover { color: var(--lime-500); }
.sticky-btn--wa { color: var(--whatsapp); }
.sticky-btn--wa:hover { background: rgba(37, 211, 102, 0.09); }
.sticky-btn--order { background: var(--lime-500); color: var(--green-800); font-weight: 900; }
.sticky-btn--order:hover { background: var(--lime-400); }

/* ----------------------------------------------------------
   22. SCROLL REVEAL
---------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ----------------------------------------------------------
   23. ACCESSIBILITY
---------------------------------------------------------- */
:focus-visible { outline: 2px solid var(--lime-500); outline-offset: 3px; border-radius: var(--r-sm); }
.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; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } html { scroll-behavior: auto; } }

/* ----------------------------------------------------------
   24. RESPONSIVE
---------------------------------------------------------- */
@media (min-width: 480px) {
    :root { --pad-x: 1.25rem; }
    .use-cases { grid-template-columns: repeat(2, 1fr); }
    .use-case { font-size: 0.83rem; padding: 0.58rem 0.85rem; white-space: nowrap; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .advantages__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    :root { --pad-x: 2rem; --nav-h: 72px; }
    body { padding-bottom: 0; }
    .navbar__burger { display: none; }
    .navbar__links { display: flex; }
    .hero__inner { flex-direction: row; align-items: center; gap: 2.5rem; min-height: calc(100vh - var(--nav-h)); }
    .hero__content { flex: 1 1 55%; }
    .hero__visual { flex: 0 0 auto; width: 340px; }
    .hero__rider-card { max-width: 100%; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .advantages__grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
    .business-benefits { grid-template-columns: repeat(2, 1fr); }
    .steps { flex-direction: row; align-items: flex-start; gap: 0.5rem; }
    .step { flex: 1; min-width: 0; }
    .step__arrow { display: flex; padding-top: 2.8rem; }
    .two-col { flex-direction: row; align-items: center; gap: 2.5rem; }
    .two-col__content { flex: 1 1 55%; }
    .two-col__visual { flex: 0 0 320px; }
    .service-area__inner { flex-direction: row; align-items: center; gap: 2.5rem; }
    .service-area__content { flex: 1; }
    .service-area__map { flex: 0 0 280px; max-width: 280px; }
    .form-row { flex-direction: row; }
    .restaurant-banner { flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem; }
    .social-proof__inner { flex-direction: row; justify-content: space-between; text-align: left; }
    .footer__inner { grid-template-columns: repeat(2, 1fr); }
    .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
    .whatsapp-float { bottom: 2rem; right: 2rem; }
    .mobile-sticky-bar { display: none; }
    .contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
    .section-header { text-align: left; margin-bottom: 0; }
    .section-title { margin-inline: 0; }
    .section-sub { margin-inline: 0; }
    .contact__content { max-width: 100%; }
    .contact-info { gap: 1rem; margin-block: 0 1.5rem; }
    .contact__ctas { justify-content: flex-start; }
}
@media (min-width: 1024px) {
    .services__grid { grid-template-columns: repeat(4, 1fr); }
    .business-benefits { grid-template-columns: repeat(4, 1fr); }
    .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .hero__visual { width: 400px; }
    .hero__rider-card { max-width: 400px; }
}
@media (min-width: 1280px) {
    :root { --pad-x: 2.5rem; }
    .hero__title { font-size: 4.2rem; }
    .hero__visual { width: 440px; }
    .hero__rider-card { max-width: 440px; }
}
