/* ============================================================
   Popelnice.app — web
   Design tokens & styles
   Font: Plus Jakarta Sans · Ikony: Material Symbols Rounded
   ============================================================ */

:root {
  --green:        #4FB340;
  --green-dark:   #3D8F32;
  --green-light:  #E8F5E5;
  --green-tint:   #F1F9EF;

  --bg:           #F2F5F1;
  --surface:      #FFFFFF;
  --ink:          #16201A;
  --ink-2:        #5C6B61;
  --muted:        #8B988F;
  --inactive:     #9AA69E;
  --border:       #E5EAE3;
  --divider:      #EDF1EB;

  /* barvy typů odpadu */
  --bio:    #2E9E3F;
  --paper:  #2F7FE6;
  --plastic:#D9A300;
  --yard:   #8A5A3B;
  --mixed:  #2B2F2C;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, p { margin: 0; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---- Material Symbols helper ---- */
.ms {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-variation-settings: 'FILL' 0;
  -webkit-font-feature-settings: 'liga';
}
.ms.fill { font-variation-settings: 'FILL' 1; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #ECEFEA;
}
.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo img {
  width: 38px; height: 38px; border-radius: 11px;
  box-shadow: 0 4px 12px -4px rgba(79,179,64,.5);
}
.logo span { font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.logo span b { color: var(--green); font-weight: 800; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-weight: 600; font-size: 14.5px; color: var(--ink-2);
  padding: 8px 13px; border-radius: 9px;
}
.nav a:not(.btn-download):hover { background: var(--bg); }

.btn-download {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: var(--ink);
  font-weight: 700; font-size: 14.5px;
  padding: 10px 18px; border-radius: 11px;
  box-shadow: 0 8px 20px -8px rgba(79,179,64,.6);
  margin-left: 6px;
}
.btn-download:hover { background: var(--green-dark); }
.btn-download .ms { font-size: 19px; }

/* ============================================================
   STORE BUTTONS (App Store / Google Play)
   ============================================================ */
.store-row { display: flex; flex-wrap: wrap; gap: 12px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  padding: 13px 20px; border-radius: 15px;
}
.store-btn.light { background: #fff; color: var(--ink); }
.store-btn .ms { font-size: 26px; }
.store-btn small { display: block; font-weight: 600; font-size: 11px; opacity: .72; }
.store-btn b { display: block; font-weight: 800; font-size: 17px; margin-top: 1px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
  padding: 60px 0 76px;
}
.hero-grid {
  display: flex; gap: 48px; align-items: center; flex-wrap: wrap;
}
.hero-copy { flex: 1; min-width: 330px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #D6ECCF; color: var(--green-dark);
  padding: 7px 14px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
}
.badge .ms { font-size: 17px; }
.hero h1 {
  font-weight: 800; font-size: 54px; line-height: 1.04;
  letter-spacing: -.035em; margin-top: 22px; text-wrap: balance;
}
.hero-sub {
  font-weight: 500; font-size: 18.5px; line-height: 1.55;
  color: var(--ink-2); margin-top: 20px; max-width: 500px; text-wrap: pretty;
}
.hero .store-row { margin-top: 30px; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 26px; }
.hero-trust span { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--ink-2); }
.hero-trust .ms { font-size: 19px; color: var(--green); }

.hero-visual {
  flex: none; position: relative;
  display: flex; justify-content: center; min-width: 300px;
}
.hero-glow {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,179,64,.22), rgba(79,179,64,0) 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.float { position: relative; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: #fff; padding: 30px 0; border-bottom: 1px solid #ECEFEA;
}
.trust-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-around; gap: 26px;
}
.trust-stat { text-align: center; }
.trust-stat b { display: block; font-weight: 800; font-size: 30px; letter-spacing: -.02em; }
.trust-stat b.accent { color: var(--green); }
.trust-stat span { font-weight: 600; font-size: 13px; color: var(--muted); }
.trust-sep { width: 1px; height: 38px; background: #ECEFEA; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section { padding: 78px 0; }
.section.alt { background: var(--bg); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow { font-weight: 700; font-size: 13px; color: var(--green); letter-spacing: .08em; text-transform: uppercase; }
.section-head h2 { font-weight: 800; font-size: 40px; line-height: 1.1; letter-spacing: -.03em; margin-top: 12px; text-wrap: balance; }

/* ============================================================
   FEATURES
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #F7F9F6; border: 1.5px solid var(--border);
  border-radius: 22px; padding: 26px;
}
.feature-ico {
  width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
}
.feature-ico .ms { font-size: 27px; color: #fff; }
.feature-ico.green   { background: var(--green); box-shadow: 0 8px 20px -8px rgba(79,179,64,.6); }
.feature-ico.blue    { background: var(--paper); box-shadow: 0 8px 20px -8px rgba(47,127,230,.55); }
.feature-ico.dark    { background: var(--ink);   box-shadow: 0 8px 20px -8px rgba(22,32,26,.4); }
.feature h3 { font-weight: 800; font-size: 20px; margin-top: 18px; }
.feature p { font-weight: 500; font-size: 15px; line-height: 1.55; color: var(--ink-2); margin-top: 8px; text-wrap: pretty; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: 12px;
  font-weight: 700; font-size: 13.5px; color: var(--ink);
  border: 1.5px solid; background: #fff;
}
.chip .ms { font-size: 18px; }
.chip.bio     { background: #ECF7EC; border-color: #BFE3C0; }
.chip.bio .ms { color: var(--bio); }
.chip.paper     { background: #EAF1FD; border-color: #BBD4F7; }
.chip.paper .ms { color: var(--paper); }
.chip.plastic     { background: #FBF3DA; border-color: #F0DDA0; }
.chip.plastic .ms { color: var(--plastic); }
.chip.yard     { background: #F3ECE6; border-color: #DCC8B9; }
.chip.yard .ms { color: var(--yard); }
.chip.mixed     { background: #ECEEEC; border-color: #C9CFCB; }
.chip.mixed .ms { color: var(--mixed); }

/* ============================================================
   HOW IT WORKS (3 steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1000px; margin: 0 auto; }
.step {
  position: relative; background: #fff; border-radius: 22px;
  padding: 30px 26px; box-shadow: 0 10px 30px -16px rgba(20,40,26,.18);
}
.step-num { position: absolute; top: 24px; right: 26px; font-weight: 800; font-size: 56px; color: rgba(79,179,64,.28); line-height: .8; }
.step-ico {
  width: 50px; height: 50px; border-radius: 15px; background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
}
.step-ico .ms { font-size: 26px; color: var(--green); }
.step h3 { font-weight: 800; font-size: 19px; margin-top: 20px; }
.step p { font-weight: 500; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin-top: 7px; text-wrap: pretty; }

/* ============================================================
   SCREENSHOTS
   ============================================================ */
.shots { display: flex; gap: 30px; justify-content: center; align-items: flex-start; flex-wrap: wrap; }
.shot { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.shot-label { font-weight: 600; font-size: 14px; color: var(--muted); }

/* ---- Phone frame ---- */
.phone {
  width: 270px; height: 564px; background: var(--bg);
  border-radius: 38px; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 30px 64px -20px rgba(8,20,12,.42), 0 0 0 1px rgba(18,38,24,.06);
  display: flex; flex-direction: column;
}
.phone .status {
  height: 38px; flex-shrink: 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 20px 6px; font-weight: 800; font-size: 13px;
}
.phone .status .sig { display: flex; align-items: center; gap: 5px; }
.phone .status .ms { font-size: 14px; }
.phone .status .ms.bat { font-size: 15px; }
.phone .body { flex: 1; overflow: hidden; display: flex; flex-direction: column; }
.phone .tabs {
  height: 64px; flex-shrink: 0; background: #fff; border-top: 1px solid #ECEFEA;
  display: flex; align-items: center; justify-content: space-around; padding-bottom: 8px;
}
.tab { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.tab .ms { font-size: 22px; color: var(--inactive); }
.tab span { font-weight: 600; font-size: 10px; color: var(--inactive); }
.tab.on .ms { color: var(--green); }
.tab.on span { font-weight: 700; color: var(--green); }

/* ---- Screen cards ---- */
.obec {
  position: relative; overflow: hidden; background: var(--green);
  border-radius: 20px; padding: 13px 16px; flex-shrink: 0;
}
.obec .eyebrow-sm { font-weight: 700; font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.obec .name { font-weight: 800; font-size: 22px; color: #fff; margin-top: 3px; letter-spacing: -.02em; }
.obec img { position: absolute; right: 8px; bottom: -8px; height: 64px; width: auto; filter: drop-shadow(0 3px 6px rgba(0,0,0,.16)); }

.p-card { background: #fff; border-radius: 18px; padding: 12px 14px; box-shadow: 0 4px 16px -6px rgba(20,40,26,.10); flex-shrink: 0; }
.p-label { font-weight: 600; font-size: 11.5px; color: #73837A; }
.p-next { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.icon-badge { width: 36px; height: 36px; border-radius: 11px; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-badge .ms { font-size: 19px; color: #fff; }
.p-next .title { font-weight: 800; font-size: 17px; }
.p-date-row { display: flex; align-items: center; justify-content: space-between; margin-top: 9px; }
.p-date { font-weight: 600; font-size: 13px; color: var(--ink-2); }

.pill { font-weight: 700; font-size: 11px; padding: 4px 10px; border-radius: 999px; background: var(--green-light); color: var(--green-dark); }
.pill.muted { background: #EEF2EC; color: var(--ink-2); }

.list-title { font-weight: 800; font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.svoz {
  position: relative; overflow: hidden; display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 13px; padding: 10px 12px;
  box-shadow: 0 4px 16px -6px rgba(20,40,26,.10); flex-shrink: 0;
}
.svoz::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--c); }
.svoz .ms { font-size: 20px; color: var(--c); margin-left: 2px; }
.svoz .info { flex: 1; }
.svoz .info b { font-weight: 700; font-size: 14px; }
.svoz .info small { display: block; font-weight: 600; font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ---- Calendar screen ---- */
.cal-head { display: flex; align-items: center; justify-content: space-between; }
.cal-nav { width: 34px; height: 34px; border-radius: 11px; background: #fff; box-shadow: 0 2px 8px rgba(20,40,26,.07); display: flex; align-items: center; justify-content: center; }
.cal-nav .ms { font-size: 20px; }
.cal-title { font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.cal-week { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; font-weight: 700; font-size: 10.5px; color: var(--inactive); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); row-gap: 3px; text-align: center; font-weight: 600; font-size: 13px; color: #B8C2BB; }
.cal-grid div { height: 30px; display: flex; align-items: center; justify-content: center; }
.cal-grid .cur { color: var(--ink); }
.cal-day-today { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-weight: 800; }
.cal-day-sel { position: relative; width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.cal-day-sel .dot { position: absolute; bottom: 4px; width: 4px; height: 4px; border-radius: 50%; background: #fff; }
.cal-evt { position: relative; }
.cal-evt .dot { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--mixed); }
.cal-detail { background: #fff; border-radius: 18px; padding: 14px 15px; box-shadow: 0 4px 16px -6px rgba(20,40,26,.10); margin-top: 4px; }
.cal-detail .row { display: flex; align-items: center; gap: 10px; margin-top: 9px; }
.cal-detail .ico { width: 34px; height: 34px; border-radius: 11px; background: #ECF7EC; display: flex; align-items: center; justify-content: center; }
.cal-detail .ico .ms { font-size: 19px; color: var(--bio); }
.cal-detail .row b { font-weight: 800; font-size: 16px; }

/* ---- Settings screen ---- */
.set-title { font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.search-box { display: flex; align-items: center; gap: 8px; border: 1.5px solid #E1E6DD; border-radius: 11px; padding: 9px 11px; }
.search-box .ms { font-size: 18px; color: var(--inactive); }
.search-box .val { flex: 1; font-weight: 600; font-size: 13.5px; }
.search-box .ms.x { color: #B8C2BB; }
.waste-row {
  display: flex; align-items: center; gap: 10px; padding: 8px 11px;
  border-radius: 12px; border: 1.5px solid var(--rb); background: var(--rbg);
}
.waste-row .ms { font-size: 20px; color: var(--rc); }
.waste-row b { flex: 1; font-weight: 700; font-size: 13.5px; }
.waste-row .check { width: 21px; height: 21px; border-radius: 7px; background: var(--rc); display: flex; align-items: center; justify-content: center; }
.waste-row .check .ms { font-size: 14px; color: #fff; }
.save-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--green); border-radius: 14px; padding: 13px; margin-top: 3px; box-shadow: 0 10px 24px -8px rgba(79,179,64,.65); }
.save-btn .ms { font-size: 19px; color: #fff; }
.save-btn span { font-weight: 800; font-size: 15px; color: #fff; }

/* ============================================================
   DOWNLOAD + QR
   ============================================================ */
.download-card {
  max-width: 980px; margin: 0 auto; background: var(--ink);
  border-radius: 32px; padding: 52px 48px; position: relative; overflow: hidden;
}
.download-card .watermark { position: absolute; right: -40px; bottom: -60px; font-size: 300px; color: rgba(79,179,64,.14); line-height: 1; pointer-events: none; }
.download-inner { position: relative; display: flex; gap: 44px; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.download-text { flex: 1; min-width: 300px; }
.download-text h2 { font-weight: 800; font-size: 38px; line-height: 1.1; color: #fff; letter-spacing: -.03em; text-wrap: balance; }
.download-text p { font-weight: 500; font-size: 16.5px; line-height: 1.55; color: rgba(255,255,255,.78); margin-top: 14px; max-width: 420px; }
.download-text .store-row { margin-top: 26px; }
.qr-row { display: flex; gap: 18px; }
.qr { background: #fff; border-radius: 20px; padding: 16px; text-align: center; width: 148px; }
.qr canvas, .qr img { width: 116px; height: 116px; display: block; border-radius: 6px; }
.qr b { display: block; font-weight: 700; font-size: 12px; margin-top: 10px; }
.qr small { display: block; font-weight: 500; font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #F7F9F6; border: 1.5px solid var(--border); border-radius: 18px; overflow: hidden; }
.faq-q { display: flex; align-items: center; gap: 14px; padding: 18px 22px; cursor: pointer; width: 100%; background: none; border: 0; text-align: left; font-family: inherit; }
.faq-q span:not(.ms) { flex: 1; font-weight: 700; font-size: 17px; color: var(--ink); }
.faq-q .ms { font-size: 24px; color: var(--green); flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 22px 20px; font-weight: 500; font-size: 15.5px; line-height: 1.62; color: var(--ink-2); text-wrap: pretty; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-note { text-align: center; margin-top: 30px; font-weight: 500; font-size: 15px; color: var(--ink-2); }
.faq-note a { color: var(--green-dark); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); padding: 56px 0 36px; }
.footer-top { display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; }
.footer-brand { max-width: 300px; }
.footer-brand .logo span, .footer-brand .logo span b { color: #fff; }
.footer-brand .logo span b { color: var(--green); }
.footer-brand p { font-weight: 500; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.6); margin-top: 16px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-weight: 700; font-size: 13px; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }
.footer-col nav { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; }
.footer-col a { font-weight: 600; font-size: 15px; color: rgba(255,255,255,.82); }
.footer-col a:hover { color: #fff; }
.footer-rule { height: 1px; background: rgba(255,255,255,.1); margin-top: 40px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.footer-bottom span { font-weight: 500; font-size: 13.5px; color: rgba(255,255,255,.5); }

/* ============================================================
   LEGAL / DONATE PAGES
   ============================================================ */
.page-hero { background: var(--bg); padding: 56px 0; border-bottom: 1px solid #ECEFEA; }
.page-hero .kicker { font-weight: 600; font-size: 13px; color: var(--muted); }
.page-hero h1 { font-weight: 800; font-size: 44px; line-height: 1.08; letter-spacing: -.03em; margin-top: 8px; }
.page-hero .updated { font-weight: 500; font-size: 15px; color: var(--muted); margin-top: 12px; }

.prose { max-width: 760px; margin: 0 auto; padding: 50px 24px 80px; }
.prose > p { font-weight: 500; font-size: 17px; line-height: 1.65; color: #3a463e; text-wrap: pretty; }
.prose h2 { font-weight: 800; font-size: 23px; margin-top: 40px; letter-spacing: -.01em; }
.prose h2:first-of-type { margin-top: 0; }
.info-card { display: flex; gap: 14px; align-items: flex-start; background: #F7F9F6; border: 1.5px solid var(--border); border-radius: 16px; padding: 18px; }
.info-card .ms { font-size: 24px; color: var(--green); flex-shrink: 0; }
.info-card b { font-weight: 700; font-size: 16px; }
.info-card p { font-weight: 500; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin-top: 3px; }
.card-stack { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.checklist { margin: 16px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-weight: 500; font-size: 16px; line-height: 1.5; color: #3a463e; }
.checklist .ms { font-size: 21px; color: var(--green); flex-shrink: 0; }
.contact-box { display: flex; gap: 14px; align-items: center; background: var(--green-light); border-radius: 18px; padding: 20px 22px; margin-top: 36px; }
.contact-box .ms { font-size: 26px; color: var(--green-dark); }
.contact-box b { font-weight: 700; font-size: 16px; }
.contact-box p { font-weight: 500; font-size: 14px; color: var(--green-dark); margin-top: 2px; }
.contact-box a { font-weight: 700; }

/* Donate */
.donate-hero { background: linear-gradient(180deg, var(--bg), #fff); padding: 70px 0 60px; text-align: center; }
.donate-hero .mark { width: 72px; height: 72px; border-radius: 20px; background: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 14px 30px -10px rgba(79,179,64,.6); }
.donate-hero .mark .ms { font-size: 38px; color: #fff; }
.donate-hero h1 { font-weight: 800; font-size: 46px; line-height: 1.08; letter-spacing: -.03em; margin-top: 24px; text-wrap: balance; }
.donate-hero p { font-weight: 500; font-size: 18px; line-height: 1.6; color: var(--ink-2); margin-top: 18px; text-wrap: pretty; }
.btn-coffee { display: inline-flex; align-items: center; gap: 11px; background: var(--green); color: #fff; padding: 16px 28px; border-radius: 16px; font-weight: 800; font-size: 18px; margin-top: 30px; box-shadow: 0 12px 28px -10px rgba(79,179,64,.7); }
.btn-coffee .ms { font-size: 24px; }
.donate-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.donate-card { background: #F7F9F6; border: 1.5px solid var(--border); border-radius: 22px; padding: 28px; text-align: center; }
.donate-card .ico { width: 50px; height: 50px; border-radius: 15px; background: var(--green-tint); display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.donate-card .ico .ms { font-size: 26px; color: var(--green); }
.donate-card h3 { font-weight: 800; font-size: 18px; margin-top: 16px; }
.donate-card p { font-weight: 500; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin-top: 7px; }
.donate-note { font-weight: 600; font-size: 17px; line-height: 1.6; color: var(--ink); max-width: 560px; margin: 44px auto 0; text-align: center; }
.donate-note b { color: var(--green); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav a:not(.btn-download) { display: none; }
  .hero h1 { font-size: 40px; }
  .feature-grid, .steps, .donate-cards { grid-template-columns: 1fr; }
  .section-head h2, .download-text h2 { font-size: 30px; }
  .download-card { padding: 36px 26px; }
  .page-hero h1, .donate-hero h1 { font-size: 34px; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 34px; }
}
