/* ═══════════════════════════════════════════════════════════
   Zaberi — marketing site. Tokens come 1:1 from the approved
   Claude Design export (Zaberi Components / Website / Mobile Web):
   page #EDE9DF · shell #F8F5EE · ink #1E2A20 · heading #173D22 ·
   accent #1F8A3B (hover #166B2D) · mission #1C4527 · mint #E9F1E6 ·
   border #E8E3D6 · muted #7A8A7D. Cards are bordered, not shadowed;
   the page shell carries the one big soft shadow.
   ═══════════════════════════════════════════════════════════ */

:root{
  --page:#EDE9DF; --paper:#F8F5EE; --card:#fff;
  --ink:#1E2A20; --head:#173D22; --green:#1F8A3B; --green-press:#166B2D;
  --mission:#1C4527; --mint:#E9F1E6; --mint2:#E4F1E4; --light:#8FCB9B;
  --border:#E8E3D6; --muted:#7A8A7D; --body2:#4A5A4D; --strike:#A9A493;
  --on-dark:#A8C0AC;
  /* Onest for everything: the design's Bricolage/Instrument Sans ship NO
     Cyrillic, so Russian silently fell back to a system serif. Onest is a
     close geometric grotesque with full Cyrillic. Bricolage survives only
     in the wordmark, which is Latin. */
  --disp:'Onest',ui-sans-serif,system-ui,sans-serif;
  --mark:'Bricolage Grotesque','Onest',sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--page); color:var(--ink);
  font-family:'Onest',ui-sans-serif,system-ui,sans-serif;
  font-size:15px; line-height:1.55; -webkit-font-smoothing:antialiased;
}
img{display:block; max-width:100%}
a{color:var(--green); text-decoration:none}
a:hover{color:var(--green-press)}
button,input{font:inherit}
h1,h2,h3,h4{font-family:var(--disp); color:var(--head); margin:0}
h2{font-size:28px; font-weight:800; letter-spacing:-0.02em}

.shell{
  width:min(1180px,calc(100% - 32px)); margin:22px auto;
  background:var(--paper); border-radius:52px; overflow:hidden;
  box-shadow:0 20px 60px rgba(23,61,34,.07);
}
.inner{padding:0 54px}

