    body {
      font-family: Inter, sans-serif;
      background: #f4f6fb;
      color: #0f172a;
      overflow-x: hidden;
    }

    section {
      position: relative
    }

    /* NAVBAR */
    .navbar {
      transition: .3s;
    }

    .navbar.scrolled {
      background: white !important;
      box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, #ffe8d6, #fff);
      overflow: hidden;
    }

    .hero span {
      color: #f97316
    }

    /* BLOBS */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: .5;
      animation: float 10s infinite alternate;
    }

    .blob1 {
      width: 300px;
      height: 300px;
      background: #f97316;
      top: 25%;
      left: 1%
    }

    .blob2 {
      width: 260px;
      height: 260px;
      background: #22c55e;
      bottom: 5%;
      right: 2%
    }

    @keyframes float {
      from {
        transform: translateY(0)
      }

      to {
        transform: translateY(-40px)
      }
    }

    /* FLOATING SHAPES */
    .shape {
      position: absolute;
      font-size: 28px;
      opacity: .35;
      filter: blur(.3px);
      animation: drift 18s infinite ease-in-out;
      pointer-events: none;
    }

    .shape.small {
      font-size: 40px;
      opacity: .25
    }

    .shape.large {
      font-size: 86px;
      opacity: .4
    }

    @keyframes drift {
      0% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-60px)
      }

      100% {
        transform: translateY(0)
      }
    }

    .shape.s1 {
      top: 20%;
      left: 30%
    }

    .shape.s2 {
      top: 60%;
      left: 70%
    }

    .shape.s3 {
      top: 40%;
      left: 50%
    }

    /* ANGLES */
    .angle-down {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 160px;
      background: #eef2ff;
      clip-path: polygon(0 0, 100% 100%, 0 100%);
    }

    /* FEATURES */
    .features {
      background: #eef2ff;
      padding: 35px 0 85px 0;
    }

    /* CARDS */
    .card-soft {
      background: white;
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
      transition: .3s;
      height: 100%;
      transform-style: preserve-3d;
    }
    .tag {
        position: absolute;
        top: -10px;
        right: 10px;
        background: #fff;
        color: #f97316;
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 50px;
        box-shadow: 0px 0px 12px #000;
        }

    .card-soft:hover {
      transform: translateY(-10px)
    }

    .icon {
      font-size: 36px;
      margin-bottom: 10px;
    }

    /* PRICING */
    .pricing {
      background: linear-gradient(135deg, #ecfeff, #fff);
      padding: 70px 0 120px;
    }

    .angle-up {
      position: absolute;
      top: -1px;
      left: 0;
      width: 100%;
      height: 160px;
      background: #eef2ff;
      clip-path: polygon(0 0, 100% 0, 100% 100%);
    }

    .price {
      font-size: 38px;
      font-weight: 800;
      color: #16a34a
    }

    .popular {
      background: linear-gradient(135deg, #f97316, #fb923c);
      color: white;
    }
    .popular .price{
        color: #fff;
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, #0f172a, #020617);
      color: white;
      padding: 120px 0;
    }

    footer {
      background: #020617;
      color: #9ca3af
    }


    /* PHONE MOCKUP */
    .phone-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      margin-top: 60px;
    }

    .phone {
      width: 300px;
      height: 620px;
      background: #020617;
      border-radius: 36px;
      padding: 14px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
      animation: phoneFloat 6s ease-in-out infinite;
    }

    @keyframes phoneFloat {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-15px)
      }
    }

    .phone-screen {
      background: #fff;
      border-radius: 26px;
      height: 100%;
      overflow: hidden;
    }

    .phone-header {
      padding: 14px;
      background: #f97316;
      color: white;
      font-weight: 600;
      text-align: center;
    }

    .menu-scroll {
      height: 100%;
      overflow: hidden;
    }

    .menu-inner {
      padding: 12px;
      animation: menuScroll 18s linear infinite;
    }

    @keyframes menuScroll {
      0% {
        transform: translateY(0)
      }

      100% {
        transform: translateY(-50%)
      }
    }

    .menu-item {
      display: flex;
      justify-content: space-between;
      padding: 10px 6px;
      border-bottom: 1px solid #eee;
      font-size: 14px;
    }

    .menu-item span:last-child {
      font-weight: 600;
    }

    /* small shadow behind phone */
    .phone-shadow {
      position: absolute;
      bottom: -20px;
      width: 200px;
      height: 30px;
      background: #000;
      filter: blur(30px);
      opacity: .2;
    }



    /* TABLE QR PREVIEW */
    .table-qr {
      background: #eef2ff;
      padding: 15px 0 55px 0;
    }

    .qr-wrap {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .qr-card {
      width: 180px;
      background: #f8fafc;
      border-radius: 16px;
      padding: 16px;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
      transition: .3s;
      animation: qrFloat 6s ease-in-out infinite;
    }

    .qr-card:nth-child(2) {
      animation-delay: 1s
    }

    .qr-card:nth-child(3) {
      animation-delay: 2s
    }

    @keyframes qrFloat {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-10px)
      }
    }

    .qr-card:hover {
      transform: translateY(-12px) scale(1.03);
      box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
    }

    .table-label {
      font-weight: 700;
      margin-bottom: 10px;
    }

    .fake-qr {
      width: 120px;
      height: 120px;
      margin: 0 auto 10px;
      background:
        linear-gradient(90deg, #000 10%, transparent 10%) 0 0/12px 12px,
        linear-gradient(#000 10%, transparent 10%) 0 0/12px 12px,
        #fff;
      border-radius: 8px;
    }

    .scan-text {
      font-size: 13px;
      color: #64748b;
    }

    /* small stand base */
    .qr-stand {
      margin: 0 auto;
      width: 60px;
      height: 8px;
      background: #e5e7eb;
      border-radius: 4px;
    }
    .why-dinetapps {
  padding: 100px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-badge {
  display: inline-block;
  background: #fff3cd;
  color: #ff9800;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-dinetapps h2 {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}
.why-dinetapps {
  position: relative;
  overflow: hidden;
  padding: 30px 20px 100px 0px;
  background: #eef2ff;
}
.why-dinetapps h2 span {
  color: #0d6efd;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  color: #111827;
  margin-bottom: 12px;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}


.services {
  background: #eef2ff;
  padding: 120px 20px;
  color: 000;
}

.container {
  max-width: 1250px;
  margin: auto;
}

.header {
  text-align: center;
  margin-bottom: 70px;
}

.header h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 12px;
}

.header p {
  max-width: 750px;
  margin: auto;
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.6;
}

/* 6 Column Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.card {
  /* background: rgb(255,255,255); */
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 26px;
  transition: 0.3s ease;
  box-shadow: 6px 3px 14px cadetblue;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.18);
}

/* ICON (UPDATED - NO ORANGE BACKGROUND) */
.icon {
  font-size: 38px;
  text-align: center;
  margin-bottom: 18px;

  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Title */
.card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  text-align: center;
  color: #000;
  font-weight: 600;
}

/* BULLETS LEFT ALIGNED */
.card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  text-align: left;
  font-size: 13px;
  color: #000;
  line-height: 1.6;
}

