*{margin:0;padding:0;box-sizing:border-box}
:root{
  --orange:#F83809;
  --orange-dark:#C42C06;
  --orange-mid:#FF6A45;
  --orange-light:#FEE5DF;
  --orange-pale:#FFF4F1;
  --black:#0F0F0F;
  --charcoal:#1A1A1A;
  --charcoal2:#222222;
  --gray-dark:#3A3A3A;
  --gray:#6A6A6A;
  --gray-light:#ADADAD;
  --surface:#F6F5F0;
  --surface2:#FAFAF7;
  --white:#FFFFFF;
  --border:#E5E4DC;
  --border-light:#EDECE6;
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;
  color:var(--black);background:var(--white);overflow-x:hidden;
  font-size:16px;line-height:1.6;letter-spacing:-0.01em;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  font-feature-settings:'ss01','cv11';
}
img{max-width:100%;display:block}
h1,h2,h3,h4{font-family:'Fraunces',Georgia,serif;letter-spacing:-0.02em;font-feature-settings:'ss01'}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:var(--orange);border-radius:10px}

/* ─── NAV ─── */
.sb-nav{
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  padding:0;
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  min-height:70px;flex-wrap:wrap;
}
/* LOGO */
.nav-logo{display:flex;align-items:center;text-decoration:none;padding:0;margin:0}
.logo-img{height:38px;width:auto;max-width:170px;object-fit:contain;flex-shrink:0;display:block}
@media(max-width:480px){.logo-img{height:34px;max-width:140px}}

.nav-links{display:flex;align-items:center;gap:36px;margin-right:24px}
.nav-links a{font-size:14px;font-weight:500;color:var(--gray-dark);text-decoration:none;transition:color .2s}
.nav-links a:hover{color:var(--orange)}
.nav-actions{display:flex;align-items:center;gap:12px}
.navbar-toggler{border:1.5px solid var(--border);padding:6px 10px;border-radius:8px}
.navbar-toggler:focus{box-shadow:0 0 0 2px rgba(248,56,9,0.25)}
.btn-ghost{
  font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;font-size:14px;font-weight:500;
  color:var(--gray-dark);background:none;border:1.5px solid var(--border);
  border-radius:9px;padding:9px 20px;cursor:pointer;text-decoration:none;transition:all .2s;
}
.btn-ghost:hover{border-color:var(--orange);color:var(--orange)}
.btn-primary{
  font-family:'Plus Jakarta Sans',system-ui,-apple-system,sans-serif;font-size:14px;font-weight:600;
  background:var(--orange);color:white;border:none;
  border-radius:9px;padding:10px 22px;cursor:pointer;text-decoration:none;transition:all .2s;
}
.btn-primary:hover{background:var(--orange-dark);transform:translateY(-1px)}

/* ─── HERO ─── */
.hero{
  min-height:100vh;padding:70px 0 0;
  background:linear-gradient(150deg,#FFFAF6 0%,#FFF4EB 45%,#FFE8D0 100%);
  position:relative;overflow:hidden;display:flex;align-items:center;
}
@media(max-width:991.98px){.hero{min-height:auto}}
.hero-blob{position:absolute;border-radius:50%;pointer-events:none}
.hero-blob-1{
  width:700px;height:700px;
  background:radial-gradient(circle,rgba(248,56,9,0.18) 0%,transparent 70%);
  top:-200px;right:-150px;
}
.hero-blob-2{
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(255,106,69,0.14) 0%,transparent 70%);
  bottom:-150px;left:-100px;
}
.hero-grid-pattern{
  position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(248,56,9,0.06) 1px,transparent 1px);
  background-size:40px 40px;pointer-events:none;
}
.hero-inner{
  width:100%;padding:100px 0 80px;position:relative;z-index:2;
}