/* ═══ header ═══ */
.top{height:92px; display:flex; align-items:center; justify-content:space-between; gap:18px; position:relative; z-index:6}
.logo{display:inline-flex; align-items:center; gap:9px; font-family:var(--mark); font-weight:800; font-size:29px; letter-spacing:-0.03em; color:var(--head)}
.logo .mark{border-radius:9px}
.logo:hover{color:var(--head)}
.nav{display:flex; gap:34px; font-weight:700; font-size:14px}
.nav a{color:#2E3D31}
.nav a:hover{color:var(--green)}
.top-right{display:flex; align-items:center; gap:12px}
.city{
  display:flex; align-items:center; gap:6px; background:none; border:0; cursor:pointer;
  font-weight:700; font-size:13.5px; color:var(--head); padding:8px 10px; border-radius:99px;
}
.city svg{color:var(--green)}
.city:hover{background:var(--mint)}
.chev{color:var(--muted)}
.lang{display:flex; gap:5px}
.lang button{
  border:1.5px solid var(--border); background:#fff; color:var(--muted);
  font-size:11.5px; font-weight:800; border-radius:99px; padding:6px 11px; cursor:pointer;
}
.lang button.on{background:var(--head); border-color:var(--head); color:#fff}
.burger{display:none; background:none; border:0; color:var(--head); cursor:pointer; padding:6px}

.menu-sheet{
  display:none; position:absolute; z-index:20; left:16px; right:16px; margin-top:-8px;
  background:#fff; border:1px solid var(--border); border-radius:18px; padding:8px 18px;
  box-shadow:0 14px 30px rgba(23,61,34,.10); animation:sb-pop .2s ease;
}
.menu-sheet a,.menu-city{display:block; width:100%; padding:14px 2px; font-size:15px; font-weight:700;
  color:#2E3D31; border-top:1px solid #F0EDE3; text-align:left; background:none; border-left:0; border-right:0; border-bottom:0}
.menu-sheet > :first-child{border-top:0}
.menu-city{display:flex; align-items:center; gap:8px; cursor:pointer}
.menu-city svg{color:var(--green)}
@keyframes sb-pop{from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:none}}

/* ═══ hero ═══
   The banner is shot with its left third deliberately empty, so it runs
   full-bleed to the shell edges and the copy sits INSIDE the photo rather
   than beside it. Negative margins cancel .inner's padding. */
.hero{position:relative; isolation:isolate; margin:0 -54px; min-height:560px;
  display:flex; align-items:center}
.hero-bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  object-position:78% 50%; z-index:0;
  /* dissolve the lower edge into the paper — otherwise the photo ends on a
     hard rule straight across the page */
  -webkit-mask-image:linear-gradient(180deg,#000 78%,transparent 100%);
  mask-image:linear-gradient(180deg,#000 78%,transparent 100%);
}
/* keeps the headline legible over the photo's lighter areas without
   washing the food out */
.hero:after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(100deg,
    rgba(248,245,238,.94) 0%, rgba(248,245,238,.86) 26%,
    rgba(248,245,238,.35) 44%, rgba(248,245,238,0) 60%);
}
.hero-copy{position:relative; z-index:3; padding:44px 54px 44px; max-width:620px}
h1{font-size:62px; font-weight:800; line-height:1.02; letter-spacing:-0.03em; margin:0 0 24px}
h1 em{font-style:normal; color:var(--green)}
.sub{font-size:18px; color:var(--body2); max-width:430px; margin:0 0 30px}
.search{
  display:flex; align-items:center; gap:8px; max-width:460px;
  background:#fff; border-radius:99px; padding:6px 6px 6px 18px;
  box-shadow:0 8px 22px rgba(23,61,34,.09);
}
.search input{flex:1; min-width:0; border:0; outline:0; background:none; font-size:15px; color:var(--ink); padding:10px 4px}
.search input::placeholder{color:var(--muted)}
.search button{
  border:0; background:var(--green); color:#fff; font-weight:800; font-size:14.5px;
  border-radius:99px; padding:14px 26px; cursor:pointer; white-space:nowrap;
}
.search button:hover{background:var(--green-press)}
.benefits{display:flex; gap:14px; flex-wrap:wrap; margin-top:30px}
.benefit{
  display:flex; align-items:center; gap:9px; background:#fff; border-radius:99px;
  padding:8px 16px 8px 8px; border:1px solid var(--border);
}
.benefit .ico{
  width:30px; height:30px; border-radius:50%; background:var(--mint2); color:var(--green);
  display:grid; place-items:center; font-size:14px; font-weight:800; flex:none;
}
.benefit strong{display:block; font-size:12.5px; color:var(--head)}
.benefit span:not(.ico){font-size:11px; color:var(--muted); line-height:1.2}
.benefit div{line-height:1.25}

.hero-art:after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:90px;
  background:linear-gradient(180deg,rgba(248,245,238,0),var(--paper) 80%);
}

/* ═══ sections ═══ */
section{padding-top:34px}
.s-head{display:flex; justify-content:space-between; align-items:baseline; margin-bottom:18px}

/* categories */
.cats{display:grid; grid-template-columns:repeat(5,1fr); gap:18px; padding-bottom:10px}
.cat-img{position:relative}
.cat-img img{height:160px; width:100%; object-fit:cover; border-radius:18px}
.bubble{
  position:absolute; left:13px; bottom:-14px; width:40px; height:40px; border-radius:50%;
  background:#fff; color:var(--green); display:grid; place-items:center; font-size:16px;
  box-shadow:0 5px 12px rgba(0,0,0,.14);
}
.cat h3{font-size:15.5px; margin:24px 0 3px}
.cat p{margin:0; color:var(--muted); font-size:12.5px}

/* how */
.how{background:var(--mint); border-radius:26px; padding:28px 32px 34px; margin-top:36px}
.steps{display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:26px; margin-top:22px}
.step{position:relative; padding-right:10px}
.num{
  width:27px; height:27px; border-radius:50%; background:var(--green); color:#fff;
  display:grid; place-items:center; font-weight:800; font-size:13px; font-family:var(--disp);
  margin-bottom:13px;
}
.s-ico{display:block; font-size:36px; line-height:1; margin-bottom:14px}
.step h3{font-size:15px; margin-bottom:7px}
.step p{font-size:13px; color:#44564C; margin:0; line-height:1.45}
.step:not(:last-child):after{content:""; position:absolute; top:50px; right:-16px; width:36px; border-top:2px dashed var(--light)}

/* mission */
.mission{
  position:relative; overflow:hidden; margin-top:36px;
  background:var(--mission); border-radius:24px; color:#fff;
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:26px;
  padding:24px 28px;
}
.mission:before{
  content:""; position:absolute; right:-50px; top:-60px; width:220px; height:220px; border-radius:50%;
  background:radial-gradient(circle,rgba(143,203,155,.22),transparent 70%);
}
.people{width:88px; flex:none}
.mission h3{color:#fff; font-size:23px; margin-bottom:5px}
.mission p{margin:0; color:var(--on-dark); font-size:13.5px; max-width:520px}
.btn-mint{
  position:relative; background:var(--light); color:var(--mission); font-weight:800; font-size:14px;
  border-radius:99px; padding:14px 26px; white-space:nowrap;
}
.btn-mint:hover{color:var(--mission); filter:brightness(1.05)}

/* why mosaic */
.mosaic{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:14px}
.tile{
  background:#fff; border:1px solid var(--border); border-radius:18px; padding:20px 22px;
  display:flex; flex-direction:column; justify-content:center; gap:4px;
}
.tile b{font-family:var(--disp); font-weight:800; font-size:26px; color:var(--head); letter-spacing:-0.02em}
.tile span{font-size:13px; color:var(--muted); font-weight:600}
.tile-photo{position:relative; padding:0; border:0; overflow:hidden; grid-row:span 2; min-height:230px}
.tile-photo img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover}
.badge-disc{
  position:absolute; left:14px; top:14px; background:var(--green); color:#fff;
  font-family:var(--disp); font-weight:800; font-size:15px; border-radius:99px; padding:6px 13px;
}
.tile-dark{background:var(--head); border-color:var(--head)}
.tile-dark b{color:var(--light); font-size:22px}
.tile-dark span{color:var(--on-dark)}

/* savings */
.save{background:var(--mint); border-radius:26px; padding:26px 30px 22px; margin-top:36px}
.save-cards{display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:14px; margin-top:18px}
.save-card{
  display:flex; align-items:center; gap:13px; background:#fff; border-radius:18px; padding:12px 14px;
}
.save-card img{width:56px; height:56px; object-fit:cover; border-radius:12px; flex:none}
.save-card h4{font-size:14px; margin-bottom:2px}
.save-card p{margin:0; font-size:14px}
.save-card b{font-family:var(--disp); font-weight:800; color:var(--green); font-size:16px}
.save-card s{color:var(--strike); font-size:12.5px; margin-left:6px}
.save-card .pct{margin-left:auto; background:var(--mint2); color:var(--green); font-weight:800; font-size:12px; border-radius:99px; padding:5px 11px}
.save-note{margin:14px 2px 0; font-size:12.5px; color:#66766A}

/* app + notify */
.app-row{display:grid; grid-template-columns:1fr 1.2fr; gap:14px}
.app-card,.notify-card{border-radius:26px; padding:28px 30px}
.app-card{background:var(--mint)}
.notify-card{background:#fff; border:1px solid var(--border)}
.app-card h2,.notify-card h2{font-size:22px; margin-bottom:6px}
.app-card p,.notify-card p{margin:0 0 18px; font-size:13.5px; color:var(--body2)}
.stores{display:flex; gap:10px}
.store{
  background:var(--head); color:#fff; font-weight:700; font-size:13.5px;
  border-radius:12px; padding:13px 20px; opacity:.55; cursor:default; user-select:none;
}
.notify{display:flex; gap:8px; background:var(--paper); border:1.5px solid var(--border); border-radius:99px; padding:5px 5px 5px 16px}
.notify input{flex:1; min-width:0; border:0; outline:0; background:none; font-size:14px}
.notify button{border:0; background:var(--green); color:#fff; font-weight:800; font-size:13.5px; border-radius:99px; padding:12px 22px; cursor:pointer}
.notify button:hover{background:var(--green-press)}

/* footer */
footer{margin-top:44px; border-top:1px solid var(--border); padding:30px 0 26px}
.f-top{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1fr; gap:22px}
.f-brand p{margin:8px 0 0; font-size:13px; color:var(--muted); max-width:200px}
.f-col h5{margin:0 0 10px; font-size:12px; font-weight:800; color:var(--muted); letter-spacing:.04em; text-transform:uppercase}
.f-col a{display:block; font-size:13px; color:#2E3D31; padding:4px 0; font-weight:600}
.f-col a:hover{color:var(--green)}
.f-copy{margin:26px 0 0; font-size:12.5px; color:var(--muted)}

.sticky-cta{display:none}

/* ═══ tablet ═══ */
@media (max-width:900px){
  .inner{padding:0 28px}
  .shell{border-radius:32px}
  .nav{display:none}
  .burger{display:block}
  /* stacked: copy on the paper, the banner as a full-width band beneath —
     at this width the food would otherwise sit behind the text */
  .hero{margin:0 -28px; min-height:auto; display:flex; flex-direction:column}
  .hero-copy{order:1; padding:10px 28px 22px; max-width:none}
  .hero-bg{order:2; position:relative; height:300px; object-position:72% 50%;
    -webkit-mask-image:none; mask-image:none}
  .hero:after{display:none}
  h1{font-size:48px}
  .cats{grid-template-columns:repeat(2,1fr)}
  .mosaic{grid-template-columns:1fr 1fr}
  .tile-photo{grid-row:auto; grid-column:span 2; min-height:180px}
  .mission{grid-template-columns:1fr; text-align:center; justify-items:center}
  .app-row{grid-template-columns:1fr}
  .f-top{grid-template-columns:1fr 1fr}
}

/* ═══ phone ═══ */
@media (max-width:560px){
  body{font-size:14.5px}
  .shell{width:100%; margin:0; border-radius:0}
  .inner{padding:0 18px}
  .top{height:72px; position:sticky; top:0; background:rgba(248,245,238,.96);
    -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
    margin:0 -18px; padding:0 18px; border-bottom:1px solid var(--border)}
  .logo{font-size:24px}
  .logo .mark{width:30px; height:30px}
  .lang button{padding:5px 9px; font-size:11px}
  /* no room for the city picker beside the wordmark at this width — it lives
     in the menu sheet instead */
  .top .city{display:none}
  h1{font-size:36px}
  .sub{font-size:14.5px}
  .search{flex-wrap:nowrap}
  .search button{padding:12px 16px; font-size:13px}
  .benefits{gap:8px}
  .hero{margin:0 -18px}
  .hero-copy{padding:6px 18px 20px}
  .hero-bg{height:230px; object-position:70% 50%}
  .cats{display:flex; gap:12px; overflow-x:auto; padding-bottom:16px; margin:0 -18px; padding-left:18px; padding-right:18px; scrollbar-width:none}
  .cats::-webkit-scrollbar{display:none}
  .cat{flex:0 0 138px}
  .cat-img img{height:106px}
  .bubble{width:32px; height:32px; font-size:13px; bottom:-11px}
  .cat h3{margin-top:18px; font-size:13.5px}
  .how{padding:22px 18px 26px; margin:28px -0 0}
  .steps{grid-template-columns:1fr}
  .step:not(:last-child):after{display:none}
  .mission{padding:22px 18px}
  .save{padding:20px 16px}
  .f-top{grid-template-columns:1fr}
  footer{padding-bottom:86px}
  .sticky-cta{
    display:block; position:fixed; left:14px; right:14px; bottom:16px; z-index:40;
    background:var(--green); color:#fff; text-align:center; font-weight:800; font-size:15px;
    border-radius:99px; padding:15px; box-shadow:0 12px 28px rgba(31,138,59,.35);
  }
  .sticky-cta:hover{color:#fff}
}

/* ═══════════════════════════════════════════════════════════
   Content pages — «Как это работает», «Частые вопросы»,
   «Для бизнеса» (ZABERI DESIGN V2). They share the shell, the
   header and the footer with the landing page; everything below
   is specific to reading a page rather than scanning a pitch.
   ═══════════════════════════════════════════════════════════ */
.page-head{padding:34px 0 8px; max-width:720px}
.page-head h1{font-size:40px; font-weight:800; letter-spacing:-0.03em; line-height:1.08}
.page-head p{color:var(--body2); font-size:16px; margin:12px 0 0}
@media (max-width:720px){ .page-head h1{font-size:30px} }

.flow{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; margin-top:26px}
.flow .step-card{background:var(--card); border:1px solid var(--border); border-radius:20px; padding:22px}
.flow .n{
  width:34px; height:34px; border-radius:50%; background:var(--head); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:15px;
}
.flow h3{font-size:17px; font-weight:800; margin:14px 0 6px}
.flow p{margin:0; color:var(--body2); font-size:14px}

.tiles{display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:16px; margin-top:22px}
.tile-card{background:var(--card); border:1px solid var(--border); border-radius:20px; overflow:hidden}
.tile-card img{width:100%; height:132px; object-fit:cover}
.tile-card .body{padding:14px 16px 18px}
.tile-card h3{font-size:16px; font-weight:800; margin:0 0 4px}
.tile-card p{margin:0; color:var(--body2); font-size:13.5px}

.explainer{background:var(--mint); border-radius:24px; padding:28px 30px; margin-top:30px}
.explainer h2{font-size:24px}
.explainer p{color:var(--body2); margin:10px 0 0}
.checks{list-style:none; margin:16px 0 0; padding:0; display:grid; gap:9px}
.checks li{display:flex; gap:10px; align-items:flex-start; font-weight:600}
.checks .tick{
  flex:none; width:20px; height:20px; border-radius:50%; background:var(--green); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800;
}
.note{
  display:flex; gap:12px; align-items:flex-start; background:var(--card);
  border:1px solid var(--border); border-radius:18px; padding:18px 20px; margin-top:18px;
}
.note .bang{
  flex:none; width:26px; height:26px; border-radius:50%; background:#FBF0D8; color:#8A6614;
  display:flex; align-items:center; justify-content:center; font-weight:800;
}
.note h3{font-size:15px; font-weight:800; margin:0 0 4px}
.note p{margin:0; color:var(--body2); font-size:14px}

/* accordion — a <details> so it works with JS disabled and is keyboard-native */
.faq{margin-top:22px; display:grid; gap:10px}
/* an author `display` beats the UA stylesheet's [hidden]{display:none}, so
   the hidden panel would still render */
.faq[hidden]{display:none}
.faq details{background:var(--card); border:1px solid var(--border); border-radius:16px}
.faq summary{
  list-style:none; cursor:pointer; padding:16px 20px; font-weight:700; font-size:15px;
  display:flex; gap:14px; align-items:center; justify-content:space-between; color:var(--head);
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:'+'; color:var(--muted); font-weight:800; font-size:19px; line-height:1}
.faq details[open] summary::after{content:'−'}
.faq .a{padding:0 20px 18px; color:var(--body2); font-size:14.5px; margin:0}

.tag-cloud{display:flex; flex-wrap:wrap; gap:9px; margin-top:18px}
.tag-cloud span{
  background:var(--card); border:1px solid var(--border); border-radius:999px;
  padding:8px 15px; font-size:13.5px; font-weight:600;
}
.page-cta{
  background:var(--mission); color:var(--paper); border-radius:24px;
  padding:32px 34px; margin:30px 0 8px; text-align:center;
}
.page-cta h2{color:var(--paper); font-size:25px}
.page-cta p{color:var(--on-dark); margin:8px 0 20px}
.tabs{display:flex; gap:9px; margin-top:22px; flex-wrap:wrap}
.tabs button{
  background:var(--card); border:1.5px solid var(--border); border-radius:999px;
  padding:9px 18px; font-weight:700; font-size:13.5px; color:#2E3D31; cursor:pointer;
}
.tabs button[aria-selected="true"]{background:var(--head); border-color:var(--head); color:#fff}
.section-gap{margin-top:44px}
