/* Čistoća Plus — shared stylesheet */

:root {
  --color-bg: oklch(0.985 0.004 240);
  --color-surface: #fff;
  --color-border: oklch(0.9 0.012 240);
  --color-ink: oklch(0.22 0.02 250);
  --color-muted: oklch(0.48 0.02 250);
  --color-muted-2: oklch(0.65 0.01 240);
  --color-primary: oklch(0.55 0.13 200);
  --color-primary-dark: oklch(0.4 0.1 200);
  --color-accent: oklch(0.62 0.13 150);
  --color-accent-soft: oklch(0.94 0.03 150);
  --color-tint: oklch(0.94 0.03 200);
  --color-panel: oklch(0.965 0.012 210);
  --color-footer: oklch(0.22 0.02 250);
  --color-danger: oklch(0.55 0.15 25);
  --font-heading: 'Sora', 'Segoe UI', ui-sans-serif, system-ui, -apple-system, Roboto, sans-serif;
  --font-body: 'Karla', 'Segoe UI', ui-sans-serif, system-ui, -apple-system, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-ink);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

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

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

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  padding: 15px 28px;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-primary { color: #fff; background: var(--color-primary); }
.btn-secondary { color: var(--color-ink); background: #fff; border: 1px solid var(--color-border); }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pill {
  display: inline-block;
  background: var(--color-accent-soft);
  color: oklch(0.4 0.1 150);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.99 0.003 240);
  border-bottom: 1px solid var(--color-border);
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 17px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-title { font-family: var(--font-heading); font-weight: 800; font-size: 19px; color: var(--color-ink); }
.brand-title span { color: var(--color-primary); }
.brand-sub { font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--color-muted); }

