/* Selitve Hitro — glavni stil */
:root {
  --navy: oklch(28% 0.1 255);
  --navy-2: oklch(30% 0.1 255);
  --navy-dark: oklch(20% 0.015 260);
  --navy-soft: oklch(95% 0.02 255);
  --navy-soft-2: oklch(93% 0.02 255);
  --navy-soft-3: oklch(96% 0.015 255);
  --orange: oklch(60% 0.17 55);
  --orange-2: oklch(55% 0.17 55);
  --orange-3: oklch(66% 0.17 55);
  --orange-4: oklch(68% 0.17 55);
  --orange-ink: #241300;
  --bg: oklch(98% 0.004 90);
  --bg-soft: oklch(96% 0.006 90);
  --border: oklch(89% 0.01 90);
  --border-2: oklch(85% 0.01 90);
  --border-3: oklch(88% 0.01 90);
  --border-4: oklch(91% 0.01 90);
  --ink: oklch(22% 0.01 260);
  --muted: oklch(46% 0.01 260);
  --muted-2: oklch(42% 0.01 260);
  --muted-3: oklch(50% 0.01 260);
  --muted-4: oklch(38% 0.01 260);
  --muted-5: oklch(40% 0.01 260);
  --muted-6: oklch(30% 0.01 260);
  --muted-7: oklch(35% 0.01 260);
  --muted-8: oklch(32% 0.01 260);
  --green-bg: oklch(93% 0.05 145);
  --green-ink: oklch(45% 0.13 145);
  --red: oklch(50% 0.15 25);
  --disabled-bg: oklch(90% 0.005 260);
  --disabled-ink: oklch(60% 0.01 260);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Work Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
}
a { color: var(--navy-2); }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo { text-decoration: none; display: flex; flex-direction: column; }
.logo-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 23px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-title span { color: var(--orange); }
.logo-sub {
  font-size: 11px;
  color: var(--muted-3);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted-5);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}
.site-nav a.active {
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--orange);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-phone {
  text-decoration: none;
  background: var(--navy-soft);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 8px;
  white-space: nowrap;
}
.btn-cart {
  text-decoration: none;
  position: relative;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 8px;
  white-space: nowrap;
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--orange);
  color: var(--orange-ink);
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-badge.show { display: flex; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-secondary { background: #fff; border: 1px solid var(--border-2); color: var(--navy); }
.btn-accent { background: var(--orange); color: var(--orange-ink); }
.btn-dark { background: var(--orange-ink); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, oklch(97% 0.01 255) 0%, var(--bg) 60%);
  padding: 72px 0 56px;
}
.hero-inner { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.hero-copy { flex: 1 1 420px; min-width: 0; }
.hero-badge {
  display: inline-block;
  background: var(--navy-soft);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--orange-2); }
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted-2);
  max-width: 520px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--navy); }
.stat-label { font-size: 13px; color: var(--muted-3); }
.hero-media { flex: 1 1 360px; min-width: 280px; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border-3);
}

/* ---------- Generic sections ---------- */
.section { padding: 64px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-tinted { background: var(--bg-soft); }
.section-navy { background: var(--navy); }
.section-orange { background: var(--orange); }
.section-head { text-align: center; margin-bottom: 40px; }
.section-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 10px; }
.section-title.small { font-size: clamp(24px, 3vw, 32px); }
.section-lead { color: var(--muted); font-size: 16px; max-width: 560px; margin: 0 auto; }