/* hero left */
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:9px;
  background:white;border:1px solid var(--border);
  border-radius:100px;padding:7px 16px 7px 10px;
  font-size:13px;font-weight:500;color:var(--gray-dark);
  margin-bottom:28px;
  box-shadow:0 2px 16px rgba(248,56,9,0.10);
}
.eyebrow-dot{
  width:26px;height:26px;background:var(--orange-light);border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-size:14px;flex-shrink:0;
}
.hero-h1{
  font-family:'Fraunces',Georgia,serif;
  font-size:clamp(44px,4.5vw,68px);
  line-height:1.06;color:var(--black);
  margin-bottom:22px;font-weight:400;
}
.hero-h1 .italic-orange{font-style:italic;color:var(--orange)}
.hero-sub{
  font-size:17px;color:var(--gray);line-height:1.75;
  margin-bottom:40px;max-width:440px;
}

/* hero CTA download buttons */
.hero-cta{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:32px}
.dl-btn-light{
  background:white;border:1.5px solid var(--border);
  color:var(--black);box-shadow:0 4px 18px rgba(0,0,0,0.05);
}
.dl-btn-light:hover{
  background:var(--orange-pale);border-color:var(--orange);
  transform:translateY(-2px);
}
.dl-btn-light .dl-top{
  color:var(--black),
}
.dl-btn-light .dl-main{color:var(--black)}

.hero-tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px}
.htag{
  background:white;border:1.5px solid var(--border);
  border-radius:100px;padding:8px 18px;font-size:13px;font-weight:500;
  color:var(--gray-dark);text-decoration:none;display:inline-block;
}
.hero-cities{font-size:13px;color:var(--gray-light)}
.hero-cities strong{color:var(--gray-dark);font-weight:500}

/* hero right — phones */
.hero-right{position:relative;display:flex;justify-content:center;align-items:flex-end;gap:16px}
.phone-wrap{animation:float 5s ease-in-out infinite}
.phone-wrap-2{animation-delay:1.2s}
.phone{
  background:#111;border-radius:38px;padding:3px;
  box-shadow:0 48px 96px rgba(0,0,0,0.28),0 8px 24px rgba(0,0,0,0.16);
}
.phone-main .phone{border-radius:40px}
.phone-screen{
  background:white;overflow:hidden;border-radius:37px;
}
.phone-main .phone-screen{width:230px;min-height:480px;display:flex;flex-direction:column}
.phone-side .phone-screen{width:175px;min-height:380px;display:flex;flex-direction:column}

/* main phone contents */
.ps-header{background:var(--orange);padding:22px 16px 18px;flex-shrink:0}
.ps-notch{width:72px;height:5px;background:rgba(0,0,0,0.25);border-radius:3px;margin:0 auto 18px}
.ps-deliver{color:rgba(255,255,255,0.75);font-size:10px;margin-bottom:2px}
.ps-city{color:white;font-size:15px;font-weight:700;margin-bottom:14px;display:flex;align-items:center;gap:4px}
.ps-city-arrow{font-size:11px;opacity:0.7}
.ps-body{padding:14px;flex:1;display:flex;flex-direction:column;gap:12px}
.ps-section-label{font-size:9px;font-weight:700;color:var(--gray-light);text-transform:uppercase;letter-spacing:0.8px;margin-bottom:6px}
.ps-cats{display:grid;grid-template-columns:repeat(4,1fr);gap:6px}
.ps-cat{background:var(--orange-pale);border-radius:9px;padding:7px 3px;text-align:center}
.ps-cat-icon{font-size:16px;display:block;margin-bottom:3px}
.ps-cat-name{font-size:8px;color:var(--gray-dark);font-weight:600}
.ps-rest{display:flex;gap:9px;background:var(--surface2);border-radius:10px;padding:9px}
.ps-rest-img{width:40px;height:40px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0}
.ps-rest-name{font-size:11px;font-weight:700;color:var(--black);margin-bottom:3px}
.ps-rest-meta{font-size:9px;color:var(--gray);display:flex;gap:5px;align-items:center}
.ps-star{color:var(--orange)}