/* Modern glowing bullet */
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;

  width: 10px;
  height: 10px;
  border-radius: 50%;

  background: linear-gradient(135deg, #4f46e5, #0ea5e9);

  box-shadow:
    0 0 8px rgba(79, 70, 229, 0.6),
    0 0 14px rgba(14, 165, 233, 0.4);

  transition: all 0.3s ease;
}

/* Hover effect */
.card ul li:hover::before {
  transform: scale(1.3);
  box-shadow:
    0 0 12px rgba(79, 70, 229, 0.8),
    0 0 20px rgba(14, 165, 233, 0.6);
}

.card ul li:hover {
  color: #000;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1100px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .header h2 {
    font-size: 32px;
  }
}



.how-we-work {
    background: #0f172a;
    padding: 120px 20px;
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 1300px;
    margin: auto;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fbbf24;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.how-we-work h2 {
    text-align: center;
    color: #fff;
    font-size: 48px;
    margin-bottom: 80px;
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.step-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #f59e0b,
        #fbbf24
    );
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111827;
}

.step-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Connecting Line */
.steps::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 12%;
    width: 76%;
    height: 3px;
    background: linear-gradient(
        to right,
        #f59e0b,
        #fbbf24
    );
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .how-we-work h2 {
        font-size: 36px;
    }
}