.main-nav { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.main-nav a {
  text-decoration: none; font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: var(--color-ink); padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.main-nav a.active { font-weight: 700; color: var(--color-primary); border-bottom-color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.phone-link { text-decoration: none; font-weight: 700; font-size: 14px; color: var(--color-ink); white-space: nowrap; }
.cart-link {
  position: relative; text-decoration: none; font-weight: 600; font-size: 14px; color: var(--color-ink);
  padding: 8px 12px; border: 1px solid var(--color-border); border-radius: 8px; white-space: nowrap;
}
.cart-count {
  display: inline-block; min-width: 18px; padding: 0 4px; height: 18px; line-height: 18px; border-radius: 9px;
  background: var(--color-primary); color: #fff; font-size: 11px; font-weight: 700; text-align: center; margin-left: 4px;
}
.nav-cta { text-decoration: none; font-weight: 700; font-size: 14px; color: #fff; background: var(--color-primary); padding: 10px 18px; border-radius: 8px; white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--color-border); border-radius: 8px;
  width: 42px; height: 42px; cursor: pointer; font-size: 18px; color: var(--color-ink);
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    display: none;
    width: 100%; order: 3; flex-direction: column; align-items: flex-start; gap: 14px;
    padding-top: 12px; border-top: 1px solid var(--color-border); margin-top: 12px;
  }
  .main-nav.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  max-width: 1200px; margin: 0 auto; padding: 72px 24px 56px;
  display: grid; grid-template-columns: minmax(0,1.1fr) minmax(280px,0.9fr); gap: 48px; align-items: center;
}
.hero h1 {
  font-family: var(--font-heading); font-weight: 800; font-size: 48px; line-height: 1.12;
  color: var(--color-ink); margin: 0 0 20px;
}
.hero p.lead { font-size: 17px; line-height: 1.65; color: var(--color-muted); max-width: 520px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: var(--color-ink); }
.hero-stat-label { font-size: 13px; color: var(--color-muted); }

.hero-media { position: relative; }
.photo-box {
  width: 100%; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 50px -20px oklch(0.3 0.05 220 / 0.35);
}
.photo-box img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo { aspect-ratio: 4/5; }
.badge-float {
  position: absolute; bottom: -18px; left: -18px; background: #fff; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.15); animation: floatSoft 5s ease-in-out infinite; max-width: 220px;
}
.badge-float strong { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 15px; color: var(--color-ink); }
.badge-float span { font-size: 12px; color: var(--color-muted); }
@keyframes floatSoft { 0%{transform:translateY(0)} 50%{transform:translateY(-8px)} 100%{transform:translateY(0)} }

/* ---------- Trust bar ---------- */
.trust-bar { background: #fff; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 20px 24px; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-around; }
.trust-bar-inner span { font-weight: 700; font-size: 14px; color: var(--color-muted); }

/* ---------- Sections ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 88px 24px 40px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2 { font-family: var(--font-heading); font-weight: 800; font-size: 34px; color: var(--color-ink); margin: 10px 0 14px; }
.section-head p { font-size: 16px; color: var(--color-muted); line-height: 1.6; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 28px;
}
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--color-tint);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: var(--color-ink); margin: 0 0 8px; }
.card p { font-size: 14px; color: var(--color-muted); line-height: 1.6; margin: 0 0 14px; }
.card-link { font-size: 14px; font-weight: 700; color: var(--color-primary); text-decoration: none; }

/* ---------- How it works ---------- */
.steps-section { background: var(--color-panel); padding: 88px 24px; margin-top: 40px; }
.steps-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 40px; }
.steps-heading h2 { font-family: var(--font-heading); font-weight: 800; font-size: 30px; color: var(--color-ink); margin: 10px 0 0; }
.steps-grid { grid-column: span 2; display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 24px; }
.step-num { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: var(--color-accent); margin-bottom: 10px; }
.step-title { font-weight: 700; font-size: 15px; color: var(--color-ink); margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--color-muted); line-height: 1.6; }
@media (max-width: 760px) { .steps-grid { grid-column: span 1; } }

/* ---------- Testimonials ---------- */
.testi-card { background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 26px; }
.testi-stars { color: var(--color-accent); font-size: 15px; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: oklch(0.3 0.02 250); line-height: 1.65; margin: 0 0 16px; }
.testi-author { font-weight: 700; font-size: 13px; color: var(--color-ink); }

/* ---------- CTA banner ---------- */
.cta-banner { max-width: 1160px; margin: 56px auto 88px; padding: 0 24px; }
.cta-banner-inner {
  background: linear-gradient(120deg, var(--color-primary), oklch(0.5 0.13 180));
  border-radius: 24px; padding: 56px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.cta-banner-inner h2 { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: #fff; margin: 0 0 8px; }
.cta-banner-inner p { font-size: 15px; color: oklch(0.95 0.01 200); margin: 0; max-width: 420px; }
.cta-banner-btn {
  text-decoration: none; font-weight: 700; font-size: 15px; color: var(--color-primary-dark);
  background: #fff; padding: 16px 30px; border-radius: 10px; white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--color-footer); color: oklch(0.9 0.01 240); padding: 56px 24px 24px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-mark {
  width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 15px;
}
.footer-title { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: #fff; }
.footer-desc { font-size: 14px; line-height: 1.6; color: oklch(0.75 0.01 240); max-width: 280px; }
.footer-col-title { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: oklch(0.75 0.01 240); font-size: 14px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: oklch(0.75 0.01 240); }
.footer-contact a { text-decoration: none; color: oklch(0.75 0.01 240); }
.footer-bottom {
  max-width: 1200px; margin: 36px auto 0; padding-top: 24px; border-top: 1px solid oklch(0.35 0.02 250);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: oklch(0.65 0.01 240); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { text-decoration: none; color: oklch(0.65 0.01 240); font-size: 13px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; background: var(--color-footer); color: #fff;
  padding: 18px 24px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner p { font-size: 14px; color: oklch(0.9 0.01 240); max-width: 640px; margin: 0; }
.cookie-banner a { color: oklch(0.7 0.1 200); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-more {
  text-decoration: none; font-size: 13px; font-weight: 600; color: oklch(0.85 0.01 240);
  padding: 9px 16px; border: 1px solid oklch(0.45 0.02 250); border-radius: 8px;
}
.cookie-accept {
  font-size: 13px; font-weight: 700; color: #fff; background: var(--color-primary); border: none;
  padding: 9px 18px; border-radius: 8px; cursor: pointer;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { max-width: 1200px; margin: 0 auto; padding: 64px 24px 32px; text-align: center; }
.page-hero h1 { font-family: var(--font-heading); font-weight: 800; font-size: 40px; color: var(--color-ink); margin: 12px 0 14px; }
.page-hero p { font-size: 16px; color: var(--color-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* ---------- Service detail rows ---------- */
.service-rows { max-width: 1200px; margin: 0 auto; padding: 24px 24px 88px; display: flex; flex-direction: column; gap: 28px; }
.service-row {
  background: #fff; border: 1px solid var(--color-border); border-radius: 20px; padding: 40px;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(240px,0.7fr); gap: 32px;
}
.service-row .icon { font-size: 26px; margin-bottom: 10px; }
.service-row h2 { font-family: var(--font-heading); font-weight: 700; font-size: 24px; color: var(--color-ink); margin: 0 0 10px; }
.service-row p { font-size: 15px; color: var(--color-muted); line-height: 1.65; margin: 0 0 16px; }
.service-row .includes-label { font-weight: 700; font-size: 13px; color: var(--color-ink); margin-bottom: 8px; }
.service-row ul { margin: 0 0 16px; padding-left: 20px; font-size: 14px; color: var(--color-muted); line-height: 1.8; }
.price-box { background: var(--color-panel); border-radius: 14px; padding: 24px; align-self: start; }
.price-box .from { font-size: 13px; color: var(--color-muted); margin-bottom: 4px; }
.price-box .amount { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: var(--color-ink); margin-bottom: 16px; }
.price-box a { display: block; text-align: center; text-decoration: none; font-weight: 700; font-size: 14px; color: #fff; background: var(--color-primary); padding: 12px; border-radius: 8px; }
@media (max-width: 700px) { .service-row { grid-template-columns: 1fr; } }

.panel-cta { max-width: 1160px; margin: 0 auto 88px; padding: 0 24px; }
.panel-cta-inner { background: var(--color-panel); border-radius: 20px; padding: 44px; text-align: center; }
.panel-cta-inner h2 { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: var(--color-ink); margin: 0 0 10px; }
.panel-cta-inner p { font-size: 15px; color: var(--color-muted); margin: 0 0 22px; }

/* ---------- Shop / products ---------- */
.shop-section { max-width: 1200px; margin: 0 auto; padding: 24px 24px 8px; }
.shop-section h2 { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--color-ink); margin: 24px 0 20px; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; }
.shop-card { background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.shop-card .icon { font-size: 22px; }
.shop-card .photo { width: 100%; height: 120px; border-radius: 10px; overflow: hidden; }
.shop-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.shop-card .name { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--color-ink); }
.shop-card .desc { font-size: 13px; color: var(--color-muted); line-height: 1.5; flex: 1; }
.shop-card .row { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.shop-card .price { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--color-ink); }
.add-btn { font-weight: 700; font-size: 13px; color: #fff; background: var(--color-primary); border: none; padding: 9px 16px; border-radius: 8px; cursor: pointer; }

.toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--color-footer); color: #fff; padding: 14px 22px;
  border-radius: 10px; font-size: 14px; font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 200;
  opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.toast.visible { opacity: 1; transform: translateY(0); }

/* ---------- Cart page ---------- */
.cart-section { max-width: 900px; margin: 0 auto; padding: 64px 24px 88px; }
.cart-section h1 { font-family: var(--font-heading); font-weight: 800; font-size: 32px; color: var(--color-ink); margin: 0 0 32px; }
.cart-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.cart-item {
  background: #fff; border: 1px solid var(--color-border); border-radius: 14px; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.cart-item .info { min-width: 200px; }
.cart-item .info .name { font-weight: 700; font-size: 15px; color: var(--color-ink); }
.cart-item .info .unit { font-size: 13px; color: var(--color-muted); }
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--color-border); background: #fff; cursor: pointer; font-weight: 700; }
.qty-val { min-width: 20px; text-align: center; font-weight: 700; }
.line-total { font-family: var(--font-heading); font-weight: 800; font-size: 16px; color: var(--color-ink); min-width: 70px; text-align: right; }
.remove-btn { border: none; background: none; color: var(--color-danger); font-weight: 700; font-size: 13px; cursor: pointer; }
.cart-total-row { display: flex; justify-content: flex-end; margin-bottom: 32px; }
.cart-total-box { background: var(--color-panel); border-radius: 14px; padding: 22px 28px; text-align: right; min-width: 220px; }
.cart-total-box .label { font-size: 13px; color: var(--color-muted); margin-bottom: 4px; }
.cart-total-box .amount { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: var(--color-ink); }
.checkout-actions { text-align: right; }
.checkout-panel { background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 32px; }
.checkout-panel h2 { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--color-ink); margin: 0 0 20px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; margin-bottom: 20px; }
.field {
  padding: 12px 14px; border: 1px solid var(--color-border); border-radius: 8px; font-size: 14px; font-family: var(--font-body); width: 100%;
}
textarea.field { resize: vertical; }
.pay-label { font-weight: 700; font-size: 13px; color: var(--color-ink); margin-bottom: 10px; }
.pay-options { display: flex; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.pay-options label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: oklch(0.3 0.02 250); }
.success-box { background: var(--color-accent-soft); border-radius: 16px; padding: 36px; text-align: center; }
.success-box h2 { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: oklch(0.3 0.08 150); margin: 0 0 10px; }
.success-box p { font-size: 14px; color: oklch(0.35 0.05 150); margin: 0 0 6px; }
.empty-cart { text-align: center; padding: 64px 24px; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; }
.empty-cart p { font-size: 16px; color: var(--color-muted); margin: 0 0 20px; }

/* ---------- Contact page ---------- */
.contact-section { max-width: 1200px; margin: 0 auto; padding: 64px 24px 88px; display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,0.75fr); gap: 48px; }
.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.consent-label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--color-muted); }
.consent-label a { color: var(--color-primary); }
.contact-info-box { background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.contact-info-box .item-title { font-weight: 700; font-size: 13px; color: var(--color-ink); margin-bottom: 2px; }
.contact-info-box .item-val { font-size: 14px; color: var(--color-muted); }
.contact-info-box a.item-val { color: var(--color-primary); text-decoration: none; }
.map-photo { width: 100%; height: 220px; border-radius: 16px; overflow: hidden; }
.map-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) { .contact-section { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-section { max-width: 800px; margin: 0 auto; padding: 64px 24px 88px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--color-border); border-radius: 14px; overflow: hidden; }
.faq-question {
  padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; width: 100%; text-align: left; font-family: var(--font-body);
}
.faq-question .q { font-weight: 700; font-size: 15px; color: var(--color-ink); }
.faq-question .icon { font-size: 18px; color: var(--color-primary); flex-shrink: 0; }
.faq-answer { padding: 0 22px 20px; font-size: 14px; color: var(--color-muted); line-height: 1.65; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ---------- About page ---------- */
.about-hero { max-width: 1200px; margin: 0 auto; padding: 64px 24px 8px; display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,0.8fr); gap: 48px; align-items: center; }
.about-hero h1 { font-family: var(--font-heading); font-weight: 800; font-size: 38px; color: var(--color-ink); margin: 12px 0 18px; }
.about-hero p { font-size: 16px; color: var(--color-muted); line-height: 1.65; margin: 0 0 14px; }
.about-photo { width: 100%; aspect-ratio: 1/1; border-radius: 20px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.stats-band { background: var(--color-panel); margin-top: 56px; padding: 64px 24px; }
.stats-band-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 24px; text-align: center; }
.stats-band-inner .num { font-family: var(--font-heading); font-weight: 800; font-size: 30px; color: var(--color-primary); }
.stats-band-inner .label { font-size: 13px; color: var(--color-muted); }
.values-section { max-width: 1200px; margin: 0 auto; padding: 80px 24px 8px; }
.team-section { max-width: 1200px; margin: 0 auto; padding: 80px 24px 88px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 24px; }
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1/1; border-radius: 16px; overflow: hidden; margin-bottom: 12px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; font-size: 15px; color: var(--color-ink); }
.team-role { font-size: 13px; color: var(--color-muted); }
@media (max-width: 800px) { .about-hero { grid-template-columns: 1fr; } }

/* ---------- Blog / savjeti ---------- */
.blog-grid { max-width: 1200px; margin: 0 auto; padding: 32px 24px 88px; display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 26px; display: flex; flex-direction: column; }
.blog-tag { font-size: 12px; font-weight: 700; color: var(--color-primary); text-transform: uppercase; margin-bottom: 10px; }
.blog-card h2 { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: var(--color-ink); margin: 0 0 10px; }
.blog-card p { font-size: 14px; color: var(--color-muted); line-height: 1.65; flex: 1; }

/* ---------- Legal pages ---------- */
.legal-section { max-width: 760px; margin: 0 auto; padding: 64px 24px 88px; }
.legal-section h1 { font-family: var(--font-heading); font-weight: 800; font-size: 34px; color: var(--color-ink); margin: 0 0 8px; }
.legal-updated { font-size: 13px; color: var(--color-muted-2); margin: 0 0 32px; }
.legal-body { display: flex; flex-direction: column; gap: 28px; font-size: 15px; color: oklch(0.3 0.02 250); line-height: 1.75; }
.legal-body h2 { font-family: var(--font-heading); font-weight: 700; font-size: 19px; color: var(--color-ink); margin: 0 0 10px; }
.legal-body a { color: var(--color-primary); }
.legal-card { background: #fff; border: 1px solid var(--color-border); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: oklch(0.3 0.02 250); line-height: 1.8; }
.legal-note { font-size: 13px; color: var(--color-muted-2); line-height: 1.7; margin-top: 24px; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .hero h1 { font-size: 36px; }
  .steps-inner { grid-template-columns: 1fr; }
}
