:root {
      --green: #19c96b;
      --green-2: #07a653;
      --lime: #b5f34b;
      --orange: #ff922e;
      --blue: #45a8ff;
      --ink: #06110b;
      --ink-2: #0b1c13;
      --cream: #f5faf7;
      --muted: #68776f;
      --line: rgba(5, 30, 17, .10);
      --white: #fff;
      --radius: 32px;
      --shadow: 0 28px 80px rgba(2, 35, 17, .14);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Inter, Arial, sans-serif;
      color: var(--ink);
      background: var(--white);
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font: inherit; }
    ::selection { background: var(--lime); color: var(--ink); }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin-inline: auto;
    }

    /* ---------------- NAV ---------------- */
    .nav-shell {
      position: fixed;
      top: 18px;
      left: 0;
      width: 100%;
      z-index: 100;
      pointer-events: none;
    }

    .nav {
      pointer-events: auto;
      width: min(1180px, calc(100% - 32px));
      height: 72px;
      margin: auto;
      padding: 0 14px 0 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 24px;
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,.8);
      box-shadow: 0 18px 55px rgba(0, 28, 14, .12);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -1.8px;
    }

    .brand-mark {
      width: 37px;
      height: 37px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(145deg, var(--green), var(--green-2));
      transform: rotate(-7deg);
      box-shadow: 0 8px 24px rgba(25,201,107,.3);
    }

    .brand em {
      color: var(--green-2);
      font-style: normal;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 27px;
      font-size: 13px;
      font-weight: 700;
      color: #526159;
    }

    .nav-links a { transition: .25s ease; }
    .nav-links a:hover { color: var(--green-2); }

    .nav-download {
      color: #fff !important;
      background: var(--green-2);
      padding: 13px 17px;
      border-radius: 14px;
      box-shadow: 0 9px 22px rgba(7,166,83,.2);
    }

    .hamburger {
      display: none;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 12px;
      background: #eef7f1;
      color: var(--ink);
      cursor: pointer;
    }

    /* ---------------- HERO ---------------- */
    .hero {
      min-height: 860px;
      padding: 170px 0 95px;
      color: #fff;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(3,20,12,.98) 0%, rgba(3,28,17,.89) 42%, rgba(3,27,16,.48) 75%, rgba(3,18,10,.74) 100%),
        url("../images/landing/zas-hero-bg.png") center/cover;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 70% 25%, rgba(25,201,107,.35), transparent 20%),
        radial-gradient(circle at 80% 85%, rgba(181,243,75,.18), transparent 23%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 800px;
      height: 800px;
      right: -420px;
      top: -300px;
      border: 1px solid rgba(181,243,75,.15);
      border-radius: 50%;
      box-shadow: 0 0 0 80px rgba(181,243,75,.025), 0 0 0 160px rgba(181,243,75,.018);
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      align-items: center;
      gap: 45px;
    }

    .hero-copy { max-width: 600px; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--lime);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
      margin-bottom: 25px;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 7px rgba(181,243,75,.10);
    }

    .hero h1 {
      font-size: clamp(58px, 7vw, 91px);
      line-height: .9;
      letter-spacing: -5.5px;
      font-weight: 900;
    }

    .hero h1 span { color: var(--green); }
    .hero h1 strong {
      display: block;
      color: #fff;
      font-size: .92em;
    }

    .hero-text {
      margin-top: 28px;
      max-width: 540px;
      color: rgba(255,255,255,.75);
      font-size: 17px;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .btn {
      min-height: 52px;
      padding: 0 20px;
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      font-size: 13px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }

    .btn:hover {
      transform: translateY(-3px);
    }

    .btn-green {
      color: #fff;
      background: linear-gradient(135deg, var(--green), var(--green-2));
      box-shadow: 0 14px 30px rgba(25,201,107,.22);
    }

    .btn-glass {
      color: #fff;
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.18);
      backdrop-filter: blur(10px);
    }

    .hero-note {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 30px;
      color: rgba(255,255,255,.56);
      font-size: 11px;
      font-weight: 600;
    }

    .mini-icons { display: flex; }
    .mini-icon {
      width: 30px;
      height: 30px;
      margin-left: -6px;
      display: grid;
      place-items: center;
      border: 2px solid #07120c;
      border-radius: 50%;
      background: #dffbe9;
      color: var(--green-2);
    }
    .mini-icon:first-child { margin-left: 0; }

    /* HERO PHONE */
    .hero-visual {
      height: 640px;
      position: relative;
      perspective: 1200px;
    }

    .phone {
      position: absolute;
      width: 272px;
      height: 592px;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%) rotate(5deg);
      border: 8px solid #0a0f14;
      border-radius: 40px;
      overflow: hidden;
      background: #0b1b2b;
      box-shadow:
        0 0 0 2px rgba(255,255,255,.08) inset,
        28px 40px 80px rgba(0,0,0,.48);
      z-index: 4;
    }

    .phone-notch {
      position: absolute;
      z-index: 5;
      width: 105px;
      height: 28px;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      border-radius: 0 0 18px 18px;
      background: #040b07;
    }

    .phone-screen {
      height: 100%;
      padding: 42px 16px 15px;
      color: var(--ink);
      background: linear-gradient(#f5fff8, #e9f6ee);
    }

    .app-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 8px 2px 17px;
    }

    .app-logo {
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -1.4px;
      color: var(--green-2);
    }

    .avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #d5f5e1;
    }

    .search {
      height: 42px;
      border-radius: 13px;
      padding: 0 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #819088;
      font-size: 9px;
      background: #fff;
      box-shadow: 0 8px 20px rgba(3,35,18,.07);
    }

    .app-promo {
      height: 140px;
      margin-top: 14px;
      padding: 18px;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      color: #fff;
      background: linear-gradient(135deg, #0a9953, #22d574);
    }

    .app-promo::after {
      content: "🛵";
      position: absolute;
      right: -5px;
      bottom: -18px;
      font-size: 82px;
      transform: rotate(-9deg);
    }

    .app-promo strong {
      display: block;
      max-width: 145px;
      font-size: 18px;
      line-height: 1.05;
    }

    .app-promo small {
      display: block;
      max-width: 150px;
      margin-top: 8px;
      font-size: 9px;
      line-height: 1.4;
      opacity: .82;
    }

    .app-cats {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 7px;
      margin-top: 15px;
    }

    .app-cat {
      padding: 10px 3px;
      border-radius: 14px;
      text-align: center;
      background: #fff;
      box-shadow: 0 7px 18px rgba(3,35,18,.05);
    }

    .app-cat i { width: 20px; height: 20px; color: var(--green-2); }
    .app-cat span {
      display: block;
      margin-top: 4px;
      color: #67756e;
      font-size: 7px;
      font-weight: 800;
    }

    .app-order {
      margin-top: 13px;
      padding: 12px;
      display: flex;
      align-items: center;
      gap: 9px;
      border-radius: 15px;
      background: #fff;
      box-shadow: 0 8px 20px rgba(3,35,18,.05);
    }

    .food {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      object-fit: cover;
    }

    .order-text strong {
      display: block;
      font-size: 9px;
    }

    .order-text small {
      color: #819088;
      font-size: 7px;
    }

    .float-card {
      position: absolute;
      z-index: 7;
      padding: 14px 16px;
      border-radius: 17px;
      color: var(--ink);
      background: rgba(255,255,255,.93);
      backdrop-filter: blur(14px);
      box-shadow: 0 20px 50px rgba(0,0,0,.25);
      border: 1px solid rgba(255,255,255,.7);
    }

    .float-card strong {
      display: block;
      font-size: 11px;
    }

    .float-card small {
      display: block;
      margin-top: 4px;
      color: #7a8880;
      font-size: 8px;
    }

    .float-left { left: 2%; top: 24%; }
    .float-right { right: 1%; bottom: 21%; }

    .route-line {
      position: absolute;
      z-index: 1;
      width: 340px;
      height: 200px;
      left: 17%;
      top: 13%;
      border: 2px dashed rgba(181,243,75,.4);
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-radius: 50%;
      transform: rotate(25deg);
    }

    .route-pin {
      position: absolute;
      z-index: 2;
      top: 10%;
      right: 10%;
      color: var(--lime);
      filter: drop-shadow(0 0 12px rgba(181,243,75,.5));
    }

    /* ---------------- GENERIC SECTIONS ---------------- */
    .section {
      padding: 120px 0;
      position: relative;
    }

    .section-kicker {
      color: var(--green-2);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-title {
      max-width: 720px;
      font-size: clamp(40px, 5.5vw, 66px);
      line-height: .96;
      letter-spacing: -4px;
      font-weight: 900;
    }

    .section-subtitle {
      max-width: 600px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    /* ---------------- ECOSYSTEM ---------------- */
    .ecosystem {
      background: #fff;
    }

    .eco-layout {
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 65px;
      align-items: end;
    }

    .eco-cards {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 14px;
      margin-top: 50px;
    }

    .eco-card {
      min-height: 310px;
      padding: 26px;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 27px;
      background: #f5faf7;
      transition: .4s ease;
    }

    .eco-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow);
    }

    .eco-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 17px;
      background: #fff;
      box-shadow: 0 10px 25px rgba(3,35,18,.08);
    }

    .eco-icon svg { width: 25px; color: var(--green-2); }

    .eco-card:nth-child(2) .eco-icon svg { color: var(--orange); }
    .eco-card:nth-child(3) .eco-icon svg { color: var(--blue); }

    .eco-card h3 {
      margin-top: 65px;
      font-size: 21px;
      letter-spacing: -.8px;
    }

    .eco-card p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.65;
    }

    .eco-card-number {
      position: absolute;
      top: 16px;
      right: 19px;
      color: rgba(7,166,83,.08);
      font-size: 60px;
      font-weight: 900;
    }

    /* ---------------- DARK COVERAGE ---------------- */
    .coverage {
      color: #fff;
      background:
        radial-gradient(circle at 15% 20%, rgba(25,201,107,.2), transparent 22%),
        radial-gradient(circle at 90% 80%, rgba(181,243,75,.11), transparent 20%),
        var(--ink);
      overflow: hidden;
    }

    .coverage-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 70px;
      align-items: center;
    }

    .coverage .section-kicker { color: var(--lime); }
    .coverage .section-subtitle { color: #a2b1a9; }

    .map-wrap {
      min-height: 500px;
      position: relative;
      display: grid;
      place-items: center;
    }

    .map-glow {
      position: absolute;
      width: 330px;
      height: 330px;
      border-radius: 50%;
      background: rgba(25,201,107,.18);
      filter: blur(60px);
    }

    .map-card {
      position: relative;
      width: min(100%, 510px);
      height: 420px;
      overflow: hidden;
      border-radius: 32px;
      border: 1px solid rgba(255,255,255,.1);
      background:
        linear-gradient(rgba(4,18,11,.32), rgba(4,18,11,.72)),
        url("../images/landing/zas-hero-bg.png") center/cover;
      box-shadow: 0 35px 100px rgba(0,0,0,.4);
    }

    .map-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(25,201,107,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25,201,107,.08) 1px, transparent 1px);
      background-size: 38px 38px;
    }

    .map-point {
      position: absolute;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 8px rgba(181,243,75,.12), 0 0 25px rgba(181,243,75,.8);
      animation: mapPulse 2.2s infinite;
    }

    @keyframes mapPulse {
      50% { box-shadow: 0 0 0 18px rgba(181,243,75,0), 0 0 30px rgba(181,243,75,.8); }
    }

    .p1 { left: 27%; top: 42%; }
    .p2 { left: 40%; top: 54%; animation-delay: .4s; }
    .p3 { left: 57%; top: 35%; animation-delay: .8s; }
    .p4 { left: 70%; top: 61%; animation-delay: 1.2s; }
    .p5 { left: 47%; top: 76%; animation-delay: 1.6s; }

    .map-label {
      position: absolute;
      left: 24px;
      bottom: 23px;
      padding: 10px 13px;
      border-radius: 13px;
      background: rgba(3,17,10,.72);
      backdrop-filter: blur(10px);
      font-size: 10px;
      font-weight: 800;
    }

    .coverage-points {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 10px;
      margin-top: 30px;
    }

    .coverage-point {
      padding: 17px 12px;
      text-align: center;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 18px;
      background: rgba(255,255,255,.045);
    }

    .coverage-point svg {
      color: var(--lime);
      width: 21px;
      margin-bottom: 9px;
    }

    .coverage-point span {
      display: block;
      color: #c4d0ca;
      font-size: 9px;
      font-weight: 700;
    }

    /* ---------------- PHOTO SPLITS ---------------- */
    .split-section { background: var(--cream); }

    .split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .photo-card {
      min-height: 590px;
      position: relative;
      overflow: hidden;
      border-radius: 35px;
      color: #fff;
      isolation: isolate;
      background: #102018;
    }

    .photo-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      transition: transform .8s cubic-bezier(.2,.7,.2,1);
    }

    .photo-card:hover img { transform: scale(1.07); }

    .photo-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(0deg, rgba(3,16,9,.96) 0%, rgba(3,16,9,.15) 75%);
    }

    .photo-content {
      position: absolute;
      left: 36px;
      right: 36px;
      bottom: 35px;
    }

    .photo-content .section-kicker { color: var(--lime); }
    .photo-content h2 {
      max-width: 460px;
      font-size: 43px;
      line-height: .98;
      letter-spacing: -2.5px;
    }

    .photo-content p {
      max-width: 470px;
      margin-top: 14px;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height: 1.65;
    }

    .photo-content .btn { margin-top: 21px; }

    /* floating dashboard */
    .dashboard {
      position: absolute;
      right: 27px;
      top: 27px;
      width: 190px;
      padding: 15px;
      color: var(--ink);
      border-radius: 20px;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(10px);
      box-shadow: 0 20px 50px rgba(0,0,0,.2);
      transform: rotate(3deg);
    }

    .dashboard-head {
      display: flex;
      justify-content: space-between;
      font-size: 8px;
      font-weight: 900;
    }

    .dashboard-value {
      margin-top: 9px;
      font-size: 22px;
      font-weight: 900;
    }

    .dashboard-bars {
      height: 65px;
      margin-top: 7px;
      display: flex;
      align-items: end;
      gap: 7px;
    }

    .dashboard-bars i {
      flex: 1;
      border-radius: 5px 5px 2px 2px;
      background: linear-gradient(#22d574,#079b53);
    }

    .dashboard-bars i:nth-child(1){height:35%}
    .dashboard-bars i:nth-child(2){height:55%}
    .dashboard-bars i:nth-child(3){height:45%}
    .dashboard-bars i:nth-child(4){height:78%}
    .dashboard-bars i:nth-child(5){height:96%}
    .dashboard-bars i:nth-child(6){height:70%}

    /* ---------------- CATEGORIES ---------------- */
    .categories { background: #fff; }

    .category-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      gap: 13px;
      margin-top: 45px;
    }

    .category {
      height: 240px;
      overflow: hidden;
      position: relative;
      border-radius: 27px;
      color: #fff;
      isolation: isolate;
    }

    .category img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      transition: transform .65s ease;
    }

    .category:hover img { transform: scale(1.1); }

    .category::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(0deg, rgba(0,0,0,.75), rgba(0,0,0,.02));
    }

    .category-info {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
    }

    .category-info i {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      margin-bottom: 10px;
      border-radius: 11px;
      background: rgba(255,255,255,.18);
      backdrop-filter: blur(10px);
    }

    .category-info h3 { font-size: 16px; }
    .category-info span {
      display: block;
      margin-top: 4px;
      color: rgba(255,255,255,.7);
      font-size: 9px;
    }

    /* ---------------- APP ---------------- */
    .app-section {
      padding: 120px 0;
      overflow: hidden;
      background:
        radial-gradient(circle at 10% 40%, rgba(181,243,75,.25), transparent 20%),
        #edf8f1;
    }

    .app-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      align-items: center;
      gap: 80px;
    }

    .phones {
      height: 540px;
      position: relative;
    }

    .mini-phone {
      position: absolute;
      width: 205px;
      height: 446px;
      top: 50px;
      border: 7px solid #0a0f14;
      border-radius: 34px;
      overflow: hidden;
      background: #0b1b2b;
      box-shadow: 0 30px 70px rgba(4,36,18,.22);
    }

    .mini-phone.left {
      left: 6%;
      transform: rotate(-9deg);
    }

    .mini-phone.right {
      right: 6%;
      transform: rotate(9deg);
    }

    .mini-phone.center {
      left: 50%;
      top: 10px;
      transform: translateX(-50%);
      z-index: 2;
    }

    .mini-phone img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .app-copy h2 {
      font-size: clamp(42px,5vw,65px);
      line-height: .95;
      letter-spacing: -4px;
      font-weight: 900;
    }

    .app-copy p {
      max-width: 520px;
      margin-top: 19px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .store-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 26px;
      padding: 12px 17px;
      color: #fff;
      border-radius: 14px;
      background: #06110b;
    }

    .store-btn small { display:block; font-size:7px; opacity:.7; }
    .store-btn strong { display:block; font-size:13px; }

    /* ---------------- STATS ---------------- */
    .stats {
      padding: 65px 0;
      color: #fff;
      background: #06110b;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
    }

    .stat {
      text-align: center;
      padding: 10px 25px;
      border-right: 1px solid rgba(255,255,255,.1);
    }

    .stat:last-child { border-right: 0; }
    .stat strong {
      display: block;
      color: var(--lime);
      font-size: 47px;
      line-height: 1;
      letter-spacing: -3px;
      font-weight: 900;
    }
    .stat span {
      display: block;
      margin-top: 8px;
      color: #93a39a;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .08em;
    }

    /* ---------------- CTA ---------------- */
    .final-cta {
      padding: 115px 0;
      background: #fff;
    }

    .cta-box {
      min-height: 460px;
      padding: 70px 45px;
      overflow: hidden;
      position: relative;
      border-radius: 40px;
      text-align: center;
      color: #fff;
      background:
        radial-gradient(circle at 15% 20%, rgba(181,243,75,.25), transparent 22%),
        radial-gradient(circle at 90% 80%, rgba(181,243,75,.16), transparent 22%),
        linear-gradient(135deg, #0aa65a, #067241);
    }

    .cta-box::before,
    .cta-box::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 50%;
    }

    .cta-box::before {
      width: 620px;
      height: 620px;
      left: -280px;
      top: -350px;
    }

    .cta-box::after {
      width: 450px;
      height: 450px;
      right: -200px;
      bottom: -300px;
    }

    .cta-box > * { position: relative; z-index: 2; }

    .cta-box .section-kicker { color: var(--lime); }
    .cta-box h2 {
      font-size: clamp(45px,6vw,76px);
      line-height: .93;
      letter-spacing: -4.5px;
    }

    .cta-box p {
      max-width: 570px;
      margin: 19px auto 0;
      color: rgba(255,255,255,.78);
      font-size: 14px;
      line-height: 1.7;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 11px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .cta-actions .btn-green {
      background: #fff;
      color: var(--green-2);
      box-shadow: none;
    }

    /* ---------------- FOOTER ---------------- */
    footer {
      padding: 65px 0 25px;
      color: #8d9d94;
      background: #030b07;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr repeat(3,1fr);
      gap: 45px;
      padding-bottom: 48px;
    }

    .footer-brand p {
      max-width: 300px;
      margin-top: 16px;
      font-size: 11px;
      line-height: 1.75;
    }

    .footer-title {
      margin-bottom: 15px;
      color: #fff;
      font-size: 11px;
      font-weight: 800;
    }

    .footer-col a {
      display: block;
      margin: 9px 0;
      font-size: 10px;
      transition: .2s;
    }

    .footer-col a:hover { color: #fff; }

    .socials {
      display: flex;
      gap: 8px;
      margin-top: 19px;
    }

    .socials a {
      width: 31px;
      height: 31px;
      display: grid;
      place-items: center;
      margin: 0;
      border-radius: 50%;
      color: #fff;
      background: rgba(255,255,255,.08);
    }

    .socials svg { width: 14px; }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: 9px;
    }

    /* ---------------- REVEAL ---------------- */
    .reveal { opacity: 0; transform: translateY(35px); }
    .reveal.is-visible { opacity: 1; transform: none; }

    /* ---------------- RESPONSIVE ---------------- */
    @media (max-width: 980px) {
      .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 80px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 17px;
        background: rgba(255,255,255,.97);
        border-radius: 20px;
        box-shadow: var(--shadow);
      }

      .nav-links.open { display: flex; }
      .hamburger { display: grid; place-items: center; }

      .hero-grid,
      .coverage-grid,
      .app-grid { grid-template-columns: 1fr; }

      .hero { min-height: auto; padding-bottom: 30px; }
      .hero-visual { margin-top: 20px; }
      .eco-layout { display: block; }
      .eco-cards { margin-top: 35px; }
      .category-grid { grid-template-columns: repeat(3,1fr); }
      .split-grid { grid-template-columns: 1fr; }
      .map-wrap { margin-top: 20px; }
      .app-copy { text-align: center; }
      .app-copy p { margin-inline: auto; }
      .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
      .footer-grid .footer-col:last-child { display:none; }
    }

    @media (max-width: 650px) {
      .container { width: min(100% - 28px, 1180px); }
      .nav { width: calc(100% - 20px); height: 64px; }
      .nav-shell { top: 10px; }
      .hero { padding-top: 125px; }
      .hero h1 { font-size: 53px; letter-spacing: -3.7px; }
      .hero-text { font-size: 14px; }
      .hero-visual { height: 600px; transform: scale(.88); transform-origin: top center; margin-bottom: -65px; }
      .float-left { left: -2%; }
      .float-right { right: -2%; }
      .section { padding: 78px 0; }
      .section-title { letter-spacing: -2.7px; }
      .eco-cards { grid-template-columns: 1fr; }
      .eco-card { min-height: 240px; }
      .eco-card h3 { margin-top: 45px; }
      .coverage-points { grid-template-columns: 1fr 1fr; }
      .photo-card { min-height: 500px; }
      .category-head { display:block; }
      .category-grid { grid-template-columns: 1fr 1fr; }
      .category { height: 210px; }
      .phones { transform: scale(.82); transform-origin: center; margin-bottom: -60px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat { padding: 20px 10px; border-right: 1px solid rgba(255,255,255,.1); }
      .stat:nth-child(2) { border-right:0; }
      .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid .footer-brand { grid-column: 1/-1; }
      .footer-grid .footer-col:last-child { display:block; }
      .copyright { display:block; line-height:1.8; }
      .copyright span { display:block; }
    }
  

/* Landing v2 — local AI assets + motion polish */
.category img, .photo-card img, .mini-phone img, .app-order .food {
  object-fit: cover;
}
.phone-screen--shot {
  padding: 0 !important;
  background: #0b1b2b !important;
  height: 100%;
  overflow: hidden;
}
.phone:has(.phone-screen--shot) .phone-notch {
  display: none;
}
.phone-screen--shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}
.app-promo { backdrop-filter: blur(6px); }
.category { overflow: hidden; }
.category img {
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.category:hover img { transform: scale(1.06); }
.photo-card img {
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.photo-card:hover img { transform: scale(1.04); }
.eco-card {
  transition: transform .35s ease, box-shadow .35s ease;
}
.eco-card:hover { transform: translateY(-6px); }
.route-line { animation: routePulse 2.8s ease-in-out infinite; }
@keyframes routePulse {
  0%,100% { opacity: .55; }
  50% { opacity: 1; }
}
.live-dot { animation: liveBlink 1.4s ease-in-out infinite; }
@keyframes liveBlink {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.85); }
}
.map-point { animation: mapPing 2.4s ease-out infinite; }
.map-point.p2 { animation-delay: .35s; }
.map-point.p3 { animation-delay: .7s; }
.map-point.p4 { animation-delay: 1.05s; }
.map-point.p5 { animation-delay: 1.4s; }
@keyframes mapPing {
  0% { box-shadow: 0 0 0 0 rgba(181,243,75,.55); }
  70% { box-shadow: 0 0 0 14px rgba(181,243,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(181,243,75,0); }
}
.nav .brand { gap: 10px; }
.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}
