:root {
      --red:    #C8102E;
      --red2:   #a00d24;
      --green:  #006233;
      --green2: #004d27;
      --white:  #F8F5F0;
      --cream:  #fdf9f4;
      --gold:   #c9a84c;
      --dark:   #0d1a0f;
      --text:   #1a2e1d;
      --muted:  #6b7a6d;
    }

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

    html { scroll-behavior: smooth; }

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

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 60px;
      height: 80px;
      background: rgba(13,26,15,0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,98,51,0.3);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 14px;
    }
    .nav-logo img {
      height: 48px; width: 48px;
      border-radius: 12px;
      border: 2px solid var(--green);
      object-fit: cover;
    }
    .nav-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem; font-weight: 900;
      letter-spacing: 1px;
      background: linear-gradient(135deg, var(--white), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }

    .nav-links {
      display: flex; gap: 36px; list-style: none;
    }
    .nav-links a {
      font-size: .9rem; font-weight: 600;
      color: rgba(248,245,240,0.75);
      text-decoration: none; letter-spacing: .5px;
      transition: color .3s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--green);
      transform: scaleX(0); transition: transform .3s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta {
      padding: 10px 28px;
      background: var(--green); color: var(--white);
      border-radius: 50px; font-weight: 700; font-size: .9rem;
      text-decoration: none; letter-spacing: .5px;
      transition: all .3s;
      box-shadow: 0 0 20px rgba(0,98,51,0.4);
    }
    .nav-cta:hover { background: var(--red); box-shadow: 0 0 20px rgba(200,16,46,0.4); transform: translateY(-2px); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 100px 60px 60px;
      position: relative;
      overflow: hidden;
      background: var(--dark);
    }

    /* diagonal split */
    .hero::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 55%; height: 100%;
      background: linear-gradient(160deg, var(--green2) 0%, var(--dark) 70%);
      clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    }

    /* subtle pattern overlay */
    .hero::after {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 20% 80%, rgba(200,16,46,0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(0,98,51,0.12) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-text { position: relative; z-index: 2; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,98,51,0.2); border: 1px solid rgba(0,98,51,0.5);
      padding: 6px 18px; border-radius: 50px; margin-bottom: 28px;
      font-size: .85rem; font-weight: 600; color: #7dcc9a;
      letter-spacing: .5px;
      animation: fadeUp .8s ease both;
    }
    .hero-badge span { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5vw, 5rem);
      font-weight: 900;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 12px;
      animation: fadeUp .9s ease both;
    }
    .hero-title .accent { color: var(--gold); }
    .hero-title .accent-red { color: #ff6b7a; }

    .hero-sub {
      font-size: clamp(1rem, 1.5vw, 1.2rem);
      color: rgba(248,245,240,0.6);
      font-weight: 300;
      line-height: 1.8;
      max-width: 500px;
      margin-bottom: 48px;
      animation: fadeUp 1s ease both;
    }

    .hero-actions {
      display: flex; gap: 16px; flex-wrap: wrap;
      animation: fadeUp 1.1s ease both;
    }

    .btn-primary {
      padding: 16px 40px;
      background: var(--red); color: var(--white);
      border-radius: 50px; font-weight: 700; font-size: 1rem;
      text-decoration: none; letter-spacing: .5px;
      box-shadow: 0 8px 32px rgba(200,16,46,0.4);
      transition: all .3s;
      display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-primary:hover { background: var(--red2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(200,16,46,0.5); }

    .btn-ghost {
      padding: 16px 36px;
      border: 2px solid rgba(248,245,240,0.3); color: var(--white);
      border-radius: 50px; font-weight: 600; font-size: 1rem;
      text-decoration: none; letter-spacing: .5px;
      transition: all .3s;
      display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-ghost:hover { border-color: var(--green); color: #7dcc9a; transform: translateY(-3px); }

    /* Hero visual side */
    .hero-visual {
      position: relative; z-index: 2;
      display: flex; justify-content: center; align-items: center;
      overflow: visible;
    }

    .phone-mockup {
      width: 280px; height: 560px;
      background: linear-gradient(160deg, #1a2e1d, #0d1a0f);
      border-radius: 40px;
      border: 2px solid rgba(0,98,51,0.5);
      box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(0,98,51,0.15);
      position: relative; overflow: hidden;
      animation: float 5s ease-in-out infinite;
    }

    .phone-mockup::before {
      content: '';
      position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
      width: 80px; height: 5px;
      background: rgba(255,255,255,0.15); border-radius: 3px;
    }

    .phone-screen {
      padding: 32px 16px 16px;
      height: 100%;
      display: flex; flex-direction: column; gap: 12px;
    }

    .app-header-mock {
      display: flex; align-items: center; gap: 10px;
      padding: 0 4px;
    }
    .app-logo-mini { width: 32px; height: 32px; border-radius: 8px; overflow: hidden; }
    .app-logo-mini img { width: 100%; height: 100%; object-fit: cover; }
    .app-title-mock {
      font-family: 'Playfair Display', serif;
      font-size: .9rem; font-weight: 900;
      color: var(--white);
    }

    .search-bar-mock {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px; padding: 10px 14px;
      font-size: .75rem; color: rgba(255,255,255,0.4);
      display: flex; align-items: center; gap: 8px;
    }

    .category-row {
      display: flex; gap: 8px; overflow: hidden;
    }
    .cat-chip {
      padding: 6px 14px; border-radius: 20px;
      font-size: .7rem; font-weight: 600; white-space: nowrap;
      flex-shrink: 0;
    }
    .cat-chip.active { background: var(--green); color: var(--white); }
    .cat-chip:not(.active) { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); }

    .food-card-mock {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px; overflow: hidden;
      flex-shrink: 0;
    }
    .food-img-mock {
      width: 100%; height: 100px;
      object-fit: cover;
    }
    .food-info-mock { padding: 10px 12px; }
    .food-name-mock { font-size: .8rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .food-meta-mock {
      display: flex; justify-content: space-between; align-items: center;
    }
    .food-price-mock { font-size: .75rem; font-weight: 700; color: #4ade80; }
    .food-rating-mock { font-size: .7rem; color: var(--gold); }

    .order-btn-mock {
      margin-top: auto;
      background: var(--red);
      border-radius: 14px; padding: 14px;
      text-align: center; color: var(--white);
      font-size: .85rem; font-weight: 700;
    }

    /* floating badges */
    .float-badge {
      position: absolute;
      background: rgba(13,26,15,0.9);
      border: 1px solid rgba(0,98,51,0.4);
      backdrop-filter: blur(10px);
      border-radius: 14px;
      padding: 12px 18px;
      color: var(--white);
      font-size: .8rem; font-weight: 600;
      animation: float 4s ease-in-out infinite;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .float-badge:nth-child(1) { left: -20px; top: 80px; animation-delay: .5s; }
    .float-badge:nth-child(2) { right: -20px; top: 180px; animation-delay: 1s; }
    .float-badge:nth-child(3) { left: -15px; bottom: 80px; animation-delay: 1.5s; }
    .float-badge .b-icon { font-size: 1.2rem; }
    .float-badge .b-label { color: rgba(255,255,255,0.6); font-size: .7rem; }

    /* ─── STATS BAR ─── */
    .stats-bar {
      background: var(--green);
      padding: 28px 60px;
      display: flex; justify-content: space-around; align-items: center;
      flex-wrap: wrap; gap: 20px;
    }
    .stat-item { text-align: center; }
    .stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }
    .stat-label { font-size: .85rem; color: rgba(255,255,255,0.75); font-weight: 600; margin-top: 4px; letter-spacing: .5px; }
    .stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.25); }

    /* ─── FEATURES ─── */
    .section {
      padding: 100px 60px;
    }

    .section-label {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .85rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--green);
      margin-bottom: 16px;
    }
    .section-label::before {
      content: ''; display: block;
      width: 30px; height: 2px; background: var(--red);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 900; line-height: 1.2;
      color: var(--text); margin-bottom: 16px;
    }
    .section-title .hl { color: var(--green); }

    .section-desc {
      font-size: 1.05rem; color: var(--muted);
      line-height: 1.8; max-width: 500px;
    }

    .features-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 28px; margin-top: 60px;
    }

    .feature-card {
      background: var(--white);
      border-radius: 24px;
      padding: 40px 32px;
      position: relative; overflow: hidden;
      border: 1px solid rgba(0,98,51,0.1);
      transition: all .4s;
      cursor: default;
    }
    .feature-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--red));
      transform: scaleX(0); transition: transform .4s;
    }
    .feature-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,98,51,0.12); }
    .feature-card:hover::before { transform: scaleX(1); }

    .feature-icon {
      width: 64px; height: 64px;
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; margin-bottom: 24px;
    }
    .icon-green { background: rgba(0,98,51,0.1); }
    .icon-red   { background: rgba(200,16,46,0.1); }
    .icon-gold  { background: rgba(201,168,76,0.1); }

    .feature-title {
      font-size: 1.15rem; font-weight: 700;
      color: var(--text); margin-bottom: 10px;
    }
    .feature-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }

    /* ─── HOW IT WORKS ─── */
    .how-section {
      background: var(--dark);
      padding: 100px 60px;
      position: relative; overflow: hidden;
    }
    .how-section .section-title { color: var(--white); }
    .how-section .section-desc { color: rgba(255,255,255,0.5); }

    .steps-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; margin-top: 70px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute; top: 50px; left: 12%; right: 12%;
      height: 2px;
      background: linear-gradient(90deg, var(--green), var(--red));
    }

    .step-item { text-align: center; padding: 0 20px; position: relative; }

    .step-num {
      width: 100px; height: 100px;
      margin: 0 auto 28px;
      border-radius: 50%;
      background: var(--dark);
      border: 3px solid var(--green);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 900; color: var(--white);
      position: relative; z-index: 1;
      transition: all .4s;
    }
    .step-item:hover .step-num { background: var(--green); transform: scale(1.1); }
    .step-item:nth-child(2) .step-num { border-color: var(--red); }
    .step-item:nth-child(2):hover .step-num { background: var(--red); }
    .step-item:nth-child(4) .step-num { border-color: var(--gold); }
    .step-item:nth-child(4):hover .step-num { background: var(--gold); }

    .step-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .step-desc { font-size: .85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

    /* ─── FOOD GALLERY ─── */
    .gallery-section { padding: 100px 60px; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 220px);
      gap: 16px; margin-top: 60px;
    }
    .gallery-item {
      border-radius: 20px; overflow: hidden;
      position: relative; cursor: pointer;
    }
    .gallery-item:first-child {
      grid-column: 1; grid-row: 1 / 3;
    }
    .gallery-item:last-child {
      grid-column: 3; grid-row: 1 / 3;
    }

    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover; transition: transform .6s;
    }
    .gallery-item:hover img { transform: scale(1.08); }

    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      display: flex; align-items: flex-end;
      padding: 20px;
      opacity: 0; transition: opacity .4s;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-tag {
      background: var(--green); color: var(--white);
      padding: 6px 16px; border-radius: 20px;
      font-size: .8rem; font-weight: 700;
    }

    /* ─── SPECIAL DIET ─── */
    .diet-section {
      padding: 100px 60px;
      background: linear-gradient(135deg, var(--green2), #003d1a);
      position: relative; overflow: hidden;
    }
    .diet-section::after {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(200,16,46,0.08);
    }

    .diet-section .section-label { color: #7dcc9a; }
    .diet-section .section-title { color: var(--white); }
    .diet-section .section-desc { color: rgba(255,255,255,0.6); }

    .diet-cards {
      display: flex; gap: 20px; margin-top: 60px; flex-wrap: wrap;
    }
    .diet-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 30px 28px;
      flex: 1; min-width: 200px;
      transition: all .4s;
    }
    .diet-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); }
    .diet-card .dc-icon { font-size: 2.5rem; margin-bottom: 16px; }
    .diet-card .dc-name { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
    .diet-card .dc-desc { font-size: .85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

    /* ─── TRACKING ─── */
    .tracking-section {
      padding: 100px 60px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }

    .track-visual {
      background: var(--dark);
      border-radius: 28px;
      padding: 40px;
      border: 1px solid rgba(0,98,51,0.3);
      box-shadow: 0 24px 80px rgba(0,0,0,0.15);
    }

    .track-title-v { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 28px; letter-spacing: .5px; }

    .track-steps {
      display: flex; flex-direction: column; gap: 0;
    }
    .track-step {
      display: flex; align-items: flex-start; gap: 20px;
      padding: 16px 0;
      position: relative;
    }
    .track-step:not(:last-child)::after {
      content: '';
      position: absolute; right: 19px; top: 52px;
      width: 2px; bottom: 0;
      background: rgba(255,255,255,0.1);
    }
    .track-dot {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0;
    }
    .td-done   { background: var(--green); }
    .td-active { background: var(--red); animation: pulse 2s infinite; }
    .td-pending { background: rgba(255,255,255,0.1); }

    .track-info .ti-label { font-size: .9rem; font-weight: 700; color: var(--white); }
    .track-info .ti-time  { font-size: .8rem; color: rgba(255,255,255,0.4); margin-top: 3px; }

    /* ─── CTA ─── */
    .cta-section {
      padding: 100px 60px;
      background: var(--red);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 60px);
    }
    .cta-section .section-label { color: rgba(255,255,255,0.7); justify-content: center; }
    .cta-section .section-label::before { background: rgba(255,255,255,0.5); }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 900; color: var(--white);
      line-height: 1.2; margin-bottom: 20px;
    }
    .cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 48px; }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-white {
      padding: 16px 44px;
      background: var(--white); color: var(--red);
      border-radius: 50px; font-weight: 800; font-size: 1rem;
      text-decoration: none; letter-spacing: .5px;
      transition: all .3s;
      box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    }
    .btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
    .btn-outline-w {
      padding: 16px 40px;
      border: 2px solid rgba(255,255,255,0.6); color: var(--white);
      border-radius: 50px; font-weight: 700; font-size: 1rem;
      text-decoration: none; transition: all .3s;
    }
    .btn-outline-w:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      padding: 60px 60px 30px;
      border-top: 1px solid rgba(0,98,51,0.3);
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-brand img {
      height: 50px; border-radius: 12px; border: 2px solid var(--green);
      margin-bottom: 16px;
    }
    .footer-brand p {
      font-size: .9rem; color: rgba(255,255,255,0.45);
      line-height: 1.7; max-width: 260px;
    }
    .footer-col h4 {
      font-size: .95rem; font-weight: 700; color: var(--white);
      margin-bottom: 20px; letter-spacing: .5px;
    }
    .footer-col a {
      display: block; font-size: .85rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none; margin-bottom: 10px;
      transition: color .3s;
    }
    .footer-col a:hover { color: var(--green); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-bottom p { font-size: .82rem; color: rgba(255,255,255,0.3); }
    .footer-flag {
      display: flex; gap: 0; height: 20px; border-radius: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,0.2);
    }
    .flag-green { width: 30px; background: var(--green); }
    .flag-white { width: 30px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: .75rem; }
    .flag-red   { width: 8px; background: var(--red); border-radius: 50%; align-self: center; height: 8px; margin: 0 2px; }

    /* ─── HERO LOGO DISPLAY ─── */
    .hero-logo-display {
      position: relative;
      width: 360px; height: 360px;
      display: flex; align-items: center; justify-content: center;
      animation: float 5s ease-in-out infinite;
    }

    .hero-logo-glow {
      position: absolute; inset: 0;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,98,51,0.35) 0%, rgba(0,98,51,0.1) 50%, transparent 70%);
      filter: blur(20px);
    }

    .hero-logo-ring {
      position: absolute; border-radius: 50%;
      border: 1px solid rgba(0,98,51,0.25);
      animation: spin-slow linear infinite;
    }
    .hero-logo-ring-1 {
      width: 300px; height: 300px;
      border-style: dashed;
      border-color: rgba(0,98,51,0.2);
      animation-duration: 20s;
    }
    .hero-logo-ring-2 {
      width: 340px; height: 340px;
      border-color: rgba(201,168,76,0.12);
      border-style: dashed;
      border-width: 1px;
      animation-duration: 30s;
      animation-direction: reverse;
    }

    .hero-logo-img {
      width: 240px; height: 240px;
      border-radius: 40px;
      object-fit: cover;
      border: 3px solid rgba(0,98,51,0.6);
      box-shadow: 0 0 60px rgba(0,98,51,0.4), 0 20px 80px rgba(0,0,0,0.5);
      position: relative; z-index: 2;
    }

    .hero-logo-fallback {
      display: none;
      width: 240px; height: 240px;
      border-radius: 40px;
      background: linear-gradient(135deg, var(--green2), var(--dark));
      border: 3px solid rgba(0,98,51,0.6);
      box-shadow: 0 0 60px rgba(0,98,51,0.4), 0 20px 80px rgba(0,0,0,0.5);
      align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 6rem; font-weight: 900;
      color: var(--white);
      position: relative; z-index: 2;
    }

    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* ─── KEYFRAMES ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: .5; }
    }

    /* Scroll animations */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