.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.gap-24 { gap: 24px; }
.grid.min-220 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid.min-260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.min-200 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid.min-280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.min-230 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* Service cards (home) */
.card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  display: block;
}
.card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--navy-soft); margin-bottom: 16px; }
.card-title { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.card-text { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* Feature list (why choose us) */
.feature-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--navy); }
.feature-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Steps */
.step { padding: 22px; border-radius: 14px; background: var(--bg-soft); }
.step-num { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: var(--orange); margin-bottom: 10px; }
.step-title { font-weight: 700; margin-bottom: 6px; }
.step-text { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* CTA banner */
.cta-banner { padding: 56px 0; }
.cta-banner .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-banner-title { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: #fff; margin-bottom: 8px; }
.cta-banner-text { color: oklch(85% 0.02 255); font-size: 15px; }
.cta-strip { padding: 48px 0; }
.cta-strip .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-strip-title { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--orange-ink); }

/* Testimonials */
.testimonial { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.stars { color: var(--orange); font-size: 14px; margin-bottom: 10px; }
.quote { font-size: 14.5px; line-height: 1.6; color: var(--muted-6); margin-bottom: 14px; }
.author { font-weight: 700; font-size: 14px; }
.author-role { font-size: 12.5px; color: var(--muted-3); }

/* Blog cards */
.blog-card { text-decoration: none; color: inherit; background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: block; }
.blog-thumb { height: 160px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 18px; }
.blog-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.blog-excerpt { font-size: 13.5px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: oklch(88% 0.01 260); }
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 56px 32px 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px;
}
.footer-brand { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: #fff; margin-bottom: 10px; }
.footer-brand span { color: var(--orange-3); }
.footer-desc { font-size: 14px; line-height: 1.7; color: oklch(75% 0.01 260); max-width: 260px; }
.footer-contact { margin-top: 16px; font-size: 14px; line-height: 1.8; }
.footer-contact a { color: #fff; text-decoration: none; }
.footer-contact .addr { color: oklch(70% 0.01 260); }
.footer-heading { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a { color: oklch(80% 0.01 260); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid oklch(30% 0.01 260); max-width: 1280px; margin: 0 auto; padding: 18px 32px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: oklch(62% 0.01 260);
}

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: var(--navy); padding: 56px 0 48px; }
.page-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 42px); color: #fff; margin: 0 0 12px; }
.page-hero p { color: oklch(88% 0.02 255); font-size: 16px; max-width: 640px; margin: 0; }

/* ---------- Storitve (services detail) ---------- */
.service-row { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.service-row.reverse { flex-direction: row-reverse; }
.service-copy { flex: 1 1 380px; min-width: 0; }
.service-tag { font-weight: 700; font-size: 13px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.service-copy h2 { font-family: var(--font-head); font-weight: 800; font-size: 26px; margin: 0 0 14px; }
.service-copy p { font-size: 15px; line-height: 1.7; color: var(--muted-5); margin: 0 0 16px; }
.service-copy ul { font-size: 14.5px; color: var(--muted-4); line-height: 1.8; padding-left: 20px; margin: 0; }
.service-media { flex: 1 1 300px; min-width: 260px; }
.service-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px; border: 1px solid var(--border-3);
}

/* ---------- Pricing ---------- */
.price-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.price-card.featured { background: var(--navy); position: relative; }
.badge-featured {
  position: absolute; top: -12px; right: 24px; background: var(--orange); color: var(--orange-ink);
  font-weight: 800; font-size: 11.5px; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.04em;
}
.price-plan { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin-bottom: 6px; }
.price-card.featured .price-plan { color: #fff; }
.price-sub { color: var(--muted); font-size: 13.5px; margin-bottom: 20px; }
.price-card.featured .price-sub { color: oklch(80% 0.02 255); }
.price-value { font-family: var(--font-head); font-weight: 800; font-size: 32px; margin-bottom: 4px; }
.price-card.featured .price-value { color: #fff; }
.price-meta { font-size: 12.5px; color: var(--muted-3); margin-bottom: 22px; }
.price-card.featured .price-meta { color: oklch(78% 0.02 255); }
.price-list { font-size: 14px; color: var(--muted-4); line-height: 1.8; padding-left: 20px; margin: 0 0 24px; }
.price-card.featured .price-list { color: oklch(92% 0.01 255); }
.price-cta {
  display: block; text-align: center; text-decoration: none; background: var(--navy-soft); color: var(--navy);
  font-weight: 700; font-size: 14px; padding: 12px; border-radius: 10px;
}
.price-card.featured .price-cta { background: var(--orange); color: var(--orange-ink); }
.price-note { text-align: center; font-size: 13px; color: var(--muted-3); margin-top: 20px; }

.rate-table { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.rate-row { display: grid; grid-template-columns: 2fr 1fr; padding: 16px 22px; font-size: 14.5px; }
.rate-row.head { background: var(--bg-soft); font-weight: 700; font-size: 13.5px; }
.rate-row + .rate-row { border-top: 1px solid var(--border-4); }

.info-card { background: var(--bg-soft); border-radius: 12px; padding: 20px; font-size: 14px; line-height: 1.6; color: var(--muted-4); }
.info-card strong { color: oklch(20% 0.01 260); }

/* ---------- O nas ---------- */
.values-title { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.team-member { text-align: center; }
.team-photo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; background: var(--navy-soft-2); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; font-size: 15px; }
.team-role { font-size: 13px; color: var(--muted-3); }
.stats-strip { background: var(--bg-soft); padding: 52px 0; }
.stats-strip .grid { text-align: center; }
.stats-strip .stat-num { font-size: 30px; }
.stats-strip .stat-label { font-size: 13.5px; }

/* ---------- Kontakt ---------- */
.contact-grid { display: flex; gap: 44px; flex-wrap: wrap; }
.contact-info { flex: 1 1 320px; min-width: 280px; display: flex; flex-direction: column; gap: 22px; }
.info-box { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.info-box-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.info-box a { font-size: 15px; text-decoration: none; }
.map-embed { aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; border: 1px solid var(--border-3); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.contact-form-card { flex: 1 1 420px; min-width: 0; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.form-title { font-family: var(--font-head); font-weight: 800; font-size: 21px; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.form-row > * { flex: 1; min-width: 160px; }
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  padding: 12px 14px; border: 1px solid var(--border-2); border-radius: 9px; font-size: 14.5px; font-family: var(--font-body); background: #fff; width: 100%;
}
textarea { resize: vertical; }
.btn-submit {
  border: none; font-weight: 700; font-size: 15px; padding: 13px; border-radius: 9px; cursor: pointer;
  font-family: var(--font-body); background: var(--navy); color: #fff; width: 100%;
}
.btn-submit:disabled, .btn-submit[disabled] { background: var(--disabled-bg); color: var(--disabled-ink); cursor: not-allowed; }
.form-fine { font-size: 12px; color: var(--muted-3); }
.form-fine a { font-size: 12px; }
.form-success { text-align: center; padding: 40px 10px; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green-bg); color: var(--green-ink); font-size: 26px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-weight: 800;
}
.form-success-title { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.form-success-text { font-size: 14.5px; color: var(--muted); }
.form-error { font-size: 13.5px; color: var(--red); display: none; }
.form-error.show { display: block; }
.hidden { display: none !important; }

/* ---------- Trgovina (shop) ---------- */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.shop-count { font-size: 14px; color: var(--muted); }
.btn-open-cart { border: 1px solid var(--border-2); background: #fff; font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 9px; cursor: pointer; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; }
.product-media { height: 130px; border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-title { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; margin-bottom: 6px; }
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; flex: 1; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-family: var(--font-head); font-weight: 800; font-size: 17px; }
.btn-add { background: var(--navy); color: #fff; border: none; font-weight: 700; font-size: 13px; padding: 9px 14px; border-radius: 8px; cursor: pointer; }
.shop-promo {
  margin-top: 56px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px;
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: space-between;
}
.shop-promo-title { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.shop-promo-text { font-size: 14px; color: var(--muted); }

/* Cart drawer */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(20,20,25,0.45); z-index: 90; display: none;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%); background: #fff; z-index: 91;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .25s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-header-title { font-family: var(--font-head); font-weight: 800; font-size: 18px; }
.cart-close { border: none; background: none; font-size: 22px; cursor: pointer; color: var(--muted-5); }
.cart-body { flex: 1; overflow: auto; padding: 16px 24px; }
.cart-line { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border-4); }
.cart-line-media { width: 52px; height: 52px; flex: none; border-radius: 8px; overflow: hidden; }
.cart-line-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-name { font-weight: 700; font-size: 14px; }
.cart-line-price { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 24px; height: 24px; border-radius: 6px; border: 1px solid var(--border-2); background: #fff; cursor: pointer; }
.qty-val { font-size: 13px; font-weight: 600; min-width: 16px; text-align: center; }
.remove-btn { margin-left: auto; border: none; background: none; color: var(--red); font-size: 12.5px; cursor: pointer; }
.cart-line-total { font-weight: 700; font-size: 14px; white-space: nowrap; }
.cart-empty { padding: 40px 0; text-align: center; color: var(--muted-3); font-size: 14px; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 16px; }
.checkout-body { flex: 1; overflow: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.checkout-note { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.checkout-footer { padding: 16px 24px 20px; border-top: 1px solid var(--border); display: flex; gap: 10px; }
.btn-back { flex: 1; background: #fff; border: 1px solid var(--border-2); font-weight: 700; font-size: 14px; padding: 12px; border-radius: 9px; cursor: pointer; }
.btn-submit-order { flex: 2; border: none; font-weight: 700; font-size: 14.5px; padding: 13px; border-radius: 9px; cursor: pointer; background: var(--orange); color: var(--orange-ink); }
.btn-submit-order:disabled { background: var(--disabled-bg); color: var(--disabled-ink); cursor: not-allowed; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 22px 26px; }
.faq-q { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.faq-a { font-size: 14.5px; color: var(--muted-2); line-height: 1.65; }

/* ---------- Blog article ---------- */
.article-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.article-meta { font-size: 12.5px; color: var(--muted-3); margin-bottom: 8px; }
.article-card h2 { font-family: var(--font-head); font-weight: 800; font-size: 24px; margin: 0 0 16px; }
.article-card p { font-size: 15px; line-height: 1.75; color: var(--muted-7); }

/* ---------- Legal pages ---------- */
.legal-updated { font-size: 13.5px; color: var(--muted-3); margin: 0 0 32px; }
.legal-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px; font-size: 14.5px; line-height: 1.9; color: var(--muted-6); }
.legal-blocks { display: flex; flex-direction: column; gap: 26px; font-size: 14.5px; line-height: 1.75; color: var(--muted-8); }
.legal-blocks h2 { font-family: var(--font-head); font-size: 18px; margin: 0 0 8px; }

/* ---------- Cookie consent ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  padding: 20px 22px; z-index: 200; display: none;
}
.cookie-banner.show { display: block; }
.cookie-text { font-size: 13.5px; line-height: 1.6; color: var(--muted-6); margin-bottom: 14px; }
.cookie-text a { font-size: 13.5px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { border: none; font-weight: 700; font-size: 13.5px; padding: 10px 16px; border-radius: 8px; cursor: pointer; font-family: var(--font-body); }
.cookie-btn.accept { background: var(--navy); color: #fff; }
.cookie-btn.reject { background: var(--bg-soft); color: var(--ink); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; flex-wrap: wrap; gap: 10px; }
.link-arrow { text-decoration: none; font-weight: 700; font-size: 14px; }

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 44px 0; }
}
