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

    :root {
      --green: #0b7a3e;
      --green-light: #12a355;
      --green-pale: #e8f7ee;
      --orange: #f26522;
      --orange-light: #ff8c42;
      --cream: #fdf8f0;
      --dark: #111a13;
      --dark2: #1c2b1f;
      --text: #1a2e1d;
      --muted: #5a7060;
      --border: #d4e8d8;
      --white: #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: 'Inter', sans-serif; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 16px 5%;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(253,248,240,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Inter', sans-serif;
      font-weight: 800; font-size: 22px;
      color: var(--green);
      display: flex; align-items: center; gap: 8px;
      text-decoration: none;
    }

    .nav-logo span {
      background: var(--orange); color: white;
      padding: 2px 8px; border-radius: 6px; font-size: 20px;
    }

    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      text-decoration: none; color: var(--muted);
      font-size: 14px; font-weight: 500; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--green); }

    .nav-cta {
      background: var(--green); color: white !important;
      padding: 10px 22px; border-radius: 99px;
      font-weight: 600 !important; font-size: 14px !important;
      transition: background 0.2s, transform 0.2s !important;
    }
    .nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none; flex-direction: column;
      justify-content: center; gap: 5px;
      width: 36px; height: 36px;
      background: none; border: none; cursor: pointer;
      padding: 4px; border-radius: 8px; transition: background 0.2s;
    }
    .nav-hamburger:hover { background: var(--green-pale); }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--dark); border-radius: 2px;
      transition: all 0.3s ease; transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE DRAWER ── */
    .mobile-menu {
      position: fixed; top: 62px; left: 0; right: 0;
      background: rgba(253,248,240,0.98);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      z-index: 99; padding: 0;
      transform: translateY(-10px); opacity: 0;
      pointer-events: none; transition: all 0.3s ease;
    }
    .mobile-menu.open {
      transform: translateY(0); opacity: 1; pointer-events: all;
    }
    .mobile-menu-inner {
      padding: 14px 5% 18px;
      display: flex; flex-direction: column; gap: 2px;
    }
    .mobile-menu a {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 14px; border-radius: 12px;
      font-size: 15px; font-weight: 500;
      color: var(--text); text-decoration: none; transition: all 0.2s;
    }
    .mobile-menu a:hover { background: var(--green-pale); color: var(--green); }
    .mobile-menu .m-icon {
      width: 30px; height: 30px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; flex-shrink: 0;
    }
    .mobile-menu .m-divider { height: 1px; background: var(--border); margin: 6px 0; }
    .mobile-menu .m-cta {
      background: var(--green) !important; color: white !important;
      margin-top: 4px; justify-content: center;
      font-weight: 700 !important; border-radius: 99px !important;
    }
    .mobile-menu .m-cta:hover { background: var(--green-light) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      padding: 120px 5% 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(11,122,62,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero::after {
      content: '';
      position: absolute; bottom: -80px; left: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(242,101,34,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--green-pale);
      border: 1px solid var(--border);
      padding: 6px 14px; border-radius: 99px;
      font-size: 13px; font-weight: 500; color: var(--green);
      margin-bottom: 24px;
      animation: fadeUp 0.6s ease both;
    }

    .hero-badge::before { content: '🇳🇬'; font-size: 14px; }

    .hero h1 {
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 800;
      line-height: 1.08;
      color: var(--dark);
      margin-bottom: 24px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--orange);
      position: relative;
    }

    .hero h1 em::after {
      content: '';
      position: absolute; bottom: 2px; left: 0; right: 0; height: 4px;
      background: var(--orange);
      border-radius: 2px;
      opacity: 0.3;
    }

    .hero p {
      font-size: 17px; line-height: 1.75;
      color: var(--muted); max-width: 460px;
      margin-bottom: 36px;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-actions {
      display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
      background: var(--green);
      color: white;
      padding: 14px 28px;
      border-radius: 99px;
      font-family: 'Inter', sans-serif;
      font-weight: 700; font-size: 15px;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s;
      box-shadow: 0 4px 20px rgba(11,122,62,0.25);
    }

    .btn-primary:hover {
      background: var(--green-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(11,122,62,0.35);
    }

    .btn-secondary {
      color: var(--text);
      font-size: 14px; font-weight: 500;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 6px;
      transition: color 0.2s;
    }

    .btn-secondary:hover { color: var(--green); }

    .hero-stats {
      display: flex; gap: 32px; margin-top: 48px;
      animation: fadeUp 0.6s 0.4s ease both;
    }

    .stat { }
    .stat-num {
      font-family: 'Inter', sans-serif;
      font-size: 28px; font-weight: 800;
      color: var(--dark);
    }
    .stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }

    /* ── PHONE MOCKUP ── */
    .hero-visual {
      display: flex; justify-content: center; align-items: center;
      position: relative;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .phone-wrap {
      position: relative;
      width: 280px;
    }

    .phone {
      width: 280px;
      background: var(--dark);
      border-radius: 40px;
      padding: 12px;
      box-shadow: 0 40px 80px rgba(11,122,62,0.2), 0 0 0 1px rgba(255,255,255,0.1);
      position: relative;
    }

    .phone-inner {
      background: white;
      border-radius: 30px;
      overflow: hidden;
      min-height: 520px;
    }

    .phone-top {
      background: var(--green);
      padding: 24px 20px 20px;
      text-align: center;
      color: white;
    }

    .phone-restaurant-name {
      font-family: 'Inter', sans-serif;
      font-weight: 800; font-size: 18px;
      margin-bottom: 4px;
    }

    .phone-tagline {
      font-size: 11px; opacity: 0.8;
    }

    .phone-status {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(255,255,255,0.15);
      padding: 4px 10px; border-radius: 99px;
      font-size: 11px; margin-top: 10px;
    }

    .phone-status::before {
      content: ''; width: 6px; height: 6px;
      background: #4ade80; border-radius: 50%;
    }

    .phone-cats {
      display: flex; gap: 8px;
      padding: 14px 16px 10px;
      overflow-x: auto;
    }

    .phone-cat {
      padding: 6px 14px; border-radius: 99px;
      font-size: 11px; font-weight: 600; white-space: nowrap;
      cursor: pointer; flex-shrink: 0;
    }

    .phone-cat.active {
      background: var(--green); color: white;
    }

    .phone-cat:not(.active) {
      background: var(--green-pale); color: var(--green);
    }

    .phone-items { padding: 8px 16px 20px; }

    .phone-item {
      display: flex; justify-content: space-between; align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .phone-item:last-child { border-bottom: none; }

    .phone-item-info { flex: 1; }

    .phone-item-name {
      font-weight: 600; font-size: 13px; color: var(--dark);
      margin-bottom: 3px;
    }

    .phone-item-desc {
      font-size: 11px; color: var(--muted); line-height: 1.4;
    }

    .phone-item-price {
      font-family: 'Inter', sans-serif;
      font-weight: 700; font-size: 13px;
      color: var(--orange);
      margin-left: 12px;
    }

    .phone-item-img {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--green-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; margin-left: 10px; flex-shrink: 0;
    }

    .qr-badge {
      position: absolute;
      bottom: -20px; right: -30px;
      background: white;
      border-radius: 16px;
      padding: 14px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      text-align: center;
      min-width: 110px;
    }

    .qr-grid {
      display: grid; grid-template-columns: repeat(5, 10px);
      gap: 2px; margin-bottom: 8px;
    }

    .qr-cell {
      width: 10px; height: 10px; border-radius: 2px;
    }

    .qr-label {
      font-size: 10px; color: var(--muted);
      font-weight: 500;
    }

    .float-badge {
      position: absolute;
      top: 40px; left: -40px;
      background: white;
      border-radius: 14px;
      padding: 12px 16px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      display: flex; align-items: center; gap: 10px;
      min-width: 160px;
    }

    .float-icon {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--green-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }

    .float-text { font-size: 11px; }
    .float-text strong { display: block; font-size: 13px; color: var(--dark); }
    .float-text span { color: var(--muted); }

    /* ── HOW IT WORKS ── */
    .section { padding: 100px 5%; }

    .section-label {
      font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 14px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800; line-height: 1.15;
      color: var(--dark); max-width: 560px;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 16px; color: var(--muted);
      line-height: 1.7; max-width: 480px;
      margin-bottom: 64px;
    }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .how-card {
      background: white;
      border-radius: 20px;
      padding: 36px 28px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .how-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(11,122,62,0.1);
    }

    .how-number {
      font-family: 'Inter', sans-serif;
      font-size: 72px; font-weight: 800;
      color: var(--green-pale);
      position: absolute; top: -10px; right: 20px;
      line-height: 1;
    }

    .how-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: var(--green-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; margin-bottom: 20px;
    }

    .how-card h3 {
      font-size: 18px; font-weight: 700;
      color: var(--dark); margin-bottom: 10px;
    }

    .how-card p {
      font-size: 14px; color: var(--muted); line-height: 1.7;
    }

    /* ── FEATURES ── */
    .features { background: var(--dark); padding: 100px 5%; }

    .features .section-title { color: white; }
    .features .section-sub { color: rgba(255,255,255,0.5); }
    .features .section-label { color: var(--orange-light); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .feature-item {
      background: rgba(255,255,255,0.03);
      padding: 36px 28px;
      border: 1px solid rgba(255,255,255,0.04);
      transition: background 0.3s;
    }

    .feature-item:hover { background: rgba(255,255,255,0.06); }

    .feature-emoji { font-size: 32px; margin-bottom: 16px; }

    .feature-item h3 {
      font-size: 16px; font-weight: 700; color: white;
      margin-bottom: 8px;
    }

    .feature-item p {
      font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7;
    }

    /* ── PRICING ── */
    .pricing { padding: 100px 5%; background: var(--green-pale); }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 860px;
    }

    .pricing-card {
      background: white;
      border-radius: 20px;
      padding: 36px 28px;
      border: 2px solid var(--border);
      position: relative;
      transition: transform 0.3s;
    }

    .pricing-card:hover { transform: translateY(-4px); }

    .pricing-card.featured {
      border-color: var(--green);
      box-shadow: 0 20px 60px rgba(11,122,62,0.15);
    }

    .pricing-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--orange);
      color: white; font-size: 11px; font-weight: 700;
      padding: 4px 14px; border-radius: 99px;
      letter-spacing: 0.05em; text-transform: uppercase;
      white-space: nowrap;
    }

    .pricing-plan {
      font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 12px;
    }

    .pricing-price {
      font-family: 'Inter', sans-serif;
      font-size: 36px; font-weight: 800;
      color: var(--dark); margin-bottom: 4px;
    }

    .pricing-price sub {
      font-size: 14px; font-weight: 400; color: var(--muted);
    }

    .pricing-period {
      font-size: 13px; color: var(--muted); margin-bottom: 28px;
    }

    .pricing-features { list-style: none; margin-bottom: 28px; }
    .pricing-features li {
      font-size: 14px; color: var(--text);
      padding: 8px 0; border-bottom: 1px solid #f5f5f5;
      display: flex; align-items: center; gap: 8px;
    }

    .pricing-features li::before {
      content: '✓'; color: var(--green);
      font-weight: 700; font-size: 13px;
    }

    .pricing-cta {
      display: block; text-align: center;
      padding: 13px 0; border-radius: 99px;
      font-family: 'Inter', sans-serif;
      font-weight: 700; font-size: 14px;
      text-decoration: none; transition: all 0.2s;
    }

    .pricing-cta.primary {
      background: var(--green); color: white;
    }

    .pricing-cta.primary:hover { background: var(--green-light); }

    .pricing-cta.outline {
      border: 2px solid var(--border); color: var(--text);
    }

    .pricing-cta.outline:hover { border-color: var(--green); color: var(--green); }

    /* ── TESTIMONIALS ── */
    .testimonials { padding: 100px 5%; }

    .testi-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testi-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      transition: transform 0.3s;
    }

    .testi-card:hover { transform: translateY(-4px); }

    .testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; }

    .testi-text {
      font-size: 14px; line-height: 1.75;
      color: var(--text); margin-bottom: 20px;
      font-style: italic;
    }

    .testi-person { display: flex; align-items: center; gap: 12px; }

    .testi-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 700;
      flex-shrink: 0;
    }

    .testi-name { font-weight: 600; font-size: 14px; color: var(--dark); }
    .testi-role { font-size: 12px; color: var(--muted); }

    /* ── CTA SECTION ── */
    .cta-section {
      padding: 80px 5%;
      background: var(--green);
      text-align: center;
      position: relative; overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute; top: -50%; left: -10%;
      width: 120%; height: 200%;
      background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 60%);
    }

    .cta-section h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800; color: white;
      margin-bottom: 16px;
      position: relative;
    }

    .cta-section p {
      font-size: 16px; color: rgba(255,255,255,0.75);
      margin-bottom: 36px; max-width: 500px;
      margin-left: auto; margin-right: auto;
      position: relative;
    }

    .cta-section .btn-white {
      background: white; color: var(--green);
      padding: 16px 36px; border-radius: 99px;
      font-family: 'Inter', sans-serif;
      font-weight: 800; font-size: 15px;
      text-decoration: none; display: inline-block;
      transition: all 0.25s;
      position: relative;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .cta-section .btn-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    }

    .whatsapp-note {
      margin-top: 20px; font-size: 13px;
      color: rgba(255,255,255,0.6);
      position: relative;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark2);
      padding: 48px 5% 32px;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 24px;
    }

    .footer-logo {
      font-family: 'Inter', sans-serif;
      font-weight: 800; font-size: 20px;
      color: white;
      display: flex; align-items: center; gap: 8px;
    }

    .footer-logo span {
      background: var(--orange); color: white;
      padding: 2px 7px; border-radius: 5px;
    }

    .footer-copy {
      font-size: 13px; color: rgba(255,255,255,0.35);
    }

    .footer-links { display: flex; gap: 24px; }
    .footer-links a {
      font-size: 13px; color: rgba(255,255,255,0.45);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: white; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .hero { grid-template-columns: 1fr; padding-top: 100px; gap: 40px; }
      .hero-visual { order: -1; }
      .phone-wrap { width: 240px; }
      .phone { width: 240px; }
      .float-badge { display: none; }
      .how-grid, .features-grid, .pricing-grid, .testi-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      footer { flex-direction: column; text-align: center; }
      .hero-stats { gap: 20px; }
    }