  :root {
    --cream: #F7F3ED;
    --green: #2D5016;
    --green-mid: #4A7C2F;
    --green-light: #8BB870;
    --orange: #E8773A;
    --orange-light: #F5A570;
    --text: #1C1C1C;
    --text-muted: #606056;
    --white: #FFFFFF;
    --card-bg: #FEFCF9;
    --border: #E2DDD5;
    --urgent: #C0392B;
    --urgent-bg: #FDF0EE;
    --soon: #D97706;
    --soon-bg: #FEF9EE;
    --fresh: #2D5016;
    --fresh-bg: #EFF6EA;
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  body { font-family:'DM Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif; background:var(--cream); color:var(--text); min-height:100vh; overflow-x:hidden; }

  /* SVG icon helper */
  .icon { display:inline-flex; align-items:center; justify-content:center; }
  .icon svg { display:block; }

  /* ── NAV ── */
  nav {
    position:fixed; top:0; left:0; right:0; z-index:100;
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 56px;
    background:rgba(247,243,237,0.93);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--border);
  }
  .logo { font-family:'Playfair Display',serif; font-size:26px; font-weight:700; color:var(--green); letter-spacing:-0.5px; text-decoration:none; display:flex; align-items:center; }
  .logo-dot { color:var(--orange); }
  nav ul { display:flex; gap:36px; list-style:none; }
  nav ul a { text-decoration:none; font-size:14px; font-weight:400; color:var(--text-muted); transition:color .2s; }
  nav ul a:hover { color:var(--green); }
  .nav-cta { background:var(--green); color:var(--white)!important; padding:10px 22px; border-radius:100px; font-weight:500!important; transition:background .2s!important; }
  .nav-cta:hover { background:var(--green-mid)!important; }
  .nav-burger { display:none; background:none; border:none; cursor:pointer; padding:6px; color:var(--green); border-radius:8px; transition:background .2s; }
  .nav-burger:hover { background:var(--fresh-bg); }
  .nav-burger .icon-close { display:none; }
  nav.open .nav-burger .icon-open { display:none; }
  nav.open .nav-burger .icon-close { display:block; }

  /* ── HERO ── */
  .hero { min-height:100vh; display:grid; grid-template-columns:1fr 1fr; padding-top:72px; }
  .hero-left { display:flex; flex-direction:column; justify-content:center; padding:80px 64px; }
  .eyebrow { display:inline-flex; align-items:center; gap:10px; font-size:12px; font-weight:500; letter-spacing:1.8px; text-transform:uppercase; color:var(--green); margin-bottom:24px; opacity:0; animation:fadeUp .6s .1s forwards; }
  .eyebrow-line { width:28px; height:2px; background:var(--orange); border-radius:2px; }
  h1 { font-family:'Playfair Display',serif; font-size:clamp(40px,4.8vw,66px); line-height:1.08; letter-spacing:-1px; color:var(--green); margin-bottom:28px; opacity:0; animation:fadeUp .6s .2s forwards; }
  h1 em { font-style:italic; color:#C06020; }
  .hero-sub { font-size:18px; font-weight:300; line-height:1.75; color:var(--text-muted); max-width:420px; margin-bottom:44px; opacity:0; animation:fadeUp .6s .3s forwards; }
  .hero-sub strong { color:var(--text); font-weight:500; }
  .hero-actions { display:flex; align-items:center; gap:20px; flex-wrap:wrap; opacity:0; animation:fadeUp .6s .4s forwards; }

  .btn-primary { background:var(--green); color:var(--white); border:none; padding:15px 30px; border-radius:100px; font-family:'DM Sans',sans-serif; font-size:15px; font-weight:500; cursor:pointer; transition:all .2s; display:flex; align-items:center; gap:10px; text-decoration:none; }
  .btn-primary:hover { background:var(--green-mid); transform:translateY(-1px); box-shadow:0 8px 24px rgba(45,80,22,.22); }
  .btn-secondary { background:transparent; color:var(--text); border:1.5px solid var(--border); padding:14px 26px; border-radius:100px; font-family:'DM Sans',sans-serif; font-size:15px; font-weight:400; cursor:pointer; transition:all .2s; display:flex; align-items:center; gap:8px; }
  .btn-secondary:hover { border-color:var(--green); color:var(--green); }

  .hero-stats { display:flex; gap:44px; margin-top:60px; padding-top:44px; border-top:1px solid var(--border); opacity:0; animation:fadeUp .6s .5s forwards; }
  .stat-item { display:flex; flex-direction:column; gap:4px; }
  .stat-num { font-family:'Playfair Display',serif; font-size:34px; font-weight:700; color:var(--green); line-height:1; }
  .stat-label { font-size:13px; color:var(--text-muted); font-weight:300; }

  /* ── HERO RIGHT ── */
  .hero-right { background:var(--green); display:flex; flex-direction:column; justify-content:center; align-items:center; padding:80px 48px; position:relative; overflow:hidden; }
  .hero-right::before { content:''; position:absolute; width:500px; height:500px; background:radial-gradient(circle, rgba(139,184,112,0.25) 0%, transparent 70%); top:-150px; right:-150px; border-radius:50%; pointer-events:none; }
  .hero-right::after { content:''; position:absolute; width:350px; height:350px; background:radial-gradient(circle, rgba(232,119,58,0.18) 0%, transparent 70%); bottom:-80px; left:-80px; border-radius:50%; pointer-events:none; }

  .upload-card { background:var(--card-bg); border-radius:24px; padding:40px; width:100%; max-width:420px; position:relative; z-index:2; box-shadow:0 32px 80px rgba(0,0,0,0.28); opacity:0; animation:fadeUp .7s .45s forwards; }
  .card-title { font-family:'Playfair Display',serif; font-size:22px; color:var(--green); margin-bottom:6px; }
  .card-sub { font-size:14px; color:var(--text-muted); margin-bottom:28px; font-weight:300; }

  .drop-zone { border:2px dashed var(--border); border-radius:16px; padding:36px 20px; text-align:center; cursor:pointer; transition:all .25s; background:var(--cream); position:relative; }
  .drop-zone:hover, .drop-zone.drag-over { border-color:var(--green-light); background:var(--fresh-bg); }
  .drop-zone input[type="file"] { position:absolute; inset:0; opacity:0; cursor:pointer; width:100%; height:100%; }
  .drop-icon-wrap { width:52px; height:52px; background:var(--green); border-radius:14px; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
  .drop-label { font-size:15px; font-weight:500; color:var(--text); margin-bottom:5px; }
  .drop-hint { font-size:13px; color:var(--text-muted); font-weight:300; }
  .drop-hint strong { color:var(--orange); font-weight:500; cursor:pointer; }

  .receipt-preview { display:none; margin-top:14px; background:var(--fresh-bg); border:1px solid rgba(45,80,22,0.2); border-radius:12px; padding:14px 16px; position:relative; }
  .receipt-preview.show { display:block; }
  .rp-top { display:flex; align-items:center; gap:10px; }
  .rp-icon { color:var(--green); }
  .rp-name { font-size:14px; font-weight:500; color:var(--green); flex:1; }
  .rp-remove { background:none; border:none; cursor:pointer; color:var(--text-muted); display:flex; align-items:center; padding:2px; }
  .rp-remove:hover { color:var(--urgent); }

  .diet-section { margin-top:22px; }
  .diet-label { font-size:12px; font-weight:500; color:var(--text-muted); margin-bottom:10px; letter-spacing:.8px; text-transform:uppercase; }
  .diet-chips { display:flex; flex-wrap:wrap; gap:8px; }
  .chip { padding:7px 14px; border-radius:100px; border:1.5px solid var(--border); font-size:13px; color:var(--text-muted); cursor:pointer; transition:all .18s; background:transparent; font-family:'DM Sans',sans-serif; }
  .chip:hover { border-color:var(--green-light); color:var(--green); }
  .chip.active { background:var(--green); border-color:var(--green); color:var(--white); }

  .generate-btn { width:100%; background:var(--orange); color:var(--white); border:none; padding:15px; border-radius:12px; font-family:'DM Sans',sans-serif; font-size:16px; font-weight:500; cursor:pointer; margin-top:22px; transition:all .2s; display:flex; align-items:center; justify-content:center; gap:10px; }
  .generate-btn:hover { background:#d4672b; transform:translateY(-1px); box-shadow:0 8px 24px rgba(232,119,58,.28); }

  /* ── HOW IT WORKS ── */
  .section { padding:110px 64px; max-width:1200px; margin:0 auto; }
  .section-label { font-size:12px; font-weight:500; letter-spacing:2px; text-transform:uppercase; color:var(--green); margin-bottom:14px; }
  .section-title { font-family:'Playfair Display',serif; font-size:clamp(30px,3.8vw,50px); color:var(--green); line-height:1.15; margin-bottom:14px; letter-spacing:-0.5px; }
  .section-sub { font-size:17px; color:var(--text-muted); font-weight:300; max-width:480px; line-height:1.75; margin-bottom:64px; }

  .steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
  .step-card { background:var(--card-bg); border:1px solid var(--border); border-radius:20px; padding:36px; transition:transform .25s, box-shadow .25s; }
  .step-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(45,80,22,.09); }
  .step-num { font-family:'Playfair Display',serif; font-size:60px; font-weight:700; color:#8A857E; line-height:1; margin-bottom:20px; letter-spacing:-2px; }
  .step-icon { width:48px; height:48px; border-radius:14px; background:var(--fresh-bg); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
  .step-title { font-size:18px; font-weight:500; color:var(--green); margin-bottom:10px; }
  .step-desc { font-size:15px; color:var(--text-muted); line-height:1.7; font-weight:300; }
  .step-card.featured { background:var(--green); border-color:var(--green); }
  .step-card.featured .step-num { color:rgba(255,255,255,0.5); }
  .step-card.featured .step-title { color:var(--white); }
  .step-card.featured .step-desc { color:rgba(255,255,255,0.65); }
  .step-card.featured .step-icon { background:rgba(255,255,255,0.12); }

  /* ── AUDIENCE ── */
  .audience-wrap { background:var(--green); padding:100px 64px; position:relative; overflow:hidden; }
  .audience-wrap::after { content:''; position:absolute; width:700px; height:700px; background:radial-gradient(circle, rgba(139,184,112,0.12) 0%, transparent 70%); right:-200px; top:-150px; border-radius:50%; pointer-events:none; }
  .audience-inner { max-width:1200px; margin:0 auto; }
  .audience-inner .section-label { color:var(--orange-light); }
  .audience-inner .section-title { color:var(--white); }
  .audience-inner .section-sub { color:rgba(255,255,255,0.55); }
  .audience-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; position:relative; z-index:1; }
  .aud-card { background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.1); border-radius:20px; padding:36px; transition:background .25s; }
  .aud-card:hover { background:rgba(255,255,255,0.12); }
  .aud-icon { width:52px; height:52px; border-radius:14px; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
  .aud-who { font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--orange-light); font-weight:500; margin-bottom:8px; }
  .aud-name { font-family:'Playfair Display',serif; font-size:21px; color:var(--white); margin-bottom:12px; }
  .aud-quote { font-size:14px; color:rgba(255,255,255,0.55); line-height:1.75; font-weight:300; font-style:italic; margin-bottom:20px; }
  .aud-tags { display:flex; flex-wrap:wrap; gap:8px; }
  .aud-tag { font-size:12px; padding:5px 12px; border-radius:100px; background:rgba(255,255,255,0.1); color:rgba(255,255,255,0.65); }

  /* ── FEATURES ── */
  .features-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
  .features-list { display:flex; flex-direction:column; gap:8px; }
  .feature-item { display:flex; gap:18px; align-items:flex-start; padding:22px; border-radius:16px; transition:background .2s; cursor:default; }
  .feature-item:hover { background:var(--card-bg); }
  .fi-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .fi-icon.green { background:var(--fresh-bg); }
  .fi-icon.orange { background:var(--soon-bg); }
  .fi-icon.red { background:var(--urgent-bg); }
  .feature-item h3 { font-size:16px; font-weight:500; color:var(--green); margin-bottom:5px; }
  .feature-item p { font-size:14px; color:var(--text-muted); line-height:1.7; font-weight:300; }

  .features-visual { background:var(--card-bg); border:1px solid var(--border); border-radius:24px; padding:32px; box-shadow:0 20px 60px rgba(0,0,0,0.07); }
  .fv-head { font-family:'Playfair Display',serif; font-size:18px; color:var(--green); margin-bottom:4px; }
  .fv-sub { font-size:13px; color:var(--text-muted); margin-bottom:22px; }

  .expiry-row { display:flex; align-items:center; justify-content:space-between; padding:12px 16px; border-radius:10px; margin-bottom:8px; }
  .er-left { display:flex; align-items:center; gap:12px; }
  .er-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
  .er-dot.red { background:var(--urgent); }
  .er-dot.yellow { background:var(--soon); }
  .er-dot.green { background:var(--fresh); }
  .er-food { font-size:14px; font-weight:500; color:var(--text); }
  .er-date { font-size:12px; color:var(--text-muted); }
  .er-badge { font-size:11px; font-weight:500; padding:4px 10px; border-radius:100px; }
  .er-urgent { background:var(--urgent-bg); } .er-urgent .er-badge { background:var(--urgent-bg); color:var(--urgent); } .er-urgent { background:var(--urgent-bg); }
  .er-soon { background:var(--soon-bg); } .er-soon .er-badge { background:var(--soon-bg); color:#92400E; }
  .er-fresh { background:var(--fresh-bg); } .er-fresh .er-badge { background:var(--fresh-bg); color:var(--fresh); }

  .meal-preview { margin-top:22px; padding-top:22px; border-top:1px solid var(--border); }
  .mp-label { font-size:11px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-bottom:12px; }
  .meal-row { display:flex; align-items:center; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--border); font-size:14px; }
  .meal-row:last-child { border-bottom:none; }
  .mr-day { font-weight:500; color:var(--text); min-width:56px; }
  .mr-recipe { color:var(--text-muted); font-weight:300; }
  .mr-tag { font-size:11px; padding:3px 9px; border-radius:100px; background:var(--fresh-bg); color:var(--fresh); }

  /* ── CTA ── */
  .cta-wrap { padding:100px 64px; text-align:center; background:var(--card-bg); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
  .cta-wrap .section-label, .cta-wrap .section-title, .cta-wrap .section-sub { text-align:center; }
  .cta-wrap .section-title { margin:0 auto 14px; }
  .cta-wrap .section-sub { margin:0 auto 44px; }
  .email-row { display:flex; gap:12px; max-width:440px; margin:0 auto; }
  .email-row input { flex:1; padding:14px 20px; border:1.5px solid var(--border); border-radius:100px; font-family:'DM Sans',sans-serif; font-size:15px; outline:none; background:var(--white); transition:border-color .2s; }
  .email-row input:focus { border-color:var(--green); }
  .email-row button { background:#B85319; color:var(--white); border:none; padding:14px 24px; border-radius:100px; font-family:'DM Sans',sans-serif; font-size:15px; font-weight:500; cursor:pointer; white-space:nowrap; transition:background .2s; display:flex; align-items:center; gap:8px; }
  .email-row button:hover { background:#92400E; }
  .cta-note { font-size:13px; color:var(--text-muted); margin-top:16px; display:flex; align-items:center; justify-content:center; gap:6px; }

  /* ── QUICK MEALS ── */
  .meals-section { padding:110px 64px; background:var(--card-bg); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
  .meals-inner { max-width:1200px; margin:0 auto; }
  .meals-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
  .meal-card { background:var(--cream); border:1px solid var(--border); border-radius:20px; padding:28px; display:flex; flex-direction:column; gap:16px; transition:transform .25s, box-shadow .25s; }
  .meal-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(45,80,22,.09); }
  .mc-top { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
  .mc-icon { width:44px; height:44px; border-radius:12px; background:var(--fresh-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .mc-time { font-size:11px; font-weight:500; padding:4px 10px; border-radius:100px; background:var(--soon-bg); color:#92400E; white-space:nowrap; align-self:flex-start; }
  .mc-name { font-size:17px; font-weight:500; color:var(--green); line-height:1.3; }
  .mc-ingredients { display:flex; flex-wrap:wrap; gap:6px; }
  .mc-ingredient { font-size:12px; padding:4px 10px; border-radius:100px; background:var(--white); border:1px solid var(--border); color:var(--text-muted); }
  .meals-cta { margin-top:48px; text-align:center; }
  .meals-cta p { font-size:17px; color:var(--text-muted); font-weight:300; line-height:1.75; }
  .meals-cta a { color:var(--green); font-weight:500; text-decoration:underline; text-underline-offset:3px; cursor:pointer; }
  .meal-card { cursor:pointer; }

  /* ── RECIPE MODAL ── */
  .recipe-header { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-bottom:24px; }
  .recipe-title { font-family:'Playfair Display',serif; font-size:26px; color:var(--green); line-height:1.2; }
  .recipe-time-badge { font-size:12px; font-weight:500; padding:6px 14px; border-radius:100px; background:var(--soon-bg); color:var(--soon); white-space:nowrap; flex-shrink:0; margin-top:4px; }
  .recipe-section-label { font-size:11px; font-weight:500; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-muted); margin-bottom:12px; }
  .recipe-ingredients { display:flex; flex-direction:column; gap:8px; margin-bottom:28px; }
  .recipe-ingredient { display:flex; align-items:center; gap:12px; }
  .recipe-ingredient input[type="checkbox"] { width:16px; height:16px; accent-color:var(--green); flex-shrink:0; cursor:pointer; }
  .recipe-ingredient label { font-size:15px; color:var(--text); font-weight:300; cursor:pointer; }
  .recipe-ingredient input:checked + label { text-decoration:line-through; color:var(--text-muted); }
  .recipe-steps { display:flex; flex-direction:column; gap:14px; margin-bottom:28px; }
  .recipe-step { display:flex; align-items:flex-start; gap:14px; }
  .rs-num { width:26px; height:26px; border-radius:50%; background:var(--green); color:var(--white); font-size:12px; font-weight:600; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
  .rs-icon { width:32px; height:32px; border-radius:10px; background:var(--fresh-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .rs-text { font-size:15px; color:var(--text); font-weight:300; line-height:1.6; padding-top:4px; }
  .recipe-cta { background:var(--fresh-bg); border:1px solid rgba(45,80,22,0.15); border-radius:14px; padding:18px 20px; display:flex; align-items:center; justify-content:space-between; gap:16px; cursor:pointer; transition:background .2s; }
  .recipe-cta:hover { background:var(--green); }
  .recipe-cta:hover .rcta-text, .recipe-cta:hover .rcta-arrow { color:var(--white); }
  .rcta-text { font-size:14px; font-weight:500; color:var(--green); line-height:1.4; }
  .rcta-arrow { color:var(--green); flex-shrink:0; }
  .recipe-divider { border:none; border-top:1px solid var(--border); margin:24px 0; }

  @media(max-width:900px) {
    .meals-section { padding:68px 20px; }
    .meals-grid { grid-template-columns:repeat(2,1fr); }
  }
  @media(max-width:600px) {
    .meals-grid { grid-template-columns:1fr; }
  }

  /* ── FAQ ── */
  .faq { padding:100px 64px; max-width:1200px; margin:0 auto; }
  .faq h2 { font-family:'Playfair Display',serif; font-size:clamp(30px,3.8vw,50px); color:var(--green); line-height:1.15; margin-bottom:48px; letter-spacing:-0.5px; }
  .faq-item { border-bottom:1px solid var(--border); padding:28px 0; }
  .faq-item:first-of-type { border-top:1px solid var(--border); }
  .faq-item h3 { font-size:18px; font-weight:500; color:var(--green); margin-bottom:10px; }
  .faq-item p { font-size:15px; color:var(--text-muted); line-height:1.75; font-weight:300; max-width:680px; }

  /* ── FOOTER ── */
  footer { padding:44px 56px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; }
  footer .logo { font-size:22px; }
  .footer-links { display:flex; gap:28px; }
  .footer-links a { font-size:14px; color:var(--text-muted); text-decoration:none; }
  .footer-links a:hover { color:var(--green); }
  .footer-copy { font-size:13px; color:var(--text-muted); }

  /* ── MODAL ── */
  .modal-overlay { position:fixed; inset:0; background:rgba(28,28,28,0.6); backdrop-filter:blur(8px); z-index:200; display:flex; align-items:center; justify-content:center; padding:24px; opacity:0; pointer-events:none; transition:opacity .3s; }
  .modal-overlay.open { opacity:1; pointer-events:all; }
  .modal { background:var(--card-bg); border-radius:28px; width:100%; max-width:680px; max-height:88vh; overflow-y:auto; padding:48px; transform:translateY(20px); transition:transform .3s; position:relative; }
  .modal.modal-wide { max-width:900px; padding:0; overflow:hidden; max-height:90vh; }
  .modal.modal-wide .modal-close { z-index:10; background:rgba(255,255,255,0.9); backdrop-filter:blur(4px); }
  .recipe-modal-body { display:flex; height:100%; }
  .recipe-img-col { width:400px; flex-shrink:0; position:relative; background:var(--border); }
  .recipe-img-col img { width:100%; height:100%; object-fit:cover; display:block; }
  .recipe-img-skeleton { position:absolute; inset:0; background:linear-gradient(135deg,var(--border) 0%,var(--cream) 50%,var(--border) 100%); background-size:200% 200%; animation:shimmer 1.4s ease infinite; display:flex; align-items:center; justify-content:center; color:var(--text-muted); }
  @keyframes shimmer { 0%{background-position:0% 0%} 100%{background-position:200% 200%} }
  .recipe-content-col { flex:1; padding:44px 40px 36px; overflow-y:auto; max-height:90vh; }
  @media(max-width:720px) {
    .modal { padding:22px; }
    .modal.modal-wide { max-height:95vh; overflow-y:auto; }
    .modal.modal-wide .modal-close { position:fixed; top:16px; right:16px; background:rgba(255,255,255,0.95); box-shadow:0 2px 12px rgba(0,0,0,0.18); z-index:300; }
    .recipe-modal-body { flex-direction:column; }
    .recipe-img-col { width:100%; height:250px; flex-shrink:0; }
    .recipe-content-col { max-height:none; padding:22px 18px; }
  }
  .modal-overlay.open .modal { transform:translateY(0); }
  .modal-close { position:absolute; top:18px; right:18px; width:36px; height:36px; border-radius:50%; border:1.5px solid var(--border); background:transparent; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--text-muted); transition:all .2s; }
  .modal-close:hover { background:var(--border); }
  .modal-eyebrow { font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--orange); font-weight:500; margin-bottom:8px; }
  .modal-title { font-family:'Playfair Display',serif; font-size:28px; color:var(--green); margin-bottom:6px; }
  .modal-sub { font-size:14px; color:var(--text-muted); margin-bottom:32px; }

  .loading-state { text-align:center; padding:32px 0; }
  .spinner { width:48px; height:48px; border:3px solid var(--border); border-top-color:var(--green); border-radius:50%; animation:spin .8s linear infinite; margin:0 auto 20px; }
  .loading-title { font-family:'Playfair Display',serif; font-size:22px; color:var(--green); margin-bottom:8px; }
  .loading-hint { font-size:14px; color:var(--text-muted); margin-bottom:28px; }
  .load-steps { display:flex; flex-direction:column; gap:12px; max-width:320px; margin:0 auto; text-align:left; }
  .load-step { font-size:13px; color:var(--text-muted); display:flex; align-items:center; gap:10px; opacity:0; transition:opacity .4s; }
  .load-step.visible { opacity:1; }
  .ls-dot { width:8px; height:8px; border-radius:50%; background:var(--green-light); flex-shrink:0; }

  .ri-section { margin-bottom:28px; }
  .ri-title { font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-bottom:12px; }
  .ri-chips { display:flex; flex-wrap:wrap; gap:8px; }
  .ri-chip { padding:6px 14px; border-radius:100px; font-size:13px; display:flex; align-items:center; gap:6px; }
  .ri-chip .chip-dot { width:7px; height:7px; border-radius:50%; }
  .chip-urgent { background:var(--urgent-bg); color:var(--urgent); }
  .chip-urgent .chip-dot { background:var(--urgent); }
  .chip-soon { background:var(--soon-bg); color:var(--soon); }
  .chip-soon .chip-dot { background:var(--soon); }
  .chip-fresh { background:var(--fresh-bg); color:var(--fresh); }
  .chip-fresh .chip-dot { background:var(--fresh); }

  .week-plan { display:flex; flex-direction:column; gap:14px; }
  .day-card { border:1px solid var(--border); border-radius:16px; overflow:hidden; transition:box-shadow .2s; }
  .day-card:hover { box-shadow:0 6px 20px rgba(0,0,0,0.07); }
  .dc-head { display:flex; align-items:center; justify-content:space-between; padding:13px 18px; background:var(--cream); border-bottom:1px solid var(--border); }
  .dc-day { font-weight:500; font-size:14px; color:var(--green); }
  .dc-badge { font-size:11px; padding:3px 10px; border-radius:100px; display:flex; align-items:center; gap:5px; }
  .dc-badge.urgent { background:var(--urgent-bg); color:var(--urgent); }
  .dc-badge.soon { background:var(--soon-bg); color:var(--soon); }
  .dc-badge.fresh { background:var(--fresh-bg); color:var(--fresh); }
  .dc-badge-dot { width:6px; height:6px; border-radius:50%; }
  .dc-badge.urgent .dc-badge-dot { background:var(--urgent); }
  .dc-badge.soon .dc-badge-dot { background:var(--soon); }
  .dc-badge.fresh .dc-badge-dot { background:var(--fresh); }
  .dc-body { padding:16px 18px; }
  .dc-type { font-size:11px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-bottom:3px; }
  .dc-meal { font-size:15px; font-weight:500; color:var(--text); margin-bottom:4px; }
  .dc-uses { font-size:12px; color:var(--text-muted); font-weight:300; }
  .dc-uses span { color:var(--orange); }

  .modal-footer { display:flex; gap:12px; margin-top:28px; }

  @keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
  @keyframes spin { to { transform:rotate(360deg); } }
 
  @media(max-width:900px) {
    nav { padding:14px 20px; }
    .nav-burger { display:flex; align-items:center; justify-content:center; }
    nav ul { display:none; position:absolute; top:100%; left:0; right:0; flex-direction:column; gap:0; background:rgba(247,243,237,0.98); backdrop-filter:blur(14px); border-bottom:1px solid var(--border); padding:8px 0 16px; z-index:99; }
    nav.open ul { display:flex; }
    nav ul li { width:100%; }
    nav ul li a { padding:12px 20px; display:block; font-size:15px; }
    nav ul li .nav-cta { margin:8px 20px 4px; border-radius:12px!important; display:flex; width:calc(100% - 40px); justify-content:center; }
    .hero { grid-template-columns:1fr; }
    .hero-left { padding:48px 20px; }
    .hero-right { padding:48px 20px; }
    .section { padding:68px 20px; }
    .steps-grid, .audience-cards, .features-grid { grid-template-columns:1fr; gap:16px; }
    .audience-wrap, .cta-wrap, .faq { padding:38px 20px }
    footer { padding:28px 20px; }
    .email-row { flex-direction:column; }
    .hero-stats { gap:20px;margin-top: 25px;padding-top: 20px; }
    .hero-sub { margin-bottom: 30px; }
    .upload-card { padding:20px; }
    .step-card { padding:10px 20px 20px; }
    .section-sub { margin-bottom:24px; }
    .aud-card { padding:20px; }
    .feature-item { padding:10px 4px; }
    .features-visual { padding:22px 16px; }
    .meal-card { padding:16px; }
    .cta-wrap .section-sub { margin:0 auto 20px; }
  }
