/* ── FoodSpot Mobile storefront ───────────────────────────────
   Mobile-first. Breakpoints:
     < 980px  → phone/tablet: bottom nav + hamburger drawer
     ≥ 980px  → desktop: top nav, two-column hero, blog grid
   ------------------------------------------------------------ */
:root{
  --green:#22c55e;
  --green-dark:#16a34a;
  --bg-dark:#0b0f0d;
  --bg-dark-2:#101614;
  --bg-light:#f7f8f7;
  --text-dark:#e8ece9;
  --text-light:#111613;
  --muted:#6b7280;
  --amber:rgba(255,193,7,.60); /* Smash Burgers pin (burger style) */
  --radius:16px;
  --wrap:1180px;
  --nav-h:92px;
}
*{margin:0;padding:0;box-sizing:border-box}
[hidden]{display:none!important}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  background:var(--bg-light);color:var(--text-light);
  padding-bottom:var(--nav-h); /* room for bottom nav */
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit;cursor:pointer;background:none;border:none;color:inherit}
:focus-visible{outline:3px solid var(--green);outline-offset:2px;border-radius:6px}

.section-wrap{max-width:var(--wrap);margin:0 auto;width:100%}
/* sticky header would otherwise cover the top of any #anchor target */
#top,#about,#blog,#recursos{scroll-margin-top:74px}
.eyebrow{
  display:inline-block;color:var(--green-dark);font-weight:800;
  font-size:12px;letter-spacing:.14em;text-transform:uppercase;margin-bottom:10px;
}
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--green);color:#06240f;font-weight:800;padding:12px 18px;border-radius:0 0 10px 0;
}
.skip-link:focus{left:0}