/* side phone: order tracking */
.pt-header{background:var(--charcoal);padding:18px 14px 14px;flex-shrink:0}
.pt-notch{width:60px;height:4px;background:rgba(255,255,255,0.15);border-radius:2px;margin:0 auto 14px}
.pt-label{color:rgba(255,255,255,0.5);font-size:9px;margin-bottom:3px}
.pt-name{color:white;font-size:13px;font-weight:700}
.pt-body{padding:12px;flex:1;display:flex;flex-direction:column;gap:10px}
.pt-map{
  flex:1;min-height:90px;
  background:linear-gradient(145deg,#EBF0E8 0%,#E0EAE0 100%);
  border-radius:10px;position:relative;overflow:hidden;
}
.pt-map-line{position:absolute;background:rgba(0,0,0,0.07);border-radius:1px}
.pt-marker{
  position:absolute;width:18px;height:18px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transform:translate(-50%,-50%);
}
.pt-marker-orange{background:var(--orange);box-shadow:0 0 0 5px rgba(248,56,9,0.22)}
.pt-marker-dark{background:var(--charcoal)}
.pt-eta{
  position:absolute;bottom:8px;left:8px;right:8px;
  background:white;border-radius:8px;padding:6px 10px;
  display:flex;justify-content:space-between;align-items:center;
}
.pt-eta-l{font-size:8px;color:var(--gray)}
.pt-eta-v{font-size:11px;font-weight:700;color:var(--orange)}
.pt-steps{display:flex;flex-direction:column;gap:7px}
.pt-step{display:flex;align-items:center;gap:7px}
.pt-dot{width:9px;height:9px;border-radius:50%;flex-shrink:0}
.pt-dot-done{background:var(--orange)}
.pt-dot-active{background:var(--orange);box-shadow:0 0 0 3px rgba(248,56,9,0.25)}
.pt-dot-pending{background:var(--border)}
.pt-step-text{font-size:9px;font-weight:500;color:var(--gray-dark)}
.pt-step-text.pending{color:var(--gray-light)}
.pt-step-text.active{color:var(--orange);font-weight:700}

/* floating chips */
.chip{
  position:absolute;background:white;border-radius:14px;
  box-shadow:0 8px 32px rgba(0,0,0,0.12);
  padding:10px 15px;display:flex;align-items:center;gap:9px;
  white-space:nowrap;animation:float 5s ease-in-out infinite;z-index:10;
}
.chip-1{top:30px;left:-20px;animation-delay:0s}
.chip-2{bottom:90px;right:-30px;animation-delay:1.5s}
.chip-3{bottom:20px;left:10px;animation-delay:0.8s}
.chip-icon{font-size:18px;line-height:1}
.chip-text{display:flex;flex-direction:column;line-height:1.3}
.chip-main{font-size:12px;font-weight:700;color:var(--black)}
.chip-sub{font-size:10px;color:var(--gray)}
.chip-status-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}

@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