/* ─── HAMBURGER MENU ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0,98,51,0.4);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: background .3s;
  flex-shrink: 0;
}
.hamburger:hover { background: rgba(0,98,51,0.25); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(13,26,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,98,51,0.3);
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  z-index: 99;
  animation: slideDown .25s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 16px;
  color: rgba(248,245,240,0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all .2s;
  font-family: 'Cairo', sans-serif;
}
.mobile-menu a:hover { background: rgba(0,98,51,0.2); color: #fff; }
.mobile-menu a.active { color: var(--gold); }
.nav-cta-mobile {
  margin-top: 8px;
  background: var(--green) !important;
  color: #fff !important;
  text-align: center;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — index.css
   ══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  nav {
    padding: 0 16px !important;
    height: 60px !important;
  }
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-cta { display: none !important; }
  .nav-logo-text { font-size: 1.3rem !important; }
  .nav-logo img { height: 36px !important; width: 36px !important; }

  /* ── HERO ── */
  .hero {
    grid-template-columns: 1fr !important;
    padding: 90px 20px 50px !important;
    min-height: auto !important;
    gap: 40px;
  }
  .hero::before { width: 100% !important; clip-path: none !important; top: 50% !important; height: 50% !important; }
  .hero-title { font-size: 2.2rem !important; }
  .hero-sub { font-size: .9rem !important; margin-bottom: 28px !important; }
  .hero-badge { font-size: .76rem !important; }
  .hero-actions { flex-direction: column !important; gap: 12px !important; }
  .btn-primary, .btn-ghost { width: 100% !important; justify-content: center !important; padding: 14px 20px !important; }

  /* ── HERO VISUAL ── */
  .hero-visual { justify-content: center; }
  .float-badge { display: none !important; }
  .hero-logo-display { width: 220px !important; height: 220px !important; }
  .hero-logo-img { width: 160px !important; height: 160px !important; }
  .hero-logo-ring-1 { width: 185px !important; height: 185px !important; }
  .hero-logo-ring-2 { width: 210px !important; height: 210px !important; }

  /* ── STATS BAR ── */
  .stats-bar {
    flex-wrap: wrap !important;
    gap: 0 !important;
    padding: 16px 20px !important;
  }
  .stat-item {
    flex: 1 1 50% !important;
    border: none !important;
    padding: 12px 10px !important;
    text-align: center !important;
  }
  .stat-item:nth-child(1), .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(0,98,51,0.15) !important;
  }

  /* ── SECTIONS ── */
  .features-section, .how-section, .gallery-section,
  .diet-section, .tracking-section, .cta-section {
    padding: 60px 20px !important;
  }
  .section-label { font-size: .72rem !important; }
  .section-title { font-size: 1.8rem !important; }

  /* ── FEATURES ── */
  .features-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .feature-card { padding: 24px 20px !important; }

  /* ── HOW IT WORKS ── */
  .steps-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px 16px !important;
  }
  .steps-grid::before { display: none !important; }
  .step-num { width: 70px !important; height: 70px !important; font-size: 1.4rem !important; margin-bottom: 14px !important; }

  /* ── GALLERY ── */
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: repeat(3, 160px) !important;
  }
  .gallery-item:first-child { grid-column: 1 !important; grid-row: 1 !important; }
  .gallery-item:last-child { grid-column: 2 !important; grid-row: 3 !important; }

  /* ── DIET CARDS ── */
  .diet-cards { flex-direction: column !important; gap: 12px !important; }
  .diet-card { padding: 20px !important; }

  /* ── TRACKING ── */
  .tracking-section { grid-template-columns: 1fr !important; gap: 30px !important; }

  /* ── CTA ── */
  .cta-title { font-size: 2rem !important; }
  .cta-btns { flex-direction: column !important; align-items: center !important; }
  .btn-white, .btn-outline-w { width: 100% !important; max-width: 280px !important; justify-content: center !important; }

  /* ── FOOTER ── */
  footer { padding: 40px 20px 24px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-bottom { flex-direction: column !important; gap: 12px !important; text-align: center !important; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 1.8rem !important; }
  .steps-grid { grid-template-columns: 1fr !important; }
}