/* ── Header ── */
.site-header{
  position:sticky;top:0;z-index:70;
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 20px;background:var(--bg-dark);
}
.brand{display:flex;align-items:center;gap:8px;color:#fff}
.brand-text{font-weight:800;font-size:15px;line-height:1.05;letter-spacing:.2px}
.brand-text em{font-style:normal;color:var(--green);font-weight:600}
.menu-btn{color:#fff;width:38px;height:38px;display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.18);border-radius:50%}
.desktop-nav{display:none}

/* ── Mobile drawer ── */
.drawer-scrim{
  position:fixed;inset:0;z-index:88;background:rgba(4,7,5,.6);
  backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);
  animation:fade .18s ease;
}
@keyframes fade{from{opacity:0}to{opacity:1}}
.drawer{
  position:fixed;top:0;right:0;bottom:0;z-index:90;
  width:min(300px,84vw);background:var(--bg-dark);color:#fff;
  display:flex;flex-direction:column;
  padding:calc(16px + env(safe-area-inset-top)) 20px calc(20px + env(safe-area-inset-bottom));
  box-shadow:-18px 0 50px rgba(0,0,0,.5);
  animation:slideIn .22s cubic-bezier(.22,.9,.3,1);
}
@keyframes slideIn{from{transform:translateX(100%)}to{transform:translateX(0)}}
.drawer-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.drawer-title{font-weight:800;font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:#7d8a83}
.drawer-close{color:#fff;width:38px;height:38px;display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.18);border-radius:50%}
.drawer-nav{display:flex;flex-direction:column;gap:2px}
.drawer-nav a{
  display:flex;align-items:center;gap:14px;
  padding:15px 12px;border-radius:12px;font-weight:700;font-size:16px;
  transition:background .15s ease,color .15s ease;
}
.drawer-nav a:hover,.drawer-nav a:focus-visible{background:rgba(34,197,94,.14);color:var(--green)}
.drawer-cta{margin-top:24px;justify-content:center;width:100%}
.drawer-note{margin-top:auto;padding-top:20px;color:#7d8a83;font-size:12.5px;line-height:1.5}
.drawer-note strong{color:var(--green)}

/* ── Hero ── */
.hero{background:var(--bg-dark);color:var(--text-dark)}
.hero-stage{
  position:relative;overflow:hidden;
  /* header (~66px) + bottom nav (--nav-h) share the viewport, so the
     benefits strip lands just above the fold instead of below it */
  min-height:max(560px, calc(100svh - 66px - var(--nav-h)));
  display:flex;flex-direction:column;
}
.hero-bg{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:68% 22%; /* keep bun + melt in frame */
}
.hero-shade{
  position:absolute;inset:0;
  background:
    linear-gradient(90deg, rgba(11,15,13,.72) 0%, rgba(11,15,13,.34) 48%, rgba(11,15,13,.05) 78%),
    radial-gradient(120% 90% at 70% 30%, rgba(0,0,0,0) 40%, rgba(5,8,6,.55) 100%),
    linear-gradient(180deg,
      rgba(11,15,13,.88) 0%,
      rgba(11,15,13,.45) 18%,
      rgba(11,15,13,.28) 38%,
      rgba(11,15,13,.38) 58%,
      rgba(11,15,13,.72) 84%,
      rgba(11,15,13,.96) 100%);
}

/* two-zone layout: headline shares row 1 with the QR card, the lede
   spans the full width underneath so the CTA never gets squeezed */
.hero-inner{
  position:relative;z-index:2;
  width:100%;max-width:var(--wrap);margin:0 auto;
  display:grid;grid-template-columns:minmax(0,1fr) auto;
  align-items:start;column-gap:14px;row-gap:0;
  padding:26px 18px 0;
}
.hero-title{grid-column:1;grid-row:1;min-width:0}
.hero-qr{grid-column:2;grid-row:1}
.hero-lede{grid-column:1 / -1;grid-row:2;min-width:0}
.hero h1{font-size:clamp(29px,7.4vw,46px);font-weight:900;line-height:1.05;letter-spacing:-.5px;text-shadow:0 2px 18px rgba(0,0,0,.5)}
.cta{white-space:nowrap}
.hero .accent{color:var(--green)}
.hero-rule{display:block;width:44px;height:4px;background:var(--green);border-radius:2px;margin:16px 0}
.hero-sub{color:#c4ccc6;font-size:15px;max-width:340px;text-shadow:0 1px 10px rgba(0,0,0,.6)}
.cta{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--green);color:#06240f;font-weight:800;
  padding:14px 26px;border-radius:999px;margin-top:20px;font-size:16px;
  box-shadow:0 6px 24px rgba(34,197,94,.35);transition:transform .15s ease,background .15s ease;
}
.cta:hover{background:var(--green-dark);color:#fff;transform:translateY(-1px)}
.cta-small{padding:10px 18px;font-size:14px;margin-top:0}
.hero-note{display:flex;align-items:center;gap:6px;color:#9faaa3;font-size:12.5px;margin-top:14px}

/* QR tent card — now top-right in the hero grid. Kept compact so row 1
   stays close to the headline's height and the lede doesn't drop away. */
.hero-qr{display:flex;flex-direction:column;align-items:center;gap:8px}
.qr-tent{
  width:112px;background:#f4f5f4;color:#151915;border-radius:10px;
  padding:9px 9px 0;text-align:center;transform:rotate(-4deg);
  box-shadow:0 22px 50px rgba(0,0,0,.65);overflow:hidden;
}
.qr-tent-top{font-size:9.5px;font-weight:700;line-height:1.3;margin-bottom:6px}
.qr-tent-img{width:68px;height:auto;margin:0 auto 6px;border-radius:4px}
.qr-tent-bottom{
  background:var(--green);color:#fff;font-size:8.5px;line-height:1.35;
  margin:0 -9px;padding:6px 5px 8px;
  display:flex;flex-direction:column;align-items:center;gap:2px;
}
.qr-try{
  display:inline-flex;align-items:center;gap:5px;
  color:#dfe7e2;font-size:11px;font-weight:700;white-space:nowrap;
  padding:7px 11px;border-radius:999px;
  background:rgba(16,22,20,.6);border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  transition:border-color .15s ease,color .15s ease;
}
.qr-try:hover{border-color:var(--green);color:var(--green)}

/* ── Benefits: frosted strip over the photo's bottom edge ── */
.benefits{
  position:relative;z-index:2;margin-top:auto;
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px;
  padding:16px 20px calc(18px + env(safe-area-inset-bottom));
  background:rgba(16,22,20,.55);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-top:1px solid rgba(255,255,255,.12);
}
.benefit{display:flex;flex-direction:column;gap:8px;align-items:flex-start}
.benefit-icon{
  width:40px;height:40px;border-radius:12px;display:grid;place-items:center;
  background:rgba(34,197,94,.12);border:1px solid rgba(34,197,94,.35);
}
.benefit strong{display:block;font-size:12.5px;color:#fff}
.benefit small{color:#8fa096;font-size:10.5px;line-height:1.3;display:block;margin-top:2px}

/* ── About ── */
.about{background:#fff;padding:44px 20px;border-bottom:1px solid #e7eae7}
.about h2{font-size:clamp(22px,5.4vw,34px);font-weight:900;line-height:1.18;letter-spacing:-.4px;max-width:18ch}
.about-lead{margin-top:14px;font-size:15.5px;line-height:1.65;color:#3a443e;max-width:62ch}
.about-lead strong{color:var(--green-dark);font-weight:800}
.about-steps{
  margin-top:28px;display:grid;gap:14px;
  grid-template-columns:1fr;
}
.about-step{
  background:var(--bg-light);border:1px solid #e7eae7;border-radius:var(--radius);
  padding:20px 18px;position:relative;
}
.step-num{
  display:grid;place-items:center;width:32px;height:32px;border-radius:50%;
  background:rgba(34,197,94,.14);border:1px solid rgba(34,197,94,.4);
  color:var(--green-dark);font-weight:900;font-size:14px;margin-bottom:12px;
}
.about-step h3{font-size:16px;font-weight:800;margin-bottom:6px}
.about-step p{font-size:13.5px;line-height:1.55;color:var(--muted)}
.about-facts{
  margin-top:22px;display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
  background:#eafaf0;border:1px solid #cdeeda;border-radius:var(--radius);padding:20px 16px;
}
.fact{text-align:center}
.fact strong{display:block;font-size:clamp(20px,5vw,28px);font-weight:900;color:var(--green-dark);line-height:1.1}
/* a word-based fact sits beside numerals — scale it down so it stays on
   one line and the three tiles keep the same height */
.fact-text strong{font-size:clamp(15px,3.9vw,22px)}
.fact small{display:block;margin-top:5px;font-size:11.5px;line-height:1.35;color:#4a5750}

/* ── Blog ── */
.blog{padding:36px 20px 44px}
.blog-head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:18px}
.blog-head h2{font-size:clamp(21px,5vw,30px);font-weight:800}
.ver-todos{color:var(--green-dark);font-weight:700;font-size:14px;display:inline-flex;align-items:center;gap:4px}

.blog-cards{display:flex;flex-direction:column;gap:14px}
.blog-card{
  display:flex;gap:14px;background:#fff;border:1px solid #e7eae7;
  border-radius:var(--radius);padding:12px;cursor:pointer;color:inherit;
  transition:transform .15s ease,box-shadow .15s ease;
}
.blog-card:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(0,0,0,.08)}
.blog-card img{width:104px;height:104px;object-fit:cover;border-radius:12px;flex-shrink:0}
.blog-card-body{display:flex;flex-direction:column;min-width:0}
.blog-card-date{color:var(--green-dark);font-size:11.5px;font-weight:700}
.blog-card-title{font-size:15px;font-weight:800;line-height:1.25;margin:3px 0 5px}
.blog-card-excerpt{
  font-size:12.5px;color:var(--muted);line-height:1.4;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.blog-card-more{
  margin-top:auto;padding-top:6px;color:var(--green-dark);font-weight:700;font-size:13px;
  display:inline-flex;align-items:center;gap:5px;
}

/* ── Owner CTA banner ── */
.owner-cta{
  margin-top:22px;display:flex;align-items:center;gap:12px;
  background:#eafaf0;border:1px solid #cdeeda;border-radius:var(--radius);padding:16px;
  scroll-margin-top:80px;
}
.owner-cta-icon{
  width:46px;height:46px;flex-shrink:0;border-radius:12px;display:grid;place-items:center;
  background:#fff;border:1px solid #cdeeda;
}
.owner-cta-text{flex:1;min-width:0}
.owner-cta-text strong{display:block;font-size:14px}
.owner-cta-text small{color:var(--muted);font-size:12px}

/* ── Footer ── */
.site-footer{background:var(--bg-dark);color:#c4ccc6;padding:38px 20px 26px}
.footer-grid{display:grid;grid-template-columns:1fr;gap:26px}
.footer-brand{color:#fff;display:block;margin-bottom:10px}
.footer-tag{font-size:13.5px;line-height:1.6;color:#8fa096}
.site-footer h4{color:#fff;font-size:12px;letter-spacing:.12em;text-transform:uppercase;margin-bottom:12px}
.site-footer nav a{display:block;font-size:14px;padding:5px 0;color:#c4ccc6;transition:color .15s ease}
.site-footer nav a:hover{color:var(--green)}
.footer-legal{
  max-width:var(--wrap);margin:26px auto 0;padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);font-size:12.5px;color:#6f7c75;
}

/* ── Bottom nav (mobile) ── */
.bottom-nav{
  position:fixed;left:0;right:0;bottom:0;z-index:60;
  display:flex;align-items:flex-end;justify-content:space-around;
  background:#fff;border-top:1px solid #e7eae7;
  padding:8px 6px calc(8px + env(safe-area-inset-bottom));
}
.bn-item{
  display:flex;flex-direction:column;align-items:center;gap:3px;
  color:#9aa3ad;font-size:10.5px;font-weight:600;padding:2px 8px;
}
.bn-item.active,.bn-item:hover{color:var(--green-dark)}
.bn-qr{
  display:flex;flex-direction:column;align-items:center;gap:3px;
  color:#9aa3ad;font-size:10.5px;font-weight:600;margin-top:-26px;
}
.bn-qr svg{
  background:var(--green);border-radius:50%;padding:14px;width:54px;height:54px;
  box-shadow:0 8px 22px rgba(34,197,94,.45);transition:transform .15s ease;
}
.bn-qr:hover svg{transform:scale(1.06)}

/* ── Article overlay ── */
.article-overlay{
  position:fixed;inset:0;z-index:80;background:#fff;overflow-y:auto;
}
.article-sheet{max-width:680px;margin:0 auto;padding:18px 20px 60px}
.article-back{
  display:inline-flex;align-items:center;gap:6px;color:var(--green-dark);
  font-weight:700;font-size:14px;margin-bottom:16px;
}
#article-body h1{font-size:clamp(24px,5vw,34px);font-weight:900;line-height:1.2;margin-bottom:6px}
#article-body .article-date{color:var(--green-dark);font-weight:700;font-size:12.5px;margin-bottom:14px}
#article-body img{border-radius:14px;margin:18px 0}
#article-body h2{font-size:clamp(19px,3.4vw,24px);font-weight:800;margin:22px 0 8px}
#article-body p{font-size:16px;line-height:1.7;color:#2b332e;margin-bottom:12px}
#article-body strong{font-weight:800}
.article-sheet .cta{margin-top:26px}

/* ── Standalone article pages (/blog/<slug>) ── */
.article-page{background:#fff;padding-bottom:0} /* no bottom nav on these pages */
.article-page main{padding:0 20px}
.article-page .article-sheet{padding-top:24px}
.crumbs{
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  font-size:13px;color:var(--muted);margin-bottom:18px;
}
.crumbs a{color:var(--green-dark);font-weight:700}
.crumbs a:hover{text-decoration:underline}
.article-page article hr{
  border:0;border-top:1px solid #e7eae7;margin:28px 0;
}
.article-page h1{font-size:clamp(26px,5.4vw,38px);font-weight:900;line-height:1.18;letter-spacing:-.4px;margin-bottom:6px}
.article-page .article-date{color:var(--green-dark);font-weight:700;font-size:12.5px;margin-bottom:16px}
.article-page article img{border-radius:14px;margin:20px 0;width:100%;height:auto}
.article-page article h2{font-size:clamp(19px,3.4vw,25px);font-weight:800;margin:28px 0 10px;line-height:1.3}
.article-page article p{font-size:16.5px;line-height:1.72;color:#2b332e;margin-bottom:14px}
.article-page article strong{font-weight:800}

.related{margin-top:48px;padding-top:28px;border-top:1px solid #e7eae7}
.related h2{font-size:19px;font-weight:800;margin-bottom:16px}
.related-list{display:grid;gap:12px}
.related-card{
  display:flex;align-items:center;gap:13px;
  background:var(--bg-light);border:1px solid #e7eae7;border-radius:14px;padding:11px;
  transition:transform .15s ease,box-shadow .15s ease;
}
.related-card:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(0,0,0,.07)}
.related-card img{width:64px;height:64px;object-fit:cover;border-radius:10px;flex-shrink:0}
.related-card small{display:block;color:var(--green-dark);font-size:11px;font-weight:700;margin-bottom:3px}
.related-card strong{display:block;font-size:14px;font-weight:800;line-height:1.3}

@media(min-width:980px){
  .article-page main{padding:0 40px}
  .article-page .article-sheet{padding-top:40px;padding-bottom:70px}
  .related-list{grid-template-columns:repeat(3,1fr)}
  .related-card{flex-direction:column;align-items:flex-start;padding:13px}
  .related-card img{width:100%;height:118px}
}

/* ── Camera mode (Smash Burgers, locked) ── */
.camera-overlay,.editor-overlay{
  position:fixed;inset:0;z-index:100;background:#000;
  display:flex;flex-direction:column;
}
#cam-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.cam-top{
  position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;
  padding:calc(14px + env(safe-area-inset-top)) 18px 0;
}
.cam-close{
  width:42px;height:42px;border-radius:50%;display:grid;place-items:center;
  background:rgba(20,20,24,.55);color:#fff;backdrop-filter:blur(6px);
}
.brand-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--amber);color:#fff;font-weight:800;font-size:14px;
  padding:9px 18px;border-radius:999px;backdrop-filter:blur(6px);
  box-shadow:0 4px 18px rgba(0,0,0,.35);
}
.brand-pill-dot{width:8px;height:8px;border-radius:50%;background:#fff}
.cam-frame{position:absolute;inset:0;display:grid;place-items:center;pointer-events:none}
.cam-frame i{
  position:absolute;width:34px;height:34px;border:3px solid rgba(255,255,255,.85);
}
.cam-frame i:nth-child(1){top:26%;left:14%;border-right:0;border-bottom:0;border-radius:8px 0 0 0}
.cam-frame i:nth-child(2){top:26%;right:14%;border-left:0;border-bottom:0;border-radius:0 8px 0 0}
.cam-frame i:nth-child(3){bottom:26%;left:14%;border-right:0;border-top:0;border-radius:0 0 0 8px}
.cam-frame i:nth-child(4){bottom:26%;right:14%;border-left:0;border-top:0;border-radius:0 0 8px 0}
.cam-bottom{
  position:relative;z-index:2;margin-top:auto;
  display:flex;flex-direction:column;align-items:center;gap:16px;
  padding-bottom:calc(30px + env(safe-area-inset-bottom));
}
.cam-hint{color:rgba(255,255,255,.85);font-size:13px;text-shadow:0 1px 6px rgba(0,0,0,.6)}
.shutter{
  width:76px;height:76px;border-radius:50%;border:5px solid #fff;
  display:grid;place-items:center;background:transparent;
}
.shutter span{width:58px;height:58px;border-radius:50%;background:#fff;transition:transform .1s ease}
.shutter:active span{transform:scale(.85)}
.cam-error{
  position:absolute;inset:0;z-index:3;background:rgba(0,0,0,.92);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:18px;
  color:#fff;text-align:center;font-size:15px;line-height:1.5;padding:20px;
}

/* ── Editor (photo result) ── */
.editor-overlay{align-items:center;justify-content:center}
.editor-pill{position:absolute;top:calc(16px + env(safe-area-inset-top));z-index:2}
#editor-photo{
  position:absolute;inset:0;width:100%;height:100%;object-fit:contain;background:#000;
}
.editor-actions{
  position:relative;z-index:2;margin-top:auto;display:flex;gap:14px;
  padding-bottom:calc(28px + env(safe-area-inset-bottom));
}
.editor-btn{
  display:flex;flex-direction:column;align-items:center;gap:6px;
  color:#fff;font-size:12px;font-weight:700;
  width:74px;padding:12px 0;border-radius:14px;
  background:rgba(20,20,24,.6);backdrop-filter:blur(6px);
}
.editor-btn.primary{background:var(--green);color:#06240f}

/* ══════════ TABLET ══════════ */
@media(min-width:640px){
  .about-steps{grid-template-columns:repeat(3,1fr)}
  .blog-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
  .blog-card{flex-direction:column}
  .blog-card img{width:100%;height:170px}
  .qr-tent{width:150px}
  .qr-tent-img{width:96px}
  .qr-tent-top{font-size:11.5px}
  .qr-tent-bottom{font-size:10.5px}
}

/* ══════════ DESKTOP ══════════ */
@media(min-width:980px){
  body{padding-bottom:0}
  .bottom-nav{display:none}
  .menu-btn{display:none}

  .site-header{padding:16px 40px}
  .desktop-nav{display:flex;align-items:center;gap:30px}
  .desktop-nav a{color:#c4ccc6;font-weight:700;font-size:14.5px;transition:color .15s ease}
  .desktop-nav a:hover{color:var(--green)}
  .cta-nav{margin-top:0;padding:11px 22px;font-size:14.5px;color:#06240f}
  .cta-nav:hover{color:#fff}

  /* hero becomes a real two-column layout, QR card pinned right */
  .hero-stage{min-height:min(760px,92vh)}
  /* portrait source in a landscape frame crops hard — bias up to the
     bun + cheese melt so it still reads as a burger, not a texture */
  .hero-bg{object-position:60% 16%}
  .hero-shade{
    background:
      linear-gradient(90deg, rgba(11,15,13,.94) 0%, rgba(11,15,13,.72) 38%, rgba(11,15,13,.15) 72%, rgba(11,15,13,.35) 100%),
      linear-gradient(180deg, rgba(11,15,13,.5) 0%, rgba(11,15,13,0) 26%, rgba(11,15,13,.2) 62%, rgba(11,15,13,.9) 100%);
  }
  .hero-inner{
    grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
    align-items:center;column-gap:48px;
    padding:56px 40px 40px;flex:1;
  }
  /* QR card spans both rows and centres against the whole copy block */
  .hero-qr{grid-row:1 / span 2;align-self:center}
  .hero-lede{grid-column:1}
  .hero h1{font-size:clamp(46px,4.6vw,64px)}
  .hero-sub{font-size:17px;max-width:400px}
  .hero-rule{margin:22px 0}
  .cta{font-size:17px;padding:16px 30px}
  .hero-qr{align-items:flex-end;gap:14px}
  .qr-tent{
    width:230px;padding:18px 18px 0;border-radius:14px;transform:rotate(-4deg);
    box-shadow:0 34px 70px rgba(0,0,0,.7);
  }
  .qr-tent-top{font-size:15px;margin-bottom:12px}
  .qr-tent-img{width:150px;margin-bottom:12px;border-radius:6px}
  .qr-tent-bottom{font-size:13px;margin:0 -18px;padding:11px 8px 14px}
  .qr-try{font-size:13.5px;padding:10px 18px;margin-right:12px}

  .benefits{
    grid-template-columns:repeat(3,1fr);gap:32px;
    padding:26px 40px;justify-content:center;
  }
  .benefit{flex-direction:row;align-items:center;gap:14px;justify-content:center}
  .benefit-icon{width:46px;height:46px;flex-shrink:0}
  .benefit strong{font-size:15px}
  .benefit small{font-size:12.5px}

  .about{padding:76px 40px}
  .about-lead{font-size:17px}
  .about-steps{gap:20px;margin-top:38px}
  .about-step{padding:26px 24px}
  .about-step h3{font-size:18px}
  .about-step p{font-size:14.5px}
  .about-facts{margin-top:32px;padding:30px 24px}
  .fact small{font-size:13px}

  .blog{padding:76px 40px 84px}
  .blog-head{margin-bottom:26px}
  .blog-cards{grid-template-columns:repeat(4,1fr);gap:20px}
  .blog-card{padding:14px}
  .blog-card img{height:180px}
  .blog-card-title{font-size:16px}
  .blog-card-excerpt{font-size:13px;-webkit-line-clamp:3}
  .owner-cta{margin-top:36px;padding:24px 28px;gap:18px}
  .owner-cta-text strong{font-size:17px}
  .owner-cta-text small{font-size:13.5px}

  .site-footer{padding:56px 40px 30px}
  .footer-grid{grid-template-columns:2fr 1fr 1fr;gap:48px}
}

@media(min-width:1240px){
  .site-header{padding:16px 60px}
  .hero-inner{padding:64px 60px 44px}
  .benefits{padding:28px 60px}
  .about,.blog{padding-left:60px;padding-right:60px}
  .site-footer{padding-left:60px;padding-right:60px}
}

/* ── Motion preferences ── */
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}