/* ─── STATS BAR ─── */
.stats-bar{background:white;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.stats-inner{padding:44px 0;margin:0}
.stat-item{text-align:center;padding:0 24px;position:relative}
@media(min-width:768px){
  .stat-item:not(:last-child)::after{
    content:'';position:absolute;right:0;top:15%;height:70%;
    width:1px;background:var(--border);
  }
}
.stat-number{
  font-family:'Fraunces',Georgia,serif;
  font-size:44px;color:var(--orange);line-height:1;margin-bottom:6px;
}
.stat-label{font-size:14px;color:var(--gray);font-weight:400}

/* ─── SECTION COMMONS ─── */
.section{padding:110px 0}
.section-inner{}
.section-eyebrow{
  font-size:12px;font-weight:700;color:var(--orange);
  text-transform:uppercase;letter-spacing:2px;margin-bottom:16px;
}
.section-h2{
  font-family:'Fraunces',Georgia,serif;
  font-size:clamp(34px,3.2vw,52px);line-height:1.12;
  color:var(--black);margin-bottom:16px;font-weight:400;
}
.section-h2 em{font-style:italic;color:var(--orange)}
.section-sub{font-size:16px;color:var(--gray);line-height:1.75;max-width:500px;margin-bottom:64px}

/* ─── HOW IT WORKS ─── */
.section-hiw{background:var(--surface)}
.hiw-grid{position:relative}
.hiw-card{padding:0 16px;display:flex;flex-direction:column;height:100%}
.hiw-num-wrap{display:flex;align-items:center;gap:16px;margin-bottom:24px}
.hiw-num{
  width:48px;height:48px;border-radius:50%;
  background:var(--orange);color:white;
  font-family:'Fraunces',Georgia,serif;font-size:22px;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.hiw-icon-bg{
  width:56px;height:56px;background:var(--orange-light);
  border-radius:16px;display:flex;align-items:center;justify-content:center;
  font-size:26px;margin-bottom:22px;
}
.hiw-title{font-size:20px;font-weight:700;color:var(--black);margin-bottom:12px}
.hiw-desc{font-size:15px;color:var(--gray);line-height:1.75}

/* ─── RESTAURANTS ─── */
.section-rest{background:white}
.rest-header{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:16px;margin-bottom:36px}
.rest-grid{}
.rc{
  background:white;border-radius:18px;overflow:hidden;
  border:1px solid var(--border);cursor:pointer;
  transition:transform .25s,box-shadow .25s;
  height:100%;display:flex;flex-direction:column;
}
.rc:hover{transform:translateY(-5px);box-shadow:0 24px 48px rgba(0,0,0,0.09)}
.rc-thumb{
  height:164px;display:flex;align-items:center;justify-content:center;
  font-size:60px;position:relative;
}
.rc-thumb-badge{
  position:absolute;top:12px;left:12px;
  background:var(--orange);color:white;
  font-size:11px;font-weight:700;
  padding:4px 11px;border-radius:7px;
}
.rc-thumb-badge.new{background:var(--black)}
.rc-thumb-badge.deal{background:#1D9E75}
.rc-body{padding:16px;flex:1;display:flex;flex-direction:column}
.rc-name{font-size:15px;font-weight:700;color:var(--black);margin-bottom:4px}
.rc-cuisine{font-size:12px;color:var(--gray-light);margin-bottom:12px}
.rc-meta{display:flex;align-items:center;gap:0;font-size:12px}
.rc-rating{display:flex;align-items:center;gap:4px;font-weight:700;color:var(--black)}
.rc-star{color:var(--orange)}
.rc-sep{color:var(--border);margin:0 10px}
.rc-time{color:var(--gray)}
.rc-free{
  margin-top:auto;font-size:11px;font-weight:600;color:var(--orange);
  background:var(--orange-pale);border-radius:6px;
  padding:4px 10px;align-self:flex-start;
}
.rc-meta{margin-bottom:10px}

/* ─── APP DOWNLOAD ─── */
.section-app{
  background:var(--black);position:relative;overflow:hidden;padding:110px 0;
}
.app-glow{
  position:absolute;border-radius:50%;pointer-events:none;
}
.app-glow-1{
  width:800px;height:800px;
  background:radial-gradient(circle,rgba(248,56,9,0.10) 0%,transparent 65%);
  top:-300px;right:-250px;
}
.app-glow-2{
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(248,56,9,0.07) 0%,transparent 65%);
  bottom:-200px;left:-150px;
}
.app-inner{position:relative;z-index:2}
.app-eyebrow{
  font-size:12px;font-weight:700;color:var(--orange);
  text-transform:uppercase;letter-spacing:2px;margin-bottom:16px;
}
.app-h2{
  font-family:'Fraunces',Georgia,serif;
  font-size:clamp(36px,3.5vw,56px);line-height:1.1;
  color:white;margin-bottom:20px;font-weight:400;
}
.app-h2 em{font-style:italic;color:var(--orange)}
.app-sub{
  font-size:16px;color:rgba(255,255,255,0.5);line-height:1.75;margin-bottom:18px;
}
.app-perks{display:flex;flex-direction:column;gap:10px;margin-bottom:40px}
.app-perk{display:flex;align-items:center;gap:12px;font-size:14px;color:rgba(255,255,255,0.7)}
.app-perk-dot{
  width:20px;height:20px;border-radius:50%;background:rgba(248,56,9,0.18);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  font-size:11px;color:var(--orange);font-weight:700;
}
.app-btns{display:flex;gap:14px;flex-wrap:wrap}
.dl-btn{
  display:flex;align-items:center;gap:14px;
  background:#f83809;
  border:1.5px solid rgba(255,255,255,0.13);
  border-radius:15px;padding:14px 24px;
  text-decoration:none;cursor:pointer;transition:all .2s;
}
.dl-btn:hover{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.28);
  transform:translateY(-2px);
}
.dl-icon{
  width:30px;height:30px;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;
  color:white;
}
.dl-icon svg{width:100%;height:100%;display:block}
.dl-btn-light .dl-icon{color:var(--black)}
.dl-text{display:flex;flex-direction:column;gap:1px}
.dl-top{font-size:11px;color:rgba(255,255,255,0.45);letter-spacing:0.3px}
.dl-main{font-size:17px;font-weight:600;color:white}

/* app visual */
.app-visual{display:flex;justify-content:center;align-items:flex-end;gap:18px}
.app-phone-wrap{animation:float 5s ease-in-out infinite}
.app-phone-wrap-2{animation-delay:1.3s}
.app-phone{
  background:var(--charcoal2);border-radius:36px;padding:3px;
  border:1.5px solid rgba(255,255,255,0.07);
  box-shadow:0 40px 80px rgba(0,0,0,0.5);
}
.app-screen-main{width:210px;min-height:400px;background:white;border-radius:33px;overflow:hidden;display:flex;flex-direction:column}
.app-screen-side{width:165px;min-height:330px;background:white;border-radius:33px;overflow:hidden;display:flex;flex-direction:column}
/* main: order screen */
.as-header{background:var(--orange);padding:20px 16px 16px;flex-shrink:0}
.as-notch{width:70px;height:5px;background:rgba(0,0,0,0.2);border-radius:3px;margin:0 auto 16px}
.as-title{color:rgba(255,255,255,0.8);font-size:10px;margin-bottom:8px;font-weight:600;letter-spacing:0.5px;text-transform:uppercase}
.as-order-card{background:rgba(255,255,255,0.18);border-radius:10px;padding:9px 12px;display:flex;align-items:center;gap:10px}
.as-food-icon{font-size:22px}
.as-food-info{flex:1}
.as-food-name{color:white;font-size:12px;font-weight:700}
.as-food-rest{color:rgba(255,255,255,0.7);font-size:10px;margin-top:1px}
.as-food-price{color:white;font-size:13px;font-weight:800}
.as-body{padding:14px;flex:1;display:flex;flex-direction:column;gap:10px}
.as-track-title{font-size:10px;font-weight:700;color:var(--black);text-transform:uppercase;letter-spacing:0.5px}
.as-steps{display:flex;flex-direction:column;gap:9px}
.as-step{display:flex;align-items:center;gap:9px}
.as-dot{width:10px;height:10px;border-radius:50%;flex-shrink:0}
.as-dot-done{background:var(--orange)}
.as-dot-active{background:var(--orange);box-shadow:0 0 0 4px rgba(248,56,9,0.2)}
.as-dot-pending{background:var(--border)}
.as-step-t{font-size:10px;font-weight:600;color:var(--gray-dark)}
.as-step-t.active{color:var(--orange)}
.as-step-t.pending{color:var(--gray-light);font-weight:400}
.as-map{
  flex:1;min-height:100px;margin:0 0 0;
  background:linear-gradient(135deg,#EDF2EA 0%,#E3EDE3 100%);
  border-radius:10px;overflow:hidden;position:relative;
}
.as-map-grid-h{position:absolute;left:0;right:0;background:rgba(0,0,0,0.06);height:1px}
.as-map-grid-v{position:absolute;top:0;bottom:0;background:rgba(0,0,0,0.06);width:1px}
.as-pin{position:absolute;width:16px;height:16px;border-radius:50%;transform:translate(-50%,-50%)}
.as-pin-orange{background:var(--orange);box-shadow:0 0 0 5px rgba(248,56,9,0.22)}
.as-pin-dark{background:var(--black)}
.as-rider-chip{
  position:absolute;bottom:8px;left:8px;right:8px;
  background:white;border-radius:8px;padding:6px 10px;
  display:flex;justify-content:space-between;align-items:center;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
}
.as-rider-l{font-size:8px;color:var(--gray)}
.as-rider-v{font-size:11px;font-weight:800;color:var(--orange)}
/* side: menu screen */
.ss-header{background:var(--surface);padding:16px 14px 12px;flex-shrink:0;border-bottom:1px solid var(--border)}
.ss-notch{width:56px;height:4px;background:var(--border);border-radius:2px;margin:0 auto 12px}
.ss-rest-name{font-size:13px;font-weight:700;color:var(--black);margin-bottom:2px}
.ss-rest-meta{font-size:10px;color:var(--gray);display:flex;gap:5px}
.ss-body{padding:12px;flex:1;display:flex;flex-direction:column;gap:8px;overflow:hidden}
.ss-item{display:flex;gap:8px;padding:8px;background:var(--surface2);border-radius:9px}
.ss-item-img{width:40px;height:40px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:20px;background:white;flex-shrink:0}
.ss-item-info{flex:1;min-width:0}
.ss-item-name{font-size:10px;font-weight:700;color:var(--black);margin-bottom:2px}
.ss-item-desc{font-size:9px;color:var(--gray-light);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ss-item-price{font-size:11px;font-weight:700;color:var(--orange);margin-top:3px}
.ss-add-btn{
  width:22px;height:22px;background:var(--orange);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:white;font-size:14px;font-weight:700;flex-shrink:0;align-self:center;
}
.ss-cart{
  background:var(--orange);margin:8px;border-radius:10px;
  padding:10px 14px;display:flex;justify-content:space-between;align-items:center;
  color:white;font-size:11px;font-weight:700;
}

/* ─── TESTIMONIALS ─── */
.section-test{background:var(--surface)}
.test-grid{}
.test-card{
  background:white;border-radius:20px;padding:30px;
  border:1px solid var(--border);transition:all .25s;
  height:100%;display:flex;flex-direction:column;
}
.test-text{flex:1}
.test-card:hover{border-color:var(--orange);box-shadow:0 12px 32px rgba(248,56,9,0.08)}
.test-stars{display:flex;gap:3px;margin-bottom:18px}
.test-star{color:var(--orange);font-size:15px}
.test-text{
  font-size:15px;color:var(--gray-dark);line-height:1.78;
  margin-bottom:24px;font-style:italic;
}
.test-author{display:flex;align-items:center;gap:13px}
.test-avatar{
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;font-weight:700;color:white;flex-shrink:0;
}
.test-name{font-size:14px;font-weight:700;color:var(--black)}
.test-city{font-size:12px;color:var(--gray-light);margin-top:1px}

/* ─── CITIES BANNER ─── */
.cities-banner{
  background:var(--orange);padding:60px 24px;text-align:center;
}
.cities-banner h3{
  font-family:'Fraunces',Georgia,serif;
  font-size:clamp(28px,3vw,40px);color:white;font-weight:400;margin-bottom:8px;
}
.cities-banner h3 em{font-style:italic}
.cities-banner p{font-size:16px;color:rgba(255,255,255,0.75);margin-bottom:36px}
.cities-list{
  display:flex;flex-wrap:wrap;justify-content:center;gap:12px;
  max-width:900px;margin:0 auto;
}
.city-pill{
  background:rgba(255,255,255,0.18);border:1.5px solid rgba(255,255,255,0.3);
  border-radius:100px;padding:9px 22px;font-size:14px;font-weight:500;color:white;
  transition:all .2s;cursor:pointer;
}
.city-pill:hover{background:white;color:var(--orange)}

/* ─── FOOTER ─── */
footer{background:var(--charcoal);color:white;padding:72px 0 0}
.footer-top{
  padding-bottom:56px;border-bottom:1px solid rgba(255,255,255,0.07);
  margin-left:0;margin-right:0;
}
.f-brand-logo{display:inline-flex;align-items:center;gap:10px;margin-bottom:16px;text-decoration:none}
.f-logo-img{height:40px;width:auto;object-fit:contain}
.f-desc{font-size:14px;color:rgba(255,255,255,0.42);line-height:1.75;margin-bottom:28px;max-width:290px}
.f-socials{display:flex;gap:9px}
.f-social{
  width:36px;height:36px;border-radius:9px;
  background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:700;color:rgba(255,255,255,0.5);
  text-decoration:none;transition:all .2s;
}
.f-social:hover{background:var(--orange);color:white;border-color:var(--orange)}
.f-col-title{font-size:11px;font-weight:700;color:rgba(255,255,255,0.85);text-transform:uppercase;letter-spacing:1px;margin-bottom:22px}
.f-links{display:flex;flex-direction:column;gap:12px}
.f-links a{font-size:14px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color .2s}
.f-links a:hover{color:var(--orange)}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding:26px 0;font-size:13px;color:rgba(255,255,255,0.25);
}
.footer-bottom a{color:rgba(255,255,255,0.25);text-decoration:none;transition:color .2s}
.footer-bottom a:hover{color:var(--orange)}
.f-bottom-links{display:flex;gap:24px}

/* ─── ANIMATE ON SCROLL ─── */
.anim{opacity:0;transform:translateY(28px);transition:opacity .65s ease,transform .65s ease}
.anim.in{opacity:1;transform:translateY(0)}
.anim-d1{transition-delay:.08s}.anim-d2{transition-delay:.16s}.anim-d3{transition-delay:.24s}.anim-d4{transition-delay:.32s}

/* ─── ORANGE ACCENT LINE ─── */
.accent-line{height:4px;background:linear-gradient(90deg,var(--orange),var(--orange-mid) 50%,var(--orange))}

/* ─── RESPONSIVE ─── */
@media(max-width:991.98px){
  .hero-right,.app-visual{display:none !important}
  .hero-inner{padding:48px 0 40px}
  .hero-h1{font-size:clamp(34px,6.5vw,48px);margin-bottom:16px}
  .hero-sub{font-size:15px;margin-bottom:28px;line-height:1.65}
  .hero-eyebrow{margin-bottom:18px;font-size:12px}
  .hero-cta{margin-bottom:20px}
  .nav-inner{flex-wrap:wrap;min-height:64px}
  .navbar-collapse{width:100%;margin-top:12px;padding-bottom:12px}
  .nav-links{flex-direction:column;align-items:flex-start;gap:14px;margin:0 0 16px 0}
  .nav-actions{width:100%}
  .nav-actions .btn-primary{width:100%;text-align:center}
}
@media(max-width:767.98px){
  .section{padding:64px 0}
  .section-app{padding:64px 0}
  .stat-item{padding:8px 12px}
  .stat-number{font-size:32px}
  .rest-header{align-items:flex-start}
  .hero{padding-top:64px}
  .hero-inner{padding:32px 0 32px}
  .hero-h1{font-size:clamp(30px,8vw,42px)}
  .hero-sub{font-size:14.5px;margin-bottom:22px}
  .hero-cta{gap:10px;margin-bottom:18px}
  .hero-cta .dl-btn{flex:1 1 calc(50% - 5px);min-width:0;padding:10px 12px;border-radius:12px;gap:10px}
  .hero-cta .dl-icon{width:24px;height:24px}
  .hero-cta .dl-top{font-size:9px}
  .hero-cta .dl-main{font-size:13px}
  .footer-bottom{flex-direction:column;gap:14px;align-items:flex-start;text-align:left}
  .f-bottom-links{flex-wrap:wrap}
}
@media(max-width:480px){
  .hero{padding-top:60px}
  .hero-inner{padding:24px 0 28px}
  .hero-eyebrow{padding:5px 12px 5px 8px;font-size:11px;margin-bottom:14px}
  .hero-eyebrow .eyebrow-dot{width:22px;height:22px;font-size:12px}
  .hero-cities{font-size:12px}
  .cities-banner{padding:48px 20px}
}

/* hero mini-map showing live rider tracking */
.hero-mini-map{min-height:90px;height:90px;border-radius:9px;margin-top:4px}
.hero-mini-map .as-pin{width:12px;height:12px}
.hero-rider{font-size:11px;animation:rider-trip-hero 7s ease-in-out infinite !important}
@keyframes rider-trip-hero{
  0%   {top:72%;left:22%;opacity:0}
  8%   {top:72%;left:22%;opacity:1}
  35%  {top:58%;left:38%}
  60%  {top:42%;left:58%}
  82%  {top:32%;left:74%;opacity:1}
  100% {top:32%;left:74%;opacity:0}
}

/* ─── ANIMATED DELIVERY RIDER (live tracking map) ─── */
.as-pin-orange{animation:pin-pulse 2.4s ease-in-out infinite}
@keyframes pin-pulse{
  0%,100%{box-shadow:0 0 0 5px rgba(248,56,9,0.22)}
  50%{box-shadow:0 0 0 10px rgba(248,56,9,0.08)}
}
.as-rider{
  position:absolute;
  top:68%;left:28%;
  transform:translate(-50%,-50%);
  font-size:13px;line-height:1;
  filter:drop-shadow(0 1px 2px rgba(0,0,0,0.3));
  animation:rider-trip 7s ease-in-out infinite;
  z-index:5;will-change:top,left,opacity;
  pointer-events:none;
}
@keyframes rider-trip{
  0%   {top:68%;left:28%;opacity:0}
  8%   {top:68%;left:28%;opacity:1}
  30%  {top:55%;left:34%}
  50%  {top:46%;left:42%}
  72%  {top:42%;left:50%}
  85%  {top:42%;left:52%;opacity:1}
  100% {top:42%;left:52%;opacity:0}
}
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001ms !important;
  }
  .as-rider{display:none}
  .anim{opacity:1 !important;transform:none !important}
}

/* ─── FOOTER ENHANCEMENTS ─── */
footer {
  position: relative;
  overflow: hidden;
}

/* Subtle food emoji watermark pattern */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ctext x='10' y='50' font-size='28' opacity='0.045' fill='white'%3E🍕%3C/text%3E%3Ctext x='65' y='100' font-size='22' opacity='0.045' fill='white'%3E🍔%3C/text%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
  z-index: 0;
}
footer .container-xl { position: relative; z-index: 1; }

/* Column heading with icon */
.f-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.f-col-icon {
  font-size: 14px;
  opacity: 0.6;
}

/* Circular social buttons (overrides the rounded square) */
.f-social {
  border-radius: 50% !important;
  width: 34px !important;
  height: 34px !important;
  background: rgba(248,56,9,0.18) !important;
  border: 1px solid rgba(248,56,9,0.35) !important;
  color: rgba(255,255,255,0.65) !important;
  font-size: 12px !important;
}
.f-social:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: white !important;
}

/* Sparkle decoration bottom-right */
.f-sparkle {
  position: absolute;
  bottom: 24px;
  right: 32px;
  width: 40px;
  height: 40px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 2;
}
.f-sparkle svg { width: 100%; height: 100%; }