/* ═══════════════════════════════════════
   TRADECONCEPT V2 — Global design system
   Canonical reference: sluzby-v2.html
   ═══════════════════════════════════════ */

:root {
  --font-h: 'Manrope', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --font-mono: 'DM Sans', sans-serif;

  /* Brand blue */
  --blue: #2563EB;
  --blue-dark: #1E40AF;
  --blue-hover: #3B82F6;
  --blue-50: #EFF6FF;
  --blue-100: #DBEAFE;

  /* Navy system */
  --navy-950: #060C18;
  --navy-900: #0B1426;
  --navy-800: #0F1A30;
  --navy-700: #152241;
  --navy-600: #1C2D56;

  /* Accents */
  --teal: #0E7490;
  --teal-50: #ECFEFF;
  --teal-light: #06B6D4;
  --warn: #B91C1C;
  --warn-50: #FEF2F2;

  /* Slate */
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;

  /* Surface tones */
  --surface: #F7F9FC;
  --surface-warm: #FAFAF6;
  --surface-blue: #F2F6FD;
  --surface-blue-dk: #E8F0FC;

  /* Radius */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-blue: 0 4px 14px -2px rgba(37,99,235,.25);
}

/* ─── Reset & base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-b); color: var(--slate-600); line-height: 1.6; background: var(--surface); }
h1, h2, h3, h4, h5 { font-family: var(--font-h); color: var(--slate-900); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--blue); color: #fff; }
.w { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.noise::after { content: ''; position: absolute; inset: 0; opacity: .035; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); background-size: 200px; }

/* ─── Buttons ─── */
.b { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-b); font-weight: 600; font-size: .875rem; padding: .625rem 1.5rem; border-radius: 8px; border: 1px solid transparent; cursor: pointer; transition: all .2s; white-space: nowrap; text-decoration: none; }
.b:active { transform: scale(.97); }
.b-p { background: var(--blue); color: #fff !important; border-color: var(--blue); box-shadow: var(--shadow-blue); }
.b-p:hover { background: var(--blue-hover); border-color: var(--blue-hover); box-shadow: 0 6px 20px -2px rgba(37,99,235,.35); transform: translateY(-1px); }
.b-w { background: #fff; color: var(--slate-900) !important; border-color: #fff; }
.b-w:hover { background: var(--surface); }
.b-o { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); backdrop-filter: blur(4px); }
.b-o:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); }
.b-gh { background: transparent; color: var(--slate-700); border-color: var(--slate-200); }
.b-gh:hover { background: var(--slate-50); border-color: var(--slate-300); }
.b-lg { padding: .75rem 1.75rem; font-size: .9375rem; }

/* ─── Tag + section marker ─── */
.tag { font-family: var(--font-mono); font-weight: 500; font-size: .6875rem; text-transform: uppercase; letter-spacing: .18em; color: var(--blue); display: inline-flex; align-items: center; gap: .625rem; margin-bottom: 1rem; }
.tag::before { content: '—'; color: var(--blue); font-weight: 600; margin-right: -.125rem; }
.sec-marker { font-family: var(--font-mono); font-size: .8125rem; color: var(--blue); letter-spacing: .2em; margin-bottom: 1.25rem; display: inline-block; font-weight: 600; text-transform: uppercase; }
.sec-marker::after { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--blue); vertical-align: middle; margin-left: 1rem; opacity: .5; }

/* ═══════ HEADER ═══════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  height: 76px; transition: background .3s, border-color .3s, box-shadow .3s;
}
header.hd-scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--slate-200);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
header.hd-scrolled .ni > a { color: var(--slate-500); }
header.hd-scrolled .ni > a:hover { color: var(--slate-900); }
header.hd-scrolled .hd-logo img { filter: none; }
header.hd-scrolled .ni-active > a { color: var(--blue) !important; }
.hd { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.hd-logo img { height: 56px; filter: brightness(0) invert(1); transition: filter .3s; }
.hd-nav { display: flex; align-items: center; gap: 0; }
.ni { position: relative; }
.ni > a { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.6); transition: color .15s; padding: 0 .9rem; height: 76px; display: flex; align-items: center; gap: 4px; }
.ni > a:hover { color: #fff; }
.ni-active > a { color: #fff !important; }
.ni-active > a::after { content: ''; position: absolute; bottom: 22px; left: .9rem; right: .9rem; height: 2px; background: var(--blue-hover); border-radius: 1px; }
header.hd-scrolled .ni-active > a::after { background: var(--blue); }
.ni-chev { width: 10px; height: 10px; opacity: .4; transition: transform .2s; }
.ni:hover .ni-chev { transform: rotate(180deg); }
.mm { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px); background: var(--navy-800); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,.4); padding: 1rem; min-width: 480px; opacity: 0; visibility: hidden; pointer-events: none; transition: all .2s ease; z-index: 200; }
.mm--sm { min-width: 340px; }
.ni:hover .mm { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mm-g { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem; }
.mm-g1 { grid-template-columns: 1fr; }
.mm-i { display: flex; align-items: flex-start; gap: .6rem; padding: .55rem .7rem; border-radius: 8px; transition: background .12s; text-decoration: none; color: inherit; }
.mm-i:hover { background: rgba(255,255,255,.05); }
.mm-ic { width: 30px; height: 30px; min-width: 30px; border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-top: 1px; background: rgba(37,99,235,.15); color: var(--blue-hover); }
.mm-t { font-weight: 600; font-size: .8rem; color: #fff; }
.mm-d { font-size: .675rem; color: rgba(255,255,255,.4); margin: 0; }
.mm-hr { height: 1px; background: rgba(255,255,255,.06); margin: .4rem 0; grid-column: 1/-1; }
.mm-i--featured { background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.25); grid-column: 1/-1; }
.mm-i--featured:hover { background: rgba(37,99,235,.18); border-color: rgba(37,99,235,.4); }
.mm-i--featured .mm-ic { background: rgba(37,99,235,.3); color: #fff; }
.mm-i--featured .mm-t { color: var(--blue-hover); }
.mm-i--featured .mm-d { color: rgba(255,255,255,.55); }
.mm-ft { grid-column: 1/-1; padding: .55rem .7rem; border-radius: 8px; background: rgba(37,99,235,.1); display: flex; align-items: center; justify-content: space-between; }
.mm-ft p { font-size: .75rem; font-weight: 600; color: var(--blue-hover); margin: 0; }
.mm-ft a { font-size: .7rem; font-weight: 600; color: var(--blue-hover); }
/* ═══════ HAMBURGER BUTTON (mobile only) ═══════ */
.hd-burger {
  display: none; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: 210;
  padding: 0; flex-shrink: 0;
}
.hd-burger__line {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  position: absolute; left: 10px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s, background .3s;
}
.hd-burger__line:nth-child(1) { top: 14px; }
.hd-burger__line:nth-child(2) { top: 21px; }
.hd-burger__line:nth-child(3) { top: 28px; }
header.hd-scrolled .hd-burger__line { background: var(--slate-800); }

/* Morph to X */
.hd-burger.is-open .hd-burger__line:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hd-burger.is-open .hd-burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hd-burger.is-open .hd-burger__line:nth-child(3) { top: 21px; transform: rotate(-45deg); }
/* When overlay is open, always white lines */
.hd-burger.is-open .hd-burger__line { background: #fff; }

/* ═══════ FULLSCREEN MOBILE OVERLAY ═══════ */
.mob-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy-950);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity .4s cubic-bezier(.4,0,.2,1), visibility .4s;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mob-overlay::before {
  content: ''; position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(37,99,235,.15), transparent 50%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(6,182,212,.1), transparent 50%);
  pointer-events: none; z-index: 0;
}
.mob-overlay.is-open { opacity: 1; visibility: visible; }

/* When overlay is open, lock body scroll and force header above overlay */
body.mob-open { overflow: hidden; }
body.mob-open header { background: transparent !important; border-bottom-color: transparent !important; box-shadow: none !important; z-index: 210; }
body.mob-open .hd-logo img { filter: brightness(0) invert(1) !important; }

.mob-overlay__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  min-height: 100vh; min-height: 100dvh;
  padding: 100px 2rem 2rem;
}

/* Nav links — large editorial typography */
.mob-overlay__nav {
  flex: 1; display: flex; flex-direction: column;
  gap: 0; padding-bottom: 2rem;
}
.mob-nav-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
  transform: translateY(30px); opacity: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .5s cubic-bezier(.16,1,.3,1);
}
.mob-overlay.is-open .mob-nav-item {
  transform: translateY(0); opacity: 1;
}
/* Stagger delays */
.mob-overlay.is-open .mob-nav-item:nth-child(1) { transition-delay: .08s; }
.mob-overlay.is-open .mob-nav-item:nth-child(2) { transition-delay: .14s; }
.mob-overlay.is-open .mob-nav-item:nth-child(3) { transition-delay: .20s; }
.mob-overlay.is-open .mob-nav-item:nth-child(4) { transition-delay: .26s; }
.mob-overlay.is-open .mob-nav-item:nth-child(5) { transition-delay: .32s; }
.mob-overlay.is-open .mob-nav-item:nth-child(6) { transition-delay: .38s; }

.mob-nav-item > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-h); font-weight: 700;
  font-size: 1.75rem; color: #fff;
  letter-spacing: -.02em; line-height: 1.15;
  text-decoration: none;
  transition: color .2s;
}
.mob-nav-item > a:hover { color: var(--blue-hover); }
.mob-nav-item > a .mob-nav-arrow {
  width: 24px; height: 24px; color: rgba(255,255,255,.25);
  transition: transform .2s, color .2s;
}
.mob-nav-item > a:hover .mob-nav-arrow { color: var(--blue-hover); transform: translateX(4px); }

/* Služby expandable sub-nav */
.mob-nav-item--expand > a { cursor: pointer; }
.mob-nav-item--expand > a .mob-nav-chevron {
  width: 20px; height: 20px; color: rgba(255,255,255,.3);
  transition: transform .35s cubic-bezier(.4,0,.2,1), color .2s;
}
.mob-nav-item--expand.is-expanded > a .mob-nav-chevron { transform: rotate(180deg); color: var(--blue-hover); }
.mob-nav-item--expand > a:hover .mob-nav-chevron { color: var(--blue-hover); }

.mob-subnav {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 0 0 .5rem;
}
.mob-nav-item--expand.is-expanded .mob-subnav {
  max-height: 500px; padding-bottom: 1rem;
}
.mob-subnav a {
  display: flex; align-items: center; gap: .875rem;
  padding: .75rem .5rem; border-radius: 10px;
  text-decoration: none; color: rgba(255,255,255,.7);
  font-size: 1rem; font-weight: 500;
  transition: background .15s, color .15s;
}
.mob-subnav a:hover { background: rgba(255,255,255,.05); color: #fff; }
.mob-subnav__ic {
  width: 36px; height: 36px; min-width: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,.12); color: var(--blue-hover);
}
.mob-subnav__label { font-weight: 600; font-size: .9375rem; color: #fff; }
.mob-subnav__desc { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: .125rem; }

/* Bottom section — contact + CTA */
.mob-overlay__bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(20px); opacity: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1) .4s, opacity .5s cubic-bezier(.16,1,.3,1) .4s;
}
.mob-overlay.is-open .mob-overlay__bottom { transform: translateY(0); opacity: 1; }

.mob-overlay__contact {
  display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem;
}
.mob-overlay__contact a {
  display: inline-flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.6); font-size: .9375rem; font-weight: 500;
  text-decoration: none; transition: color .2s;
}
.mob-overlay__contact a:hover { color: #fff; }
.mob-overlay__contact svg { color: var(--blue-hover); flex-shrink: 0; }

.mob-overlay__cta { width: 100%; }
.mob-overlay__cta .b { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }

@media (max-width: 900px) {
  .hd-nav { display: none; }
  .hd-burger { display: block; }
}

/* ═══════ PAGE HERO (dark navy gradient + decorative) ═══════ */
.page-hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
}
.page-hero::before {
  content: ''; position: absolute;
  top: -30%; right: -25%;
  width: 80%; height: 150%;
  background: radial-gradient(ellipse, rgba(37,99,235,.18) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: -60%; left: -20%;
  width: 70%; height: 140%;
  background: radial-gradient(ellipse, rgba(6,182,212,.12) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 820px; }
.breadcrumb { font-family: var(--font-mono); font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: .06em; margin-bottom: 1.5rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.7); transition: color .15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,.3); }
.breadcrumb-current { color: #fff; font-weight: 500; }
.page-hero h1 { color: #fff; font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1.08; letter-spacing: -.03em; margin-bottom: 1.25rem; font-weight: 800; }
.page-hero h1 em { font-style: normal; color: var(--blue-hover); }
.page-hero__lead { font-size: 1.125rem; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 620px; margin-bottom: 2rem; }
.page-hero__acts { display: flex; gap: .75rem; flex-wrap: wrap; }
.page-hero__proof { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.page-hero__proof-item { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; color: rgba(255,255,255,.7); font-weight: 500; }
.page-hero__proof-item svg { color: var(--blue-hover); flex-shrink: 0; }

/* Hero decorative rings */
.hero-deco { position: absolute; top: 50%; right: 8%; transform: translateY(-50%); width: 320px; height: 320px; opacity: .5; pointer-events: none; z-index: 0; }
.hero-deco__circle { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-deco__c1 { width: 100%; height: 100%; }
.hero-deco__c2 { width: 70%; height: 70%; border-color: rgba(255,255,255,.12); }
.hero-deco__c3 { width: 40%; height: 40%; border-color: rgba(37,99,235,.4); }
.hero-deco__dot { position: absolute; width: 8px; height: 8px; background: var(--blue-hover); border-radius: 50%; box-shadow: 0 0 16px var(--blue); top: 50%; left: 50%; transform: translate(-50%, -50%); }
@media (max-width: 900px) { .hero-deco { display: none; } }
@media (max-width: 768px) { .page-hero { padding: 6.5rem 0 3rem; } }

/* Hero 2-column layout with right-side card */
.hero-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.hero-card__title {
  font-family: var(--font-h); font-weight: 700; font-size: 1.125rem;
  color: #fff; margin-bottom: 1.25rem; letter-spacing: -.015em;
}
.hero-card__items { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.hero-card__item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9375rem; color: rgba(255,255,255,.85); font-weight: 500;
}
.hero-card__item svg {
  flex-shrink: 0; color: var(--blue-hover);
  width: 18px; height: 18px; padding: 3px;
  background: rgba(37,99,235,.15); border-radius: 50%;
  border: 1px solid rgba(37,99,235,.25); box-sizing: content-box;
}
.hero-card__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-card__stat-n {
  font-family: var(--font-h); font-weight: 800; font-size: 1.75rem;
  color: #fff; line-height: 1; letter-spacing: -.03em;
}
.hero-card__stat-l {
  font-size: .6875rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 500;
  margin-top: .3rem;
}
/* Contact variant */
.hero-card__contact { display: flex; flex-direction: column; gap: 1rem; }
.hero-card__contact-item {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; color: #fff; transition: color .2s;
  padding: .75rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  transition: background .2s, border-color .2s;
}
.hero-card__contact-item:hover { background: rgba(255,255,255,.07); border-color: rgba(37,99,235,.3); }
.hero-card__contact-ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.3);
  color: var(--blue-hover);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card__contact-label {
  font-size: .625rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
  display: block; margin-bottom: .15rem;
}
.hero-card__contact-val {
  font-family: var(--font-h); font-weight: 700; font-size: 1.125rem;
  color: #fff; letter-spacing: -.01em;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; }
}

/* ═══════ TRUST STRIP (light bridge dark → light) ═══════ */
.trust-strip {
  background: linear-gradient(180deg, var(--surface-blue-dk) 0%, var(--surface-blue) 100%);
  border-bottom: 1px solid var(--slate-200);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 20% 50%, rgba(37,99,235,.06), transparent 60%),
    radial-gradient(ellipse 40% 100% at 85% 50%, rgba(6,182,212,.04), transparent 60%);
  pointer-events: none;
}
.trust-strip__row {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1.75rem;
  position: relative; z-index: 1;
}
.trust-strip__label {
  font-family: var(--font-mono); font-size: .6875rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue); font-weight: 700;
  white-space: nowrap; display: inline-flex; align-items: center; gap: .5rem;
}
.trust-strip__label::before { content: ''; width: 20px; height: 1px; background: var(--blue); }
.trust-strip__items { display: flex; align-items: center; gap: 1.25rem; flex-wrap: nowrap; justify-content: center; }
.trust-strip__item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--slate-800); font-weight: 500; white-space: nowrap; }
.trust-strip__item svg {
  color: var(--blue); flex-shrink: 0;
  width: 14px; height: 14px; padding: 2px;
  background: #fff; border-radius: 50%; border: 1px solid var(--blue-100);
  box-sizing: content-box;
}
.trust-strip__link {
  font-family: var(--font-mono); font-size: .75rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate-700); font-weight: 700;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: color .2s, gap .2s; white-space: nowrap;
}
.trust-strip__link:hover { color: var(--blue); gap: .75rem; }
@media (max-width: 900px) {
  .trust-strip__row { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .trust-strip__label::before { display: none; }
  .trust-strip__items { justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
}

/* ═══════ SECTIONS ═══════ */
.sec { padding: 4.5rem 0; position: relative; }
.sec-light { background: #fff; }
.sec-surface { background: var(--surface); }
.sec-warm { background: var(--surface-warm); }
.sec-tint { background: var(--surface-blue); }
.sec-dark { position: relative; background: var(--navy-900); color: rgba(255,255,255,.7); overflow: hidden; }
.sec-dark h2, .sec-dark h3, .sec-dark h4 { color: #fff; }
.sec-dark .sec-hd p { color: rgba(255,255,255,.7); }
.sec-dark .sec-marker { color: var(--blue-hover); }
.sec-dark .sec-marker::after { background: var(--blue-hover); opacity: .5; }
.sec-hd { margin-bottom: 2.5rem; }
.sec-eyebrow {
  font-family: var(--font-mono); font-size: .8125rem;
  color: var(--slate-500); letter-spacing: .15em;
  text-transform: uppercase; font-weight: 600;
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: .75rem;
}
.sec-eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.sec-dark .sec-eyebrow { color: var(--blue-hover); }
.sec-dark .sec-eyebrow__dot { background: var(--blue-hover); box-shadow: 0 0 12px var(--blue-hover); }
.sec-hd--c { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.sec-hd p { font-size: 1.0625rem; color: var(--slate-500); margin-top: .625rem; max-width: 600px; line-height: 1.55; }
.sec-hd--c p { margin-left: auto; margin-right: auto; }

/* ═══════ FEATURED PROMO CARD (dark blue gradient with orbital icon) ═══════ */
.featured-svc,
.featured-promo {
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--blue-dark) 60%, var(--navy-600) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  position: relative; overflow: hidden; color: #fff;
  margin-bottom: 0;
}
.featured-svc::before,
.featured-promo::before {
  content: ''; position: absolute;
  top: -40%; right: -15%;
  width: 65%; height: 160%;
  background: radial-gradient(ellipse, rgba(6,182,212,.25), transparent 55%);
  pointer-events: none;
}
.featured-svc::after,
.featured-promo::after {
  content: ''; position: absolute;
  top: 0; right: 0; bottom: 0; width: 45%;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(6,182,212,.12), transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(37,99,235,.15), transparent 45%);
  pointer-events: none;
}
.featured-svc > *,
.featured-promo > * { position: relative; z-index: 1; }
.featured-svc__grid,
.featured-promo__grid { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.featured-svc__tag,
.featured-promo__tag {
  font-family: var(--font-mono); font-size: .75rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .75rem;
}
.featured-svc__tag::before,
.featured-promo__tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--teal-light); box-shadow: 0 0 12px var(--teal-light); }
.featured-svc h2,
.featured-promo h2 { color: #fff; font-size: clamp(1.875rem, 4vw, 2.5rem); line-height: 1.1; letter-spacing: -.025em; margin-bottom: 1rem; max-width: 680px; }
.featured-svc p,
.featured-promo p { font-size: 1.0625rem; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 620px; margin-bottom: 2rem; }
.featured-svc__includes,
.featured-promo__includes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .875rem 1.5rem; margin-bottom: 2rem; max-width: 720px;
  padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.12);
}
.featured-svc__includes-item,
.featured-promo__item {
  display: flex; align-items: center; gap: .625rem;
  font-size: .9375rem; color: rgba(255,255,255,.92); font-weight: 500;
}
.featured-svc__includes-item svg,
.featured-promo__item svg {
  color: var(--teal-light); flex-shrink: 0;
  width: 18px; height: 18px; padding: 3px;
  background: rgba(6,182,212,.15); border-radius: 50%;
  border: 1px solid rgba(6,182,212,.25); box-sizing: content-box;
}
.featured-svc__acts,
.featured-promo__acts { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Orbital icon visual (featured card right column) */
.featured-svc__icon-big,
.featured-promo__icon-big {
  width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.featured-svc__icon-big::before,
.featured-svc__icon-big::after,
.featured-promo__icon-big::before,
.featured-promo__icon-big::after {
  content: ''; position: absolute;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.08);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.featured-svc__icon-big::before,
.featured-promo__icon-big::before { width: 100%; height: 100%; }
.featured-svc__icon-big::after,
.featured-promo__icon-big::after { width: 75%; height: 75%; border-color: rgba(255,255,255,.14); }
.featured-svc__icon-big-ring,
.featured-promo__icon-ring {
  position: absolute; width: 50%; height: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid rgba(37,99,235,.5);
  background: radial-gradient(ellipse, rgba(37,99,235,.15), transparent 70%);
}
.featured-svc__icon-big-dot,
.featured-promo__icon-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--blue-hover); box-shadow: 0 0 16px var(--blue-hover); }
.featured-svc__icon-big-dot--1,
.featured-promo__icon-dot--1 { top: 8%; right: 30%; }
.featured-svc__icon-big-dot--2,
.featured-promo__icon-dot--2 { bottom: 15%; left: 10%; background: var(--teal-light); box-shadow: 0 0 16px var(--teal-light); }
.featured-svc__icon-big svg,
.featured-promo__icon-big svg {
  position: relative; z-index: 2;
  width: 140px; height: 140px;
  color: rgba(255,255,255,.95);
  filter: drop-shadow(0 0 40px rgba(37,99,235,.6));
}
@media (max-width: 900px) {
  .featured-svc,
  .featured-promo { padding: 2.5rem 2rem; }
  .featured-svc__grid,
  .featured-promo__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .featured-svc__icon-big,
  .featured-promo__icon-big { width: 180px; height: 180px; justify-self: start; }
  .featured-svc__icon-big svg,
  .featured-promo__icon-big svg { width: 80px; height: 80px; }
  .featured-svc__includes,
  .featured-promo__includes { grid-template-columns: 1fr 1fr; }
}

/* ═══════ MODULES — asymmetric bento grid (sluzby-v2) ═══════ */
.modules-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto); gap: 1rem;
}
.mod {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  text-decoration: none; color: inherit;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
}
.mod:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -12px rgba(37,99,235,.15); border-color: var(--blue-100); }
.mod__num { font-family: var(--font-h); font-weight: 800; font-size: 3rem; line-height: .85; letter-spacing: -.04em; color: var(--blue); margin-bottom: 1rem; display: flex; align-items: baseline; gap: .5rem; }
.mod__num-suffix { font-family: var(--font-mono); font-size: .6875rem; color: var(--slate-400); letter-spacing: .15em; text-transform: uppercase; font-weight: 500; }
.mod__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-50); color: var(--blue); display: flex; align-items: center; justify-content: center; position: absolute; top: 2rem; right: 2rem; }
.mod__icon--teal { background: var(--teal-50); color: var(--teal); }
.mod__title { font-family: var(--font-h); font-weight: 700; font-size: 1.375rem; line-height: 1.2; color: var(--slate-900); margin-bottom: .75rem; letter-spacing: -.02em; max-width: calc(100% - 60px); }
.mod__desc { font-size: .9375rem; color: var(--slate-600); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.mod__ideal { font-size: .8125rem; color: var(--slate-600); padding-top: 1rem; border-top: 1px solid var(--slate-200); line-height: 1.5; }
.mod__ideal strong { color: var(--blue); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-right: .5rem; font-size: .6875rem; }

.mod--xl { grid-column: span 3; grid-row: span 2; background: linear-gradient(145deg, #fff 0%, var(--surface-blue) 100%); border-color: var(--blue-100); padding: 2.5rem; }
.mod--l  { grid-column: span 3; }
.mod--m  { grid-column: span 2; }
.mod--s  { grid-column: span 2; }
.mod--xl .mod__num { font-size: 5rem; }
.mod--xl .mod__icon { width: 56px; height: 56px; top: 2.5rem; right: 2.5rem; }
.mod--xl .mod__title { font-size: 1.875rem; max-width: calc(100% - 80px); }
.mod--xl .mod__desc { font-size: 1.0625rem; line-height: 1.65; }
.mod--xl .mod__ideal { font-size: .875rem; }
.mod--xl::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 150%; background: radial-gradient(ellipse, rgba(37,99,235,.06), transparent 60%); pointer-events: none; }
@media (max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .mod--xl, .mod--l { grid-column: span 2; grid-row: auto; }
  .mod--xl .mod__num { font-size: 3.5rem; }
  .mod--xl .mod__title { font-size: 1.375rem; }
}
@media (max-width: 640px) {
  .modules-grid { grid-template-columns: 1fr; }
  .mod--m, .mod--s, .mod--xl, .mod--l { grid-column: span 1; }
}

/* ═══════ WHY US — Dark editorial differentiators (glass cards) ═══════ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.why-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.why-card:hover { background: rgba(255,255,255,.06); border-color: rgba(37,99,235,.3); }
.why-card__num { font-family: var(--font-h); font-weight: 800; font-size: 4rem; line-height: .9; color: var(--blue-hover); letter-spacing: -.04em; margin-bottom: 1.25rem; text-shadow: 0 0 40px rgba(37,99,235,.4); }
.why-card__num-unit { font-family: var(--font-h); font-size: 1.125rem; color: rgba(255,255,255,.55); font-weight: 600; margin-left: .5rem; letter-spacing: 0; vertical-align: baseline; }
.why-card__title { font-family: var(--font-h); font-size: 1.5rem; color: #fff; font-weight: 700; letter-spacing: -.02em; margin-bottom: .75rem; line-height: 1.2; }
.why-card__desc { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.65; max-width: 460px; }
/* Why-cards: asymmetric 1 hero + supporting layout */
.why-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.why-card--hero { grid-column: 1; grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; }
.why-card--hero .why-card__num { font-size: 5.5rem; }
@media (max-width: 900px) { .why-cards { grid-template-columns: 1fr 1fr; } .why-card--hero { grid-column: 1 / -1; grid-row: auto; } .why-card--hero .why-card__num { font-size: 4rem; } }
@media (max-width: 768px) { .why-grid, .why-cards { grid-template-columns: 1fr; } .why-card--hero .why-card__num { font-size: 3.5rem; } }

/* ═══════ PROCESS — glass cards on dark (validated pattern) ═══════ */
.proc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step {
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  transition: all .25s; text-align: left;
}
.step:hover { transform: translateY(-3px); background: rgba(255,255,255,.06); border-color: rgba(37,99,235,.4); box-shadow: 0 12px 32px -8px rgba(37,99,235,.3); }
.step-n { font-family: var(--font-h); font-weight: 800; font-size: 2.125rem; color: var(--blue-hover); line-height: 1; letter-spacing: -.03em; display: block; margin-bottom: 1rem; text-shadow: 0 0 24px rgba(37,99,235,.4); }
.step-t { font-family: var(--font-h); font-weight: 700; font-size: 1.0625rem; color: #fff; margin: 0 0 .5rem; letter-spacing: -.015em; }
.step-d { font-size: .875rem; color: rgba(255,255,255,.65); margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .proc { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .proc { grid-template-columns: 1fr; } }

/* ═══════ CASE STUDIES — with placeholder support ═══════ */
.cases-hd-meta,
.team-hd-meta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .625rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: .3rem .625rem; border-radius: 999px;
  margin-left: .75rem; vertical-align: middle;
}
.cases-hd-meta::before,
.team-hd-meta::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }

.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; pointer-events: none; }
.case-card {
  background: #fff; border: 2px dashed var(--slate-300);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
  position: relative; overflow: hidden;
}
.case-card__badge {
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--font-mono); font-size: .625rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: .3rem .625rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: .4rem; z-index: 2;
}
.case-card__badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: pulseDot 2s ease-in-out infinite;
}
.case-card__placeholder { filter: blur(2.5px); opacity: .5; user-select: none; pointer-events: none; }
.case-card__tag { font-family: var(--font-mono); font-size: .6875rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--blue); margin-bottom: 1rem; display: inline-flex; align-items: center; gap: .5rem; }
.case-card__tag::before { content: ''; width: 16px; height: 1px; background: var(--blue); }
.case-card__title { font-family: var(--font-h); font-weight: 800; font-size: 1.25rem; color: var(--slate-900); line-height: 1.25; letter-spacing: -.02em; margin-bottom: .75rem; }
.case-card__desc { font-size: .9375rem; color: var(--slate-600); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.case-card__result {
  background: linear-gradient(90deg, var(--blue-50), transparent);
  border-left: 3px solid var(--blue);
  padding: .625rem .875rem; border-radius: 0 6px 6px 0;
  font-size: .875rem; font-weight: 600; color: var(--blue-dark);
  display: flex; align-items: center; gap: .5rem;
}
.case-card__result svg { color: var(--blue); flex-shrink: 0; }
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }

/* ═══════ PRICING — Transparency framework ═══════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.pricing-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(37,99,235,.12); }
.pricing-card--primary { background: linear-gradient(155deg, #fff 0%, var(--surface-blue) 100%); border-color: var(--blue-100); }
.pricing-card__label { font-family: var(--font-mono); font-size: .6875rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--slate-500); margin-bottom: 1rem; }
.pricing-card--primary .pricing-card__label { color: var(--blue); }
.pricing-card__headline { font-family: var(--font-h); font-weight: 800; font-size: 1.5rem; color: var(--slate-900); letter-spacing: -.02em; line-height: 1.2; margin-bottom: .5rem; }
.pricing-card__headline-accent { font-family: var(--font-h); font-weight: 800; font-size: 2.5rem; color: var(--blue); letter-spacing: -.03em; line-height: 1; margin-bottom: .75rem; display: block; }
.pricing-card__desc { font-size: .9375rem; color: var(--slate-600); line-height: 1.55; margin-bottom: 1.25rem; }
.pricing-card__list { display: flex; flex-direction: column; gap: .5rem; margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--slate-100); }
.pricing-card__item { display: flex; align-items: flex-start; gap: .5rem; font-size: .8125rem; color: var(--slate-700); line-height: 1.45; }
.pricing-card__item svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.pricing-note { background: var(--surface); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 1.25rem 1.75rem; font-size: .9375rem; color: var(--slate-700); line-height: 1.55; text-align: center; }
.pricing-note strong { color: var(--slate-900); font-weight: 700; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ═══════ FAQ ═══════ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }
.faq-item { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: var(--blue-100); box-shadow: 0 4px 12px -4px rgba(15,23,42,.06); }
.faq-item summary {
  font-family: var(--font-h); font-weight: 700;
  font-size: 1.0625rem; color: var(--slate-900);
  padding: 1.125rem 1.5rem; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  letter-spacing: -.01em; line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--blue); transition: transform .25s; font-weight: 400; flex-shrink: 0; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--blue); }
.faq-item__body { padding: 0 1.5rem 1.25rem; font-size: .9375rem; color: var(--slate-600); line-height: 1.65; }
.faq-item[open] .faq-item__body { animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════ FORM SPLIT (form + trust signals) ═══════ */
.form-split {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 3rem; background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl); padding: 3rem;
  box-shadow: 0 10px 30px -10px rgba(15,23,42,.08);
  overflow: hidden; position: relative;
}
.form-trust__lead { font-size: 1.125rem; color: var(--slate-700); line-height: 1.6; margin-bottom: 1.75rem; }
.form-trust__stats { display: flex; flex-direction: column; gap: 1.125rem; margin-bottom: 1.75rem; padding: 1.5rem 0; border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); }
.form-trust__stat { display: grid; grid-template-columns: 100px 1fr; gap: 1.25rem; align-items: center; }
.form-trust__stat-n { font-family: var(--font-h); font-weight: 800; font-size: 1.75rem; color: var(--blue); line-height: 1; letter-spacing: -.025em; }
.form-trust__stat-l { font-size: .9375rem; color: var(--slate-700); line-height: 1.45; }
.form-trust__quote { font-size: 1.0625rem; color: var(--slate-700); font-style: italic; line-height: 1.6; border-left: 3px solid var(--blue); padding: .25rem 0 .25rem 1.25rem; }
.form-trust__quote-author { font-size: .8125rem; color: var(--slate-500); margin-top: .625rem; font-style: normal; font-weight: 500; }
.form-trust__note { font-size: .9375rem; color: var(--slate-600); line-height: 1.6; padding: 1rem 1.25rem; background: var(--surface); border-radius: 8px; border-left: 3px solid var(--blue); }

/* Form fields */
.fc-svcs { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--slate-100); }
.fc-chk { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; cursor: pointer; padding: .375rem 0; color: var(--slate-700); }
.fc-chk input { accent-color: var(--blue); width: 16px; height: 16px; }
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; margin-bottom: .875rem; }
.fi { margin-bottom: .875rem; }
.fi label { display: block; font-size: .8125rem; font-weight: 600; color: var(--slate-700); margin-bottom: .375rem; }
.fi input, .fi textarea, .fi select { width: 100%; padding: .7rem .875rem; font-family: var(--font-b); font-size: .9375rem; border: 1px solid var(--slate-200); border-radius: 8px; color: var(--slate-800); transition: border .15s; background: #fff; }
.fi input:focus, .fi textarea:focus, .fi select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.08); }
.fi textarea { resize: vertical; min-height: 90px; }
.fi-gdpr { font-size: .8125rem; color: var(--slate-600); display: flex; align-items: flex-start; gap: .5rem; margin: .75rem 0 1.25rem; line-height: 1.5; }
.fi-gdpr input { accent-color: var(--blue); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.fi-gdpr a { color: var(--blue); text-decoration: underline; }
@media (max-width: 900px) { .form-split { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; } }
@media (max-width: 640px) { .fg, .fc-svcs { grid-template-columns: 1fr; } }

/* ═══════ REGISTRATION / FORM CARD — Confidence Card pattern ═══════ */
.reg-split {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 3rem; align-items: center;
}
.reg-trust__marker {
  font-family: var(--font-mono); font-size: .8125rem;
  color: var(--blue); letter-spacing: .2em; font-weight: 600;
  text-transform: uppercase; margin-bottom: 1.25rem;
  display: inline-flex; align-items: center; gap: .5rem;
}
.reg-trust__marker::before { content: ''; width: 20px; height: 1px; background: var(--blue); }
.reg-trust__title {
  font-family: var(--font-h); font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--slate-900); letter-spacing: -.025em;
  line-height: 1.15; margin-bottom: 1rem;
}
.reg-trust__desc {
  font-size: 1.0625rem; color: var(--slate-600);
  line-height: 1.6; margin-bottom: 2rem;
}
.reg-trust__quote {
  font-size: 1rem; color: var(--slate-700); font-style: italic;
  line-height: 1.55; border-left: 3px solid var(--blue);
  padding: .25rem 0 .25rem 1.25rem;
}
.reg-trust__quote-author {
  font-size: .8125rem; color: var(--slate-500);
  margin-top: .5rem; font-style: normal; font-weight: 500;
}
.reg-card {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 20px 50px -12px rgba(15,23,42,.15);
  border: 1px solid var(--slate-200);
}
.reg-card__head {
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--blue-dark) 100%);
  padding: 2rem; color: #fff;
  position: relative; overflow: hidden;
}
.reg-card__head::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 60%; height: 150%;
  background: radial-gradient(ellipse, rgba(6,182,212,.2), transparent 55%);
  pointer-events: none;
}
.reg-card__head > * { position: relative; z-index: 1; }
.reg-card__head-label {
  font-family: var(--font-mono); font-size: .6875rem;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: .625rem;
  display: inline-flex; align-items: center; gap: .625rem;
}
.reg-card__head-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-light); box-shadow: 0 0 8px var(--teal-light);
}
.reg-card__head-title {
  font-family: var(--font-h); font-weight: 700;
  font-size: 1.375rem; color: #fff; letter-spacing: -.02em; line-height: 1.2;
}
.reg-card__body { background: #fff; padding: 2rem; }
.reg-card__body .fg {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem; margin-bottom: .75rem;
}
.reg-card__body .fi { margin-bottom: 0; }
.reg-card__body .fi label {
  display: block; font-size: .75rem; font-weight: 600;
  color: var(--slate-700); margin-bottom: .3rem;
}
.reg-card__body .fi input,
.reg-card__body .fi select,
.reg-card__body .fi textarea {
  width: 100%; padding: .625rem .75rem;
  font-family: var(--font-b); font-size: .875rem;
  border: 1px solid var(--slate-200); border-radius: 8px;
  color: var(--slate-800); background: var(--surface);
  transition: border .15s;
}
.reg-card__body .fi input:focus,
.reg-card__body .fi select:focus,
.reg-card__body .fi textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08); background: #fff;
}
.reg-card__body .fi input::placeholder,
.reg-card__body .fi textarea::placeholder { color: var(--slate-400); }
.reg-card__body .fi textarea { resize: vertical; min-height: 80px; }
.reg-card__submit {
  margin-top: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.reg-card__submit .b { flex: 1; justify-content: center; }
.reg-card__proof {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; color: var(--slate-500); white-space: nowrap;
}
.reg-card__proof svg { color: var(--blue); flex-shrink: 0; }
.reg-card__foot {
  text-align: center; font-size: .6875rem;
  color: var(--slate-400); margin-top: .75rem;
}
@media (max-width: 900px) { .reg-split { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 640px) {
  .reg-card__body { padding: 1.5rem; }
  .reg-card__head { padding: 1.5rem; }
  .reg-card__body .fg { grid-template-columns: 1fr; }
  .reg-card__submit { flex-direction: column; }
}

/* ═══════ CUSTOMER / TARGET CARDS (velkoobchod "Pro koho jsme") ═══════ */
.target-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.target-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.target-card__icon--blue { background: var(--blue-50); color: var(--blue); }
.target-card__icon--teal { background: var(--teal-50); color: var(--teal); }
.target-card__title { font-family: var(--font-h); font-weight: 700; font-size: .9375rem; color: var(--slate-900); }
.target-card__desc { font-size: .8125rem; color: var(--slate-500); }

/* Sortiment mini cards */
.sort-mini {
  background: var(--surface); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.25rem; text-align: center;
}
.sort-mini__title { font-family: var(--font-h); font-weight: 700; font-size: .9375rem; color: var(--slate-800); margin-bottom: .25rem; }
.sort-mini__count { font-size: .8125rem; color: var(--slate-500); }

/* ═══════ CATALOG CTA (dark gradient card on light section) ═══════ */
.catalog-cta {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--blue-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.35);
}
.catalog-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(37,99,235,.25), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(6,182,212,.18), transparent 45%);
}
.catalog-cta > * { position: relative; z-index: 1; }
.catalog-cta__icon {
  display: inline-flex;
  width: 64px; height: 64px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  color: var(--blue-hover);
  margin-bottom: 1.25rem;
}
.catalog-cta__label {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-hover);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .625rem;
}
.catalog-cta__label::before {
  content: ''; width: 24px; height: 1px; background: var(--blue-hover);
}
.catalog-cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
  font-weight: 800;
}
.catalog-cta > p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 2rem;
}
@media (max-width: 640px) {
  .catalog-cta { padding: 2.5rem 1.5rem; }
}

/* ═══════ CATALOG FORM (inside catalog-cta dark card) ═══════ */
.catalog-form { max-width: 640px; margin: 0 auto; }
.catalog-form__row {
  display: flex; gap: .75rem; align-items: stretch;
}
.catalog-form__row input {
  flex: 1; padding: .75rem 1rem;
  font-family: var(--font-b); font-size: .9375rem;
  border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
  background: rgba(255,255,255,.08); color: #fff;
  transition: border-color .15s, background .15s;
}
.catalog-form__row input::placeholder { color: rgba(255,255,255,.4); }
.catalog-form__row input:focus {
  outline: none; border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
}
.catalog-form__note {
  text-align: center; font-size: .75rem;
  color: rgba(255,255,255,.4); margin-top: .75rem;
}
@media (max-width: 640px) {
  .catalog-form__row { flex-direction: column; }
  .catalog-form__row .b { width: 100%; justify-content: center; }
}

/* ═══════ FOOTER — Editorial Terminal ═══════ */
footer {
  background: var(--navy-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(37,99,235,.12), transparent 50%),
    radial-gradient(ellipse 40% 50% at 90% 0%, rgba(6,182,212,.08), transparent 50%);
  pointer-events: none;
}

/* CTA strip at top of footer */
.ft-cta {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
}
.ft-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.ft-cta__text {
  display: flex; align-items: center; gap: 1.5rem;
}
.ft-cta__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue-hover);
}
.ft-cta__title {
  font-family: var(--font-h); font-weight: 700;
  font-size: 1.375rem; color: #fff;
  letter-spacing: -.02em; line-height: 1.2;
}
.ft-cta__sub {
  font-size: .9375rem; color: rgba(255,255,255,.6);
  margin-top: .25rem;
}
.ft-cta__acts { display: flex; gap: .75rem; flex-shrink: 0; }

/* Stats row */
.ft-stats {
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 1;
  justify-content: center;
}
.ft-stat {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.ft-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.ft-stat__n {
  font-family: var(--font-h); font-weight: 800;
  font-size: 1.75rem; color: #fff;
  letter-spacing: -.03em; line-height: 1;
  margin-bottom: .375rem;
}
.ft-stat__l {
  font-family: var(--font-mono); font-size: .6875rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .15em; font-weight: 500;
}

/* Main links grid */
.ft-main {
  padding: 3rem 0 2.5rem;
  position: relative; z-index: 1;
}
.ft-g {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.ft-brand {
  font-size: .9375rem; color: rgba(255,255,255,.55);
  max-width: 300px; margin-top: 1rem; line-height: 1.6;
}
.ft-contact {
  margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: .625rem;
}
.ft-contact a {
  font-size: .9375rem; color: rgba(255,255,255,.7);
  display: inline-flex; align-items: center; gap: .625rem;
  transition: color .2s; text-decoration: none;
}
.ft-contact a:hover { color: #fff; }
.ft-contact svg { flex-shrink: 0; color: var(--blue-hover); }
.ft-h {
  font-family: var(--font-mono);
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: rgba(255,255,255,.5); margin-bottom: 1.25rem;
  display: inline-flex; align-items: center; gap: .5rem;
}
.ft-h::before {
  content: ''; width: 12px; height: 1px;
  background: var(--blue-hover);
}
.ft-links { display: flex; flex-direction: column; gap: .625rem; }
.ft-links a {
  font-size: .9375rem; color: rgba(255,255,255,.55);
  transition: all .2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0;
}
.ft-links a:hover { color: #fff; gap: .375rem; }
.ft-links a::before {
  content: ''; width: 0; height: 1px;
  background: var(--blue-hover);
  transition: width .2s;
}
.ft-links a:hover::before { width: 12px; }

/* Bottom bar */
.ft-btm {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: rgba(255,255,255,.3);
  position: relative; z-index: 1;
}
.ft-btm a { color: rgba(255,255,255,.4); transition: color .15s; text-decoration: none; }
.ft-btm a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 900px) {
  .ft-g { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ft-cta__inner { flex-direction: column; text-align: center; }
  .ft-cta__text { flex-direction: column; }
  .ft-stats { gap: 1.5rem; flex-wrap: wrap; }
  .ft-stat { padding: 0 1rem; }
}
@media (max-width: 480px) {
  .ft-g { grid-template-columns: 1fr; }
  .ft-stats { flex-direction: column; gap: 1rem; align-items: center; }
  .ft-stat::after { display: none; }
}

/* ═══════ STICKY BOTTOM CTA ═══════ */
.sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: rgba(255,255,255,.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--slate-200); padding: .5rem 0; transform: translateY(100%); transition: transform .3s; }
.sticky-on { transform: translateY(0); }
.sticky-in { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.sticky-t { font-weight: 600; font-size: .8125rem; color: var(--slate-800); }
.sticky-s { font-size: .6875rem; color: var(--slate-400); }
.sticky-a { display: flex; gap: .5rem; }
@media (max-width: 640px) { .sticky-in { flex-direction: column; gap: .4rem; text-align: center; } }

/* ═══════ RESPONSIVE — Global catch-all + mobile polish ═══════ */

/* Catch-all: force inline grid-template-columns to 1 column on mobile */
@media (max-width: 768px) {
  [style*="grid-template-columns: repeat(2"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(5"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(2"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(5"] { grid-template-columns: 1fr !important; }
}

/* Mobile: typography, spacing, general layout */
@media (max-width: 768px) {
  /* Tighter padding */
  .w { padding: 0 1rem; }
  .sec { padding: 3rem 0; }

  /* Hero adjustments */
  .page-hero h1 { font-size: 2rem; letter-spacing: -.02em; }
  .page-hero__lead { font-size: 1rem; }
  .page-hero__acts { flex-direction: column; gap: .5rem; }
  .page-hero__acts .b { width: 100%; justify-content: center; }
  .page-hero__proof { flex-direction: column; gap: .75rem; }

  /* Section headers */
  .sec-hd h2, h2 { font-size: 1.5rem; }
  .sec-hd p { font-size: .9375rem; }
  .sec-hd[style*="display:flex"] { flex-direction: column !important; align-items: flex-start !important; gap: 1rem !important; }

  /* Trust strip compact */
  .trust-strip { padding: 1rem 0; }
  .trust-strip__row { grid-template-columns: 1fr; gap: .75rem; text-align: center; }
  .trust-strip__label { justify-content: center; }
  .trust-strip__label::before { display: none; }
  .trust-strip__items { justify-content: center; gap: 1rem; flex-direction: column; align-items: center; }
  .trust-strip__link { justify-content: center; }

  /* Hero card */
  .hero-card { padding: 1.5rem; }
  .hero-card__title { font-size: 1rem; }
  .hero-card__item { font-size: .875rem; }
  .hero-card__stats { gap: .75rem; }
  .hero-card__stat-n { font-size: 1.5rem; }

  /* Why cards / stats */
  .why-card { padding: 2rem 1.5rem; }
  .why-card__num { font-size: 3rem; }
  .why-card__title { font-size: 1.25rem; }

  /* Reg card form */
  .reg-card__head { padding: 1.5rem; }
  .reg-card__head-title { font-size: 1.125rem; }
  .reg-card__body { padding: 1.5rem; }
  .reg-card__body .fg { grid-template-columns: 1fr; }
  .reg-card__submit { flex-direction: column; }
  .reg-trust__title { font-size: 1.5rem; }

  /* Footer */
  .ft-cta__inner { flex-direction: column; text-align: center; gap: 1.25rem; }
  .ft-cta__text { flex-direction: column; align-items: center; text-align: center; }
  .ft-cta__acts { width: 100%; }
  .ft-cta__acts .b { width: 100%; justify-content: center; }
  .ft-g { grid-template-columns: 1fr; gap: 2rem; }
  .ft-btm { flex-direction: column; text-align: center; gap: .25rem; }

  /* Featured promo card */
  .featured-svc, .featured-promo { padding: 2rem 1.5rem; }
  .featured-svc__grid, .featured-promo__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .featured-svc__icon-big, .featured-promo__icon-big { width: 140px; height: 140px; }
  .featured-svc__icon-big svg, .featured-promo__icon-big svg { width: 64px; height: 64px; }
  .featured-svc__includes, .featured-promo__includes { grid-template-columns: 1fr; }

  /* Modules bento */
  .modules-grid { grid-template-columns: 1fr; }
  .mod--xl, .mod--l, .mod--m, .mod--s { grid-column: span 1; grid-row: auto; }
  .mod__num { font-size: 2.5rem; }
  .mod--xl .mod__num { font-size: 3rem; }
  .mod--xl .mod__title { font-size: 1.25rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-item summary { font-size: .9375rem; padding: 1rem 1.25rem; }

  /* Blog teaser on homepage */
  .blog-teaser { grid-template-columns: 1fr; }
  .blog-teaser-card:nth-child(3) { display: none; }

  /* Comparison table */
  .compare { grid-template-columns: 1fr; }
  .compare__col--good { border-left: none; border-top: 3px solid var(--blue); }
  .compare__col { padding: 2rem 1.5rem; }

  /* Cost example */
  .cost-example__head { flex-direction: column; gap: .75rem; padding: 1.5rem; }
  .cost-example__body { padding: 0 1.5rem 1.5rem; }
  .cost-example__result { grid-template-columns: 1fr; padding: 1.5rem; }

  /* Process timeline */
  .process-row { grid-template-columns: 1fr; }
  .process-row::before { display: none; }

  /* Personas */
  .personas { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════
   PAGE-SPECIFIC STYLES (extracted from inline)
   ═══════════════════════════════════════ */

/* ═══ Page: blog.html ═══ */
/* Page-specific: Blog */

/* Compact hero with integrated search */
.blog-hero {
  padding: 7.5rem 0 3rem;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
}

.blog-hero::before {
  content: ''; position: absolute;
  top: -30%; right: -25%; width: 80%; height: 150%;
  background: radial-gradient(ellipse, rgba(37,99,235,.18) 0%, transparent 55%);
  pointer-events: none;
}

.blog-hero__inner { position: relative; z-index: 1; max-width: 720px; }

.blog-hero h1 { color: #fff; font-size: clamp(2.25rem, 5vw, 3.25rem); line-height: 1.05; letter-spacing: -.03em; margin-bottom: .75rem; font-weight: 800; }

.blog-hero h1 em { font-style: normal; color: var(--blue-hover); }

.blog-hero__lead { font-size: 1.0625rem; color: rgba(255,255,255,.7); line-height: 1.55; max-width: 540px; margin-bottom: 1.75rem; }

/* Search bar in hero */
.blog-search {
  display: flex; gap: .5rem; max-width: 480px;
}

.blog-search__input {
  flex: 1; padding: .75rem 1rem .75rem 2.75rem;
  font-family: var(--font-b); font-size: .9375rem;
  border: 1px solid rgba(255,255,255,.15); border-radius: 10px;
  background: rgba(255,255,255,.06); color: #fff;
  transition: border .2s, background .2s;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,.4)' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: .875rem center;
}

.blog-search__input::placeholder { color: rgba(255,255,255,.4); }

.blog-search__input:focus { outline: none; border-color: var(--blue-hover); background-color: rgba(255,255,255,.1); box-shadow: 0 0 0 3px rgba(37,99,235,.2); }

/* Toolbar: categories + count */
.blog-toolbar {
  background: var(--surface);
  border-bottom: 1px solid var(--slate-200);
  padding: 1.25rem 0;
  position: sticky; top: 76px; z-index: 50;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

.blog-toolbar__row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

.blog-cats { display: flex; gap: .375rem; flex-wrap: wrap; }

.blog-cat {
  font-family: var(--font-mono); font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--slate-600); background: #fff;
  border: 1px solid var(--slate-200); border-radius: 999px;
  padding: .4375rem 1rem; cursor: pointer;
  transition: all .2s; text-decoration: none;
}

.blog-cat:hover { border-color: var(--blue); color: var(--blue); }

.blog-cat--active { background: var(--blue); color: #fff; border-color: var(--blue); }

.blog-count { font-family: var(--font-mono); font-size: .75rem; color: var(--slate-400); letter-spacing: .08em; }

/* Article grid — unified (featured is just first card, larger) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -8px rgba(37,99,235,.12); border-color: var(--blue-100); }

.blog-card__img {
  height: 200px; background: var(--surface-blue);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

.blog-card__img svg { width: 48px; height: 48px; color: var(--blue); opacity: .15; }

/* ═══════ Blog cover artwork (gradient + editorial typography) ═══════ */
.blog-cover {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform .5s ease;
}
.blog-card:hover .blog-cover { transform: scale(1.03); }

/* Subtle ambient depth */
.blog-cover::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 15% 20%, rgba(255,255,255,.12), transparent 55%),
    radial-gradient(ellipse 50% 70% at 85% 80%, rgba(255,255,255,.08), transparent 50%);
}

/* Dot/grid pattern overlay */
.blog-cover__grid {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .12;
  background-image:
    radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 22px 22px;
}

/* Content block */
.blog-cover__content {
  position: relative; z-index: 2;
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: #fff;
  max-width: 90%;
}

.blog-cover__eyebrow {
  font-family: var(--font-mono);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .875rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.blog-cover__eyebrow::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--blue-hover);
}

.blog-cover__title {
  font-family: var(--font-h);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: .5rem;
}

.blog-cover__sub {
  font-family: var(--font-mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

/* Topic variants */
.blog-cover--aql    { background: linear-gradient(135deg, #0f172a 0%, #1e40af 60%, #2563eb 100%); }
.blog-cover--ce     { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #0891b2 100%); }
.blog-cover--cla    { background: linear-gradient(135deg, #020617 0%, #1e293b 50%, #1e40af 100%); }
.blog-cover--china  { background: linear-gradient(135deg, #164e63 0%, #1e40af 50%, #0d9488 100%); }
.blog-cover--rohs   { background: linear-gradient(135deg, #134e4a 0%, #1e40af 65%, #312e81 100%); }

/* Article-hero-like full cover — larger typography */
.article-cover .blog-cover {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
}
.article-cover .blog-cover__content {
  padding: 3rem 3.5rem;
  max-width: 720px;
}
.article-cover .blog-cover__eyebrow {
  font-size: .75rem;
  margin-bottom: 1.5rem;
}
.article-cover .blog-cover__eyebrow::before { width: 28px; }
.article-cover .blog-cover__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: .875rem;
  letter-spacing: -.025em;
}
.article-cover .blog-cover__sub {
  font-size: .8125rem;
}

@media (max-width: 768px) {
  .article-cover .blog-cover { border-radius: var(--radius); }
  .article-cover .blog-cover__content { padding: 2rem 1.5rem; }
}

.blog-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }

.blog-card__cat {
  font-family: var(--font-mono); font-size: .6875rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--blue);
  margin-bottom: .75rem; display: inline-flex; align-items: center; gap: .5rem;
}

.blog-card__cat::before { content: ''; width: 12px; height: 1px; background: var(--blue); }

.blog-card__title {
  font-family: var(--font-h); font-weight: 700;
  font-size: 1.25rem; color: var(--slate-900);
  letter-spacing: -.02em; line-height: 1.25; margin-bottom: .625rem;
}

.blog-card__excerpt {
  font-size: .9375rem; color: var(--slate-600);
  line-height: 1.55; margin-bottom: 1.25rem; flex: 1;
}

.blog-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--slate-100);
}

.blog-card__meta {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-mono); font-size: .6875rem;
  color: var(--slate-400); letter-spacing: .06em;
}

.blog-card__link {
  font-size: .875rem; font-weight: 600; color: var(--blue);
  display: inline-flex; align-items: center; gap: .375rem; transition: gap .2s;
}

.blog-card:hover .blog-card__link { gap: .625rem; }

/* Tags in article card */
.blog-card__tags {
  display: flex; gap: .25rem; flex-wrap: wrap; margin-bottom: 1rem;
}

.blog-tag {
  font-family: var(--font-mono); font-size: .5625rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate-500); background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: .25rem .5rem; border-radius: 4px;
}

/* FEATURED card — first card spans 2 cols */
.blog-card--featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
}

.blog-card--featured .blog-card__img { height: auto; min-height: 320px; }

.blog-card--featured .blog-card__body { padding: 2.5rem; justify-content: center; }

.blog-card--featured .blog-card__title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  letter-spacing: -.025em; line-height: 1.2; margin-bottom: .875rem;
}

.blog-card--featured .blog-card__excerpt { font-size: 1rem; line-height: 1.6; }

.blog-card--featured .blog-card__link { font-size: .9375rem; }

@media (max-width: 1024px) {
  .blog-card--featured { grid-column: span 2; grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__img { min-height: 240px; }
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } .blog-card--featured { grid-column: span 2; } }

@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } .blog-card--featured { grid-column: span 1; grid-template-columns: 1fr; } }

/* Newsletter CTA — reusing featured-promo pattern */
.newsletter {
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--blue-dark) 70%, var(--navy-600) 100%);
  border-radius: var(--radius-xl); padding: 3rem;
  color: #fff; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
  border: 1px solid rgba(37,99,235,.3);
}

.newsletter::before {
  content: ''; position: absolute;
  top: -40%; right: -15%; width: 60%; height: 150%;
  background: radial-gradient(ellipse, rgba(6,182,212,.2), transparent 55%);
  pointer-events: none;
}

.newsletter > * { position: relative; z-index: 1; }

.newsletter h3 { color: #fff; font-size: 1.75rem; letter-spacing: -.025em; margin-bottom: .5rem; line-height: 1.2; }

.newsletter p { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.55; max-width: 520px; }

.newsletter__form { display: flex; gap: .5rem; }

.newsletter__input {
  padding: .7rem 1rem; font-family: var(--font-b); font-size: .9375rem;
  border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
  background: rgba(255,255,255,.08); color: #fff;
  min-width: 280px; transition: border .2s;
}

.newsletter__input::placeholder { color: rgba(255,255,255,.45); }

.newsletter__input:focus { outline: none; border-color: var(--blue-hover); box-shadow: 0 0 0 3px rgba(37,99,235,.25); }

@media (max-width: 900px) {
  .newsletter { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.25rem; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { min-width: 0; width: 100%; }
}


/* ═══ Page: dovoz-z-ciny.html ═══ */
/* Page-specific: Dovoz z Číny (landing page) */

/* Hero with right-side trust card */
.lp-hero-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}

.lp-hero-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.lp-hero-card__title {
  font-family: var(--font-h); font-weight: 700; font-size: 1.125rem;
  color: #fff; margin-bottom: 1.25rem; letter-spacing: -.015em;
}

.lp-hero-card__items { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 1.5rem; }

.lp-hero-card__item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9375rem; color: rgba(255,255,255,.85); font-weight: 500;
}

.lp-hero-card__item svg {
  flex-shrink: 0; color: var(--blue-hover);
  width: 18px; height: 18px; padding: 3px;
  background: rgba(37,99,235,.15); border-radius: 50%;
  border: 1px solid rgba(37,99,235,.25); box-sizing: content-box;
}

.lp-hero-card__stat {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1);
}

.lp-hero-card__stat-n {
  font-family: var(--font-h); font-weight: 800; font-size: 1.75rem;
  color: #fff; line-height: 1; letter-spacing: -.03em;
}

.lp-hero-card__stat-l {
  font-size: .6875rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 500;
  margin-top: .3rem;
}

@media (max-width: 1024px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-card { max-width: 420px; }
}

/* Enhanced form section */
.lp-form-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-blue) 100%);
  padding: 5rem 0;
  position: relative;
}

.lp-form-section::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: .5;
}

/* Comparison table — Alibaba vs TradeConcept */
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 12px -4px rgba(15,23,42,.06);
}

.compare__col { padding: 2.5rem; }

.compare__col--bad { background: #fff; }

.compare__col--good { background: linear-gradient(145deg, #fff 0%, var(--surface-blue) 100%); border-left: 3px solid var(--blue); }

.compare__head {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.75rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--slate-200);
}

.compare__head-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.compare__col--bad .compare__head-icon { background: var(--warn-50); color: var(--warn); }

.compare__col--good .compare__head-icon { background: var(--blue-50); color: var(--blue); }

.compare__head-title { font-family: var(--font-h); font-weight: 700; font-size: 1.25rem; color: var(--slate-900); letter-spacing: -.015em; }

.compare__list { display: flex; flex-direction: column; gap: .75rem; }

.compare__item {
  display: flex; gap: .75rem; align-items: flex-start;
  font-size: .9375rem; line-height: 1.55; color: var(--slate-700);
}

.compare__item svg { flex-shrink: 0; margin-top: 3px; }

.compare__col--bad .compare__item svg { color: var(--warn); }

.compare__col--good .compare__item svg { color: var(--blue); }

@media (max-width: 768px) { .compare { grid-template-columns: 1fr; } .compare__col--good { border-left: none; border-top: 3px solid var(--blue); } }

/* Cost example card */
.cost-example {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 4px 12px -4px rgba(15,23,42,.06);
}

.cost-example__head {
  background: linear-gradient(135deg, var(--navy-800), var(--blue-dark));
  padding: 1.75rem 2.5rem; color: #fff;
  display: flex; align-items: center; justify-content: space-between;
}

.cost-example__head h3 { color: #fff; font-size: 1.25rem; margin: 0; }

.cost-example__head-tag {
  font-family: var(--font-mono); font-size: .6875rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.6); background: rgba(255,255,255,.1);
  padding: .35rem .75rem; border-radius: 999px;
}

.cost-example__body { padding: 0 2.5rem 2.5rem; }

.cost-example__body table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }

.cost-example__body th {
  font-family: var(--font-h); font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .06em; color: var(--slate-500);
  text-align: left; padding: .75rem 0; border-bottom: 2px solid var(--slate-200);
}

.cost-example__body td { padding: .75rem 0; border-bottom: 1px solid var(--slate-100); font-size: .9375rem; color: var(--slate-700); }

.cost-example__body td:first-child { font-weight: 500; color: var(--slate-800); }

.cost-example__body td:last-child { text-align: right; font-family: var(--font-h); font-weight: 700; }

.cost-example__body tr:last-child td { border-bottom: none; font-size: 1.0625rem; color: var(--slate-900); padding-top: 1rem; border-top: 2px solid var(--slate-200); }

.cost-example__result {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  padding: 1.75rem 2.5rem; background: var(--surface);
  border-top: 1px solid var(--slate-200);
}

.cost-example__result-item { text-align: center; }

.cost-example__result-n { font-family: var(--font-h); font-weight: 800; font-size: 2rem; color: var(--blue); line-height: 1; letter-spacing: -.03em; margin-bottom: .375rem; }

.cost-example__result-l { font-size: .8125rem; color: var(--slate-500); }

/* Process timeline — horizontal */
.process-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; position: relative; }

.process-row::before {
  content: ''; position: absolute;
  top: 36px; left: 3rem; right: 3rem; height: 2px;
  background: linear-gradient(90deg, var(--blue-100), var(--blue), var(--blue-100));
  z-index: 0;
}

.process-step {
  text-align: center; position: relative; z-index: 1;
}

.process-step__num {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-h); font-weight: 800; font-size: 1.5rem;
  color: var(--blue); box-shadow: 0 4px 12px -4px rgba(37,99,235,.2);
}

.process-step__title {
  font-family: var(--font-h); font-weight: 700; font-size: 1.0625rem;
  color: var(--slate-900); letter-spacing: -.015em; margin-bottom: .375rem;
}

.process-step__desc { font-size: .875rem; color: var(--slate-500); line-height: 1.5; }

.process-step__time {
  font-family: var(--font-mono); font-size: .6875rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-top: .75rem;
  display: inline-flex; align-items: center; gap: .375rem;
}

@media (max-width: 900px) {
  .process-row { grid-template-columns: 1fr 1fr; }
  .process-row::before { display: none; }
}

@media (max-width: 640px) { .process-row { grid-template-columns: 1fr; } }

/* Persona cards — who is this for */
.personas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.persona {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
}

.persona:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -8px rgba(37,99,235,.12); border-color: var(--blue-100); }

.persona__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-50), #fff);
  color: var(--blue); border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.persona__who {
  font-family: var(--font-mono); font-size: .6875rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--blue);
  margin-bottom: .5rem;
}

.persona__title { font-family: var(--font-h); font-weight: 700; font-size: 1.25rem; color: var(--slate-900); letter-spacing: -.015em; line-height: 1.25; margin-bottom: .625rem; }

.persona__desc { font-size: .9375rem; color: var(--slate-600); line-height: 1.55; }

@media (max-width: 900px) { .personas { grid-template-columns: 1fr; } }

/* Objection busters — dark section */
.objections { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.objection {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s;
}

.objection:hover { background: rgba(255,255,255,.06); border-color: rgba(37,99,235,.3); }

.objection__q {
  font-family: var(--font-h); font-weight: 700; font-size: 1.125rem;
  color: #fff; letter-spacing: -.015em; margin-bottom: .75rem; line-height: 1.3;
  display: flex; align-items: flex-start; gap: .75rem;
}

.objection__q-mark {
  font-family: var(--font-h); font-weight: 800; font-size: 1.5rem;
  color: var(--blue-hover); flex-shrink: 0; line-height: 1;
}

.objection__a { font-size: .9375rem; color: rgba(255,255,255,.75); line-height: 1.65; padding-left: 2.25rem; }

@media (max-width: 768px) { .objections { grid-template-columns: 1fr; } }


/* ═══ Page: dovoz-z-indie.html ═══ */
/* Page-specific: Dovoz z Indie (landing page) — reuses dovoz-z-ciny patterns */

/* Hero with right-side trust card */
.lp-hero-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}

/* Comparison table */
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 12px -4px rgba(15,23,42,.06);
}

/* Process timeline */
.process-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; position: relative; }

/* Persona cards */
.personas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* Objection busters */
.objections { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* India-specific: top categories showcase */
.india-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.india-cat {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 1.75rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
}

.india-cat:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -8px rgba(37,99,235,.12); border-color: var(--blue-100); }

.india-cat__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-50); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

.india-cat__title { font-family: var(--font-h); font-weight: 700; font-size: 1.0625rem; color: var(--slate-900); margin-bottom: .375rem; }

.india-cat__desc { font-size: .8125rem; color: var(--slate-500); line-height: 1.5; }

@media (max-width: 900px) { .india-cats { grid-template-columns: 1fr 1fr; } }

@media (max-width: 480px) { .india-cats { grid-template-columns: 1fr; } }


/* ═══ Page: index.html ═══ */
/* Homepage-specific */

/* Two pillars — dark + white side-by-side */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.pillar {
  border-radius: var(--radius-xl); padding: 2.5rem;
  display: flex; flex-direction: column; min-height: 320px;
}

.pillar--dark {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff; border: 1px solid rgba(255,255,255,.06);
}

.pillar--light {
  background: #fff; border: 1px solid var(--slate-200);
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
}

.pillar__eyebrow {
  font-family: var(--font-mono); font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem;
}

.pillar--dark .pillar__eyebrow { color: var(--teal-light); }

.pillar--light .pillar__eyebrow { color: var(--blue); }

.pillar__eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.pillar--dark .pillar__eyebrow::before { background: var(--teal-light); }

.pillar--light .pillar__eyebrow::before { background: var(--blue); }

.pillar__title {
  font-family: var(--font-h); font-weight: 800; font-size: 1.5rem;
  letter-spacing: -.02em; line-height: 1.2; margin-bottom: .75rem;
}

.pillar--dark .pillar__title { color: #fff; }

.pillar__desc {
  font-size: .9375rem; line-height: 1.65; margin-bottom: 1.5rem; flex: 1;
}

.pillar--dark .pillar__desc { color: rgba(255,255,255,.7); }

.pillar--light .pillar__desc { color: var(--slate-600); }

.pillar__items {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem;
}

.pillar__item {
  font-size: .8125rem; font-weight: 600; padding: .35rem .75rem;
  border-radius: 100px;
}

.pillar--dark .pillar__item { background: rgba(255,255,255,.07); color: rgba(255,255,255,.85); }

.pillar--light .pillar__item { background: var(--blue-50); color: var(--blue-dark); }

.pillar__cta { margin-top: auto; }

.persona-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl); padding: 2rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.persona-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -12px rgba(37,99,235,.1); border-color: var(--blue-100); }

.persona-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.persona-card__icon--blue { background: var(--blue-50); color: var(--blue); }

.persona-card__icon--teal { background: var(--teal-50); color: var(--teal); }

.persona-card__icon--navy { background: #EEF1F6; color: var(--navy-700); }

.persona-card__title { font-family: var(--font-h); font-weight: 700; font-size: 1.125rem; margin-bottom: .5rem; color: var(--slate-900); }

.persona-card__desc { font-size: .9375rem; line-height: 1.6; color: var(--slate-600); margin-bottom: 1rem; }

.persona-card__link { font-size: .875rem; font-weight: 600; color: var(--blue); text-decoration: none; }

.persona-card__link:hover { text-decoration: underline; }

/* Blog teaser */
.blog-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.blog-teaser-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .3s, box-shadow .3s;
}

.blog-teaser-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -8px rgba(37,99,235,.1); }

.blog-teaser-card__body { padding: 1.5rem; }

.blog-teaser-card__tag {
  font-family: var(--font-mono); font-size: .6875rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--blue);
  margin-bottom: .625rem;
}

.blog-teaser-card__title {
  font-family: var(--font-h); font-weight: 700; font-size: 1rem;
  line-height: 1.35; color: var(--slate-900); margin-bottom: .5rem;
}

.blog-teaser-card__excerpt { font-size: .875rem; line-height: 1.6; color: var(--slate-500); }

@media (max-width: 1024px) {
  .pillars { grid-template-columns: 1fr; }
  .personas { grid-template-columns: 1fr 1fr; }
  .blog-teaser { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .personas { grid-template-columns: 1fr; }
  .blog-teaser { grid-template-columns: 1fr; }
  .blog-teaser-card:nth-child(3) { display: none; }
  .pillar { padding: 2rem; min-height: auto; }
  .pillar__title { font-size: 1.25rem; }
}


/* ═══ Page: kalkulacka-dovozu.html ═══ */
/* Calculator page styles */

/* Steps indicator */
.calc-steps {
  display: flex; gap: 0; margin-bottom: 2.5rem;
  position: relative;
}

.calc-steps::after {
  content: ''; position: absolute; top: 18px; left: 36px; right: 36px;
  height: 2px; background: var(--slate-200); z-index: 0;
}

.calc-step-ind {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: .5rem; position: relative; z-index: 1;
}

.calc-step-ind__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--slate-100); border: 2px solid var(--slate-200);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 700; font-size: .875rem;
  color: var(--slate-400); transition: all .3s;
}

.calc-step-ind.is-active .calc-step-ind__num {
  background: var(--blue); border-color: var(--blue);
  color: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,.15);
}

.calc-step-ind.is-done .calc-step-ind__num {
  background: #059669; border-color: #059669; color: #fff;
}

.calc-step-ind__label {
  font-size: .75rem; font-weight: 600; color: var(--slate-400);
  text-align: center; transition: color .3s;
}

.calc-step-ind.is-active .calc-step-ind__label { color: var(--blue); }

.calc-step-ind.is-done .calc-step-ind__label { color: #059669; }

/* Form card */
.calc-card {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 20px 50px -12px rgba(15,23,42,.12);
  border: 1px solid var(--slate-200); background: #fff;
}

.calc-card__head {
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--blue-dark) 100%);
  padding: 2rem 2.5rem; color: #fff;
  position: relative; overflow: hidden;
}

.calc-card__head::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 60%; height: 150%;
  background: radial-gradient(ellipse, rgba(6,182,212,.2), transparent 55%);
  pointer-events: none;
}

.calc-card__head > * { position: relative; z-index: 1; }

.calc-card__head-label {
  font-family: var(--font-mono); font-size: .6875rem;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: .625rem;
  display: inline-flex; align-items: center; gap: .625rem;
}

.calc-card__head-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-light); box-shadow: 0 0 8px var(--teal-light);
}

.calc-card__head-title {
  font-family: var(--font-h); font-weight: 700;
  font-size: 1.375rem; color: #fff; letter-spacing: -.02em; line-height: 1.2;
}

.calc-card__body { padding: 2.5rem; }

/* Form grid */
.calc-fg {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.calc-fg--full { grid-template-columns: 1fr; }

.calc-fi { display: flex; flex-direction: column; gap: .35rem; }

.calc-fi--full { grid-column: 1 / -1; }

.calc-fi label {
  font-size: .8125rem; font-weight: 600;
  color: var(--slate-700); display: flex; align-items: center; gap: .375rem;
}

.calc-fi label .calc-fi-hint {
  font-weight: 400; color: var(--slate-400); font-size: .75rem;
}

.calc-fi input[type="number"],
.calc-fi select {
  width: 100%; padding: .75rem 1rem;
  font-family: var(--font-b); font-size: .9375rem;
  border: 1px solid var(--slate-200); border-radius: 10px;
  color: var(--slate-800); background: var(--surface);
  transition: border .15s, box-shadow .15s;
  -moz-appearance: textfield;
}

.calc-fi input[type="number"]::-webkit-inner-spin-button,
.calc-fi input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none; margin: 0;
}

.calc-fi input[type="number"]:focus,
.calc-fi select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08); background: #fff;
}

.calc-fi input::placeholder { color: var(--slate-400); }

/* Transport radio cards */
.calc-transport {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem;
}

.calc-transport-opt {
  position: relative; cursor: pointer;
}

.calc-transport-opt input {
  position: absolute; opacity: 0; width: 0; height: 0;
}

.calc-transport-card {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; padding: 1.25rem .75rem;
  border: 2px solid var(--slate-200); border-radius: var(--radius);
  background: #fff; transition: all .2s; text-align: center;
}

.calc-transport-card:hover {
  border-color: var(--blue-100); background: var(--blue-50);
}

.calc-transport-opt input:checked + .calc-transport-card {
  border-color: var(--blue); background: var(--blue-50);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.calc-transport-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--slate-100); color: var(--slate-500);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}

.calc-transport-opt input:checked + .calc-transport-card .calc-transport-card__icon {
  background: var(--blue); color: #fff;
}

.calc-transport-card__name {
  font-family: var(--font-h); font-weight: 700; font-size: .8125rem;
  color: var(--slate-800); line-height: 1.2;
}

.calc-transport-card__detail {
  font-size: .6875rem; color: var(--slate-400); font-weight: 500;
}

/* Checkboxes */
.calc-checks {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
}

.calc-check {
  display: flex; align-items: center; gap: .625rem;
  padding: .875rem 1.25rem;
  border: 1px solid var(--slate-200); border-radius: 10px;
  background: #fff; cursor: pointer; transition: all .2s;
  flex: 1; min-width: 180px;
}

.calc-check:hover { border-color: var(--blue-100); background: var(--blue-50); }

.calc-check input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--blue);
  cursor: pointer; flex-shrink: 0;
}

.calc-check__text {
  display: flex; flex-direction: column; gap: .125rem;
}

.calc-check__label {
  font-size: .875rem; font-weight: 600; color: var(--slate-800);
}

.calc-check__price {
  font-size: .75rem; color: var(--slate-400); font-weight: 500;
}

/* Divider */
.calc-divider {
  height: 1px; background: var(--slate-200);
  margin: 1.5rem 0;
}

/* Section title inside form */
.calc-section-title {
  font-family: var(--font-h); font-weight: 700; font-size: 1.125rem;
  color: var(--slate-900); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}

.calc-section-title__num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: .8125rem; font-weight: 800; flex-shrink: 0;
}

/* Submit button */
.calc-submit {
  margin-top: 2rem; display: flex; justify-content: center;
}

.calc-submit .b {
  padding: 1rem 3rem; font-size: 1rem; border-radius: 12px;
}

/* ─── Results ─── */
.calc-results {
  display: none; margin-top: 2rem;
  animation: calcFadeIn .5s ease;
}

.calc-results.is-visible { display: block; }

@keyframes calcFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Primary result */
.calc-result-primary {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem;
  margin-bottom: 2rem;
}

.calc-result-box {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 2rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}

.calc-result-box:hover {
  transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(37,99,235,.12);
}

.calc-result-box--hero {
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--blue-dark) 100%);
  color: #fff; border-color: transparent;
  position: relative; overflow: hidden;
}

.calc-result-box--hero::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 60%; height: 150%;
  background: radial-gradient(ellipse, rgba(6,182,212,.15), transparent 55%);
  pointer-events: none;
}

.calc-result-box--hero > * { position: relative; z-index: 1; }

.calc-result-box__label {
  font-family: var(--font-mono); font-size: .6875rem;
  font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: .75rem;
}

.calc-result-box--hero .calc-result-box__label { color: var(--teal-light); }

.calc-result-box__value {
  font-family: var(--font-h); font-weight: 800;
  font-size: 2rem; letter-spacing: -.03em; line-height: 1;
  margin-bottom: .375rem;
}

.calc-result-box--hero .calc-result-box__value { color: #fff; font-size: 2.5rem; }

.calc-result-box__unit {
  font-size: .875rem; font-weight: 500;
}

.calc-result-box--hero .calc-result-box__unit { color: rgba(255,255,255,.6); }

/* Margin indicator */
.calc-margin { display: inline-block; padding: .25rem .75rem; border-radius: 100px; font-weight: 700; font-size: .8125rem; }

.calc-margin--green { background: #ECFDF5; color: #059669; }

.calc-margin--yellow { background: #FFFBEB; color: #D97706; }

.calc-margin--red { background: #FEF2F2; color: #DC2626; }

/* Breakdown table */
.calc-breakdown {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 2rem;
}

.calc-breakdown__head {
  padding: 1.25rem 2rem; border-bottom: 1px solid var(--slate-200);
  font-family: var(--font-h); font-weight: 700; font-size: 1.125rem;
  color: var(--slate-900);
}

.calc-breakdown table {
  width: 100%; border-collapse: collapse;
}

.calc-breakdown th,
.calc-breakdown td {
  padding: .875rem 2rem; text-align: left;
  font-size: .9375rem;
}

.calc-breakdown th {
  font-weight: 600; color: var(--slate-500);
  font-size: .75rem; text-transform: uppercase;
  letter-spacing: .1em; border-bottom: 1px solid var(--slate-200);
}

.calc-breakdown td {
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-700);
}

.calc-breakdown td:last-child {
  text-align: right; font-weight: 600; font-family: var(--font-h);
  color: var(--slate-900);
}

.calc-breakdown tr:last-child td {
  border-bottom: none;
}

.calc-breakdown__total td {
  font-weight: 800 !important; font-size: 1.0625rem !important;
  color: var(--blue) !important; border-top: 2px solid var(--blue-100);
  background: var(--blue-50);
}

/* Recommendations */
.calc-recs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}

.calc-rec {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
}

.calc-rec__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue-50); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .25rem;
}

.calc-rec__title {
  font-family: var(--font-h); font-weight: 700; font-size: .9375rem;
  color: var(--slate-900);
}

.calc-rec__text {
  font-size: .875rem; color: var(--slate-600); line-height: 1.55;
}

/* Responsive */
@media (max-width: 1024px) {
  .calc-transport { grid-template-columns: repeat(3, 1fr); }
  .calc-result-primary { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .calc-card__body { padding: 1.5rem; }
  .calc-card__head { padding: 1.5rem; }
  .calc-fg { grid-template-columns: 1fr; }
  .calc-transport { grid-template-columns: 1fr 1fr; }
  .calc-checks { flex-direction: column; }
  .calc-result-primary { grid-template-columns: 1fr; }
  .calc-recs { grid-template-columns: 1fr; }
  .calc-breakdown th, .calc-breakdown td { padding: .75rem 1rem; font-size: .8125rem; }
  .calc-steps::after { display: none; }
  .calc-step-ind__label { font-size: .625rem; }
}

@media (max-width: 480px) {
  .calc-transport { grid-template-columns: 1fr; }
}


/* ═══ Page: kontakt.html ═══ */
.contact-split {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
}

.form-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: 0 10px 30px -10px rgba(15,23,42,.08);
}

.form-card h2 { font-size: 1.75rem; margin-bottom: .5rem; letter-spacing: -.02em; }

.form-card__sub { color: var(--slate-500); margin-bottom: 2rem; font-size: 1rem; line-height: 1.55; }

.contact-side { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-hero {
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-xl); padding: 2rem;
  color: #fff; position: relative; overflow: hidden;
}

.contact-hero::before {
  content: ''; position: absolute;
  top: -40%; right: -20%; width: 70%; height: 140%;
  background: radial-gradient(ellipse, rgba(6,182,212,.2), transparent 60%);
  pointer-events: none;
}

.contact-hero > * { position: relative; z-index: 1; }

.contact-hero__label { font-family: var(--font-mono); font-size: .6875rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: .625rem; display: inline-block; }

.contact-hero__title { font-family: var(--font-h); font-weight: 700; font-size: 1.375rem; color: #fff; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 1.25rem; }

.contact-hero__items { display: flex; flex-direction: column; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); }

.contact-hero__item { display: flex; align-items: center; gap: .875rem; text-decoration: none; color: #fff; transition: color .2s; }

.contact-hero__item:hover { color: var(--teal-light); }

.contact-hero__ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s, border-color .2s;
}

.contact-hero__item:hover .contact-hero__ic { background: rgba(6,182,212,.15); border-color: rgba(6,182,212,.4); color: var(--teal-light); }

.contact-hero__label-sm { font-family: var(--font-mono); font-size: .625rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; display: block; margin-bottom: .125rem; }

.contact-hero__val { font-family: var(--font-h); font-weight: 700; font-size: 1.125rem; color: #fff; letter-spacing: -.01em; }

.info-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 1.5rem;
}

.info-card__label { font-family: var(--font-mono); font-size: .625rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-bottom: .625rem; display: inline-flex; align-items: center; gap: .5rem; }

.info-card__label::before { content: ''; width: 16px; height: 1px; background: var(--blue); }

.info-card__val { font-family: var(--font-h); font-weight: 600; font-size: 1rem; color: var(--slate-900); line-height: 1.45; }

.info-card__val--multi { font-family: var(--font-b); font-weight: 500; font-size: .9375rem; color: var(--slate-700); line-height: 1.6; }

@media(max-width:1024px) {

  .contact-split { grid-template-columns: 1fr; }

}

@media(max-width:640px) {

  .form-card { padding: 1.75rem 1.5rem; }

}

.offices-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}

.office {
  padding: 2rem 2rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  transition: all .25s;
}

.office:hover { transform: translateY(-3px); background: rgba(255,255,255,.06); border-color: rgba(37,99,235,.4); box-shadow: 0 12px 32px -8px rgba(37,99,235,.3); }

.office__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.08); }

.office__ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(37,99,235,.15); color: var(--blue-hover);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.office__city { font-family: var(--font-h); font-weight: 700; font-size: 1.375rem; color: #fff; letter-spacing: -.02em; line-height: 1.1; margin-bottom: .3rem; }

.office__code { font-family: var(--font-mono); font-size: .75rem; font-weight: 600; letter-spacing: .12em; color: rgba(255,255,255,.55); text-transform: uppercase; }

.office__role { font-size: 1rem; color: rgba(255,255,255,.85); font-weight: 500; margin-bottom: .875rem; line-height: 1.55; }

.office__addr { font-size: .9375rem; color: rgba(255,255,255,.6); line-height: 1.6; }

@media(max-width:640px) {
 .offices-grid { grid-template-columns: 1fr; }
 .office { padding: 1.75rem 1.5rem; }

}

.info-card__nav {
  margin-top: 1rem;
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .875rem; font-weight: 600; color: var(--blue);
  padding: .5rem .875rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 8px;
  transition: background .2s, gap .2s, border-color .2s;
}

.info-card__nav:hover { background: var(--blue-100); gap: .625rem; border-color: var(--blue); }

.info-card__nav svg { flex-shrink: 0; }


/* ═══ Page: nase-znacky.html ═══ */
/* Page-specific: Naše značky */

/* Brand hub cards — large showcase */
.brand-hub { display: grid; gap: 2rem; }

.brand-hub-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
}

.brand-hub-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -12px rgba(37,99,235,.12); border-color: var(--blue-100); }

.brand-hub-card__visual {
  position: relative; overflow: hidden;
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
}

.brand-hub-card__visual--arome { background: linear-gradient(135deg, #f8f4f0, #f0ebe5); }

.brand-hub-card__visual--home { background: linear-gradient(135deg, #f0f7f6, #e5f0ee); }

.brand-hub-card__visual--gifty { background: linear-gradient(135deg, #fdf3ef, #f9e8e0); }

.brand-hub-card__icon-wrap {
  width: 260px; height: 260px; border-radius: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

.brand-hub-card__icon-wrap svg { width: 56px; height: 56px; }

.brand-hub-card__icon-wrap--arome { color: var(--blue); }

.brand-hub-card__icon-wrap--home { color: #0d9488; }

.brand-hub-card__icon-wrap--gifty { color: #DF5421; }

.brand-hub-card__body { padding: 2.5rem; display: flex; flex-direction: column; }

.brand-hub-card__label {
  font-family: var(--font-mono); font-size: .75rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: .75rem;
  display: inline-flex; align-items: center; gap: .5rem;
}

.brand-hub-card__label::before { content: ''; width: 20px; height: 1px; }

.brand-hub-card__label--arome { color: var(--blue); }

.brand-hub-card__label--arome::before { background: var(--blue); }

.brand-hub-card__label--home { color: #0d9488; }

.brand-hub-card__label--home::before { background: #0d9488; }

.brand-hub-card__label--gifty { color: #DF5421; }

.brand-hub-card__label--gifty::before { background: #DF5421; }

.brand-hub-card__name {
  font-family: var(--font-h); font-weight: 800;
  font-size: 2.25rem; color: var(--slate-900);
  letter-spacing: -.03em; line-height: 1; margin-bottom: .625rem;
}

.brand-hub-card__tagline {
  font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem;
}

.brand-hub-card__tagline--arome { color: var(--blue-dark); }

.brand-hub-card__tagline--home { color: #115e59; }

.brand-hub-card__tagline--gifty { color: #c2410c; }

.brand-hub-card__desc { font-size: 1rem; color: var(--slate-600); line-height: 1.65; margin-bottom: 1.25rem; }

.brand-hub-card__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }

.brand-hub-card__tag {
  font-size: .8125rem; font-weight: 600; padding: .35rem .75rem;
  border-radius: 100px;
}

.brand-hub-card__tag--arome { background: var(--blue-50); color: var(--blue-dark); }

.brand-hub-card__tag--home { background: #f0fdfa; color: #115e59; }

.brand-hub-card__tag--gifty { background: #fff7ed; color: #c2410c; }

.brand-hub-card__cta { margin-top: auto; }

.brand-hub-card__cta .b {
  display: inline-flex; align-items: center; gap: .375rem;
}

/* Accent button variants */
.b-teal { background: #0d9488; color: #fff; border-color: #0d9488; }

.b-teal:hover { background: #0f766e; border-color: #0f766e; }

.b-orange { background: #DF5421; color: #fff; border-color: #DF5421; }

.b-orange:hover { background: #c2410c; border-color: #c2410c; }

/* Benefits compact grid */
.bh-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bh-benefit {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl); padding: 2rem;
  transition: transform .2s, box-shadow .2s;
}

.bh-benefit:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -8px rgba(37,99,235,.08); }

.bh-benefit__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-50), #fff);
  color: var(--blue); border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.bh-benefit__title {
  font-family: var(--font-h); font-weight: 700;
  font-size: 1.125rem; color: var(--slate-900);
  margin-bottom: .5rem;
}

.bh-benefit__desc { font-size: .9375rem; color: var(--slate-600); line-height: 1.6; }

@media (max-width: 900px) {
  .brand-hub-card { grid-template-columns: 1fr; }
  .brand-hub-card__visual { min-height: 200px; }
  .bh-benefits { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .bh-benefits { grid-template-columns: 1fr; }
  .brand-hub-card__name { font-size: 1.75rem; }
  .brand-hub-card__body { padding: 1.75rem; }
}


/* ═══ Page: o-nas.html ═══ */
/* Page-specific: O nás (styled per sluzby-v2 reference) */

/* Story manifest block */
.story { max-width: 820px; margin: 0 auto; }

.story__intro {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-family: var(--font-h); font-weight: 600;
  line-height: 1.3; letter-spacing: -.02em;
  color: var(--slate-900); margin-bottom: 2rem;
}

.story__intro em { font-style: normal; color: var(--blue); }

.story__text {
  font-size: 1.125rem; line-height: 1.75;
  color: var(--slate-600); margin-bottom: 1.5rem;
}

.story__text:last-child { margin-bottom: 0; }

.story__text strong { color: var(--slate-900); font-weight: 600; }

/* Timeline — editorial vertical with year markers */
.timeline { max-width: 820px; margin: 0 auto; position: relative; padding-left: 2.5rem; }

.timeline::before {
  content: ''; position: absolute;
  left: 10px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(180deg, var(--blue-100) 0%, var(--blue) 50%, var(--blue-100) 100%);
}

.timeline__item {
  position: relative; padding: 1.75rem 0;
  display: grid; grid-template-columns: 120px 1fr;
  gap: 2rem; align-items: center;
}

.timeline__item::before {
  content: ''; position: absolute;
  left: -38px; top: 2.5rem;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue);
  box-shadow: 0 0 0 4px var(--blue-50);
}

.timeline__year {
  font-family: var(--font-h); font-weight: 800;
  font-size: 2.125rem; color: var(--blue);
  letter-spacing: -.03em; line-height: 1;
}

.timeline__text { font-size: 1.0625rem; line-height: 1.65; color: var(--slate-700); }

.timeline__text strong { color: var(--slate-900); font-weight: 600; }

@media (max-width: 640px) {
  .timeline__item { grid-template-columns: 1fr; gap: .5rem; padding: 1.25rem 0; }
  .timeline__year { font-size: 1.75rem; }
  .timeline__text { font-size: 1rem; }
}

/* Stats editorial (hero stat + supporting — validated pattern) */
.stats-section { background: linear-gradient(135deg, var(--navy-800) 0%, var(--blue-dark) 60%, var(--navy-600) 100%); padding: 4.5rem 0; position: relative; overflow: hidden; }

.stats-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(6,182,212,.15), transparent 55%), radial-gradient(ellipse 40% 60% at 90% 80%, rgba(255,255,255,.06), transparent 60%); pointer-events: none; }

.stats-section .w { position: relative; z-index: 1; }

.stats-label { font-family: var(--font-mono); font-size: .8125rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 2rem; display: inline-flex; align-items: center; gap: .75rem; font-weight: 600; }

.stats-label::before { content: ''; width: 24px; height: 1px; background: rgba(255,255,255,.3); }

.stats { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center; }

.stat-hero { border-right: 1px solid rgba(255,255,255,.1); padding-right: 2rem; }

.stat-hero-n { font-family: var(--font-h); font-weight: 800; font-size: clamp(4.5rem, 10vw, 8rem); line-height: .9; letter-spacing: -.05em; color: #fff; margin-bottom: .75rem; background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,.7) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.stat-hero-l { font-size: 1.0625rem; color: rgba(255,255,255,.7); max-width: 360px; line-height: 1.55; }

.stats-support { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem 2rem; }

.stat-sm-n { font-family: var(--font-h); font-weight: 700; font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1; color: #fff; margin-bottom: .5rem; letter-spacing: -.025em; }

.stat-sm-l { font-family: var(--font-mono); font-size: .8125rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .15em; font-weight: 500; }

@media (max-width: 768px) { .stats { grid-template-columns: 1fr; } .stat-hero { border-right: none; padding-right: 0; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); } }

@media (max-width: 480px) { .stats-support { grid-template-columns: 1fr; gap: 1rem; } }

/* Values — 3-column editorial cards */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.value-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
}

.value-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -8px rgba(37,99,235,.12); border-color: var(--blue-100); }

.value-card__num {
  font-family: var(--font-h); font-weight: 800;
  font-size: 3.5rem; color: var(--blue);
  letter-spacing: -.04em; line-height: 1;
  margin-bottom: 1.5rem; opacity: .2;
}

.value-card__title {
  font-family: var(--font-h); font-weight: 700;
  font-size: 1.5rem; color: var(--slate-900);
  letter-spacing: -.02em; line-height: 1.25;
  margin-bottom: .875rem;
}

.value-card__desc { font-size: 1rem; color: var(--slate-600); line-height: 1.65; }

@media (max-width: 900px) { .values { grid-template-columns: 1fr; } }

/* Team placeholder — consistent with case-card placeholder pattern */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; pointer-events: none; }

.team-card {
  background: #fff; border: 2px dashed var(--slate-300);
  border-radius: var(--radius-lg); padding: 2rem;
  text-align: center; position: relative; overflow: hidden;
}

.team-card__badge {
  position: absolute; top: .875rem; right: .875rem;
  font-family: var(--font-mono); font-size: .625rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: .3rem .625rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: .4rem;
}

.team-card__badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: pulseDot 2s ease-in-out infinite;
}

.team-card__photo {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--surface-blue-dk), var(--surface-blue));
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-400); filter: blur(2px); opacity: .5;
}

.team-card__name { font-family: var(--font-h); font-weight: 700; font-size: 1.125rem; color: var(--slate-700); margin-bottom: .375rem; filter: blur(1.5px); opacity: .5; }

.team-card__role { font-size: .9375rem; color: var(--slate-500); filter: blur(1.5px); opacity: .5; }

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }

@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* CTA section — matching featured-svc pattern from sluzby-v2 */
.cta-section {
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--blue-dark) 70%, var(--navy-600) 100%);
  border-radius: var(--radius-xl); padding: 3.5rem 3rem;
  color: #fff; position: relative; overflow: hidden; text-align: center;
  border: 1px solid rgba(37,99,235,.3);
}

.cta-section::before {
  content: ''; position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(6,182,212,.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section > * { position: relative; z-index: 1; }

.cta-section h2 { color: #fff; font-size: clamp(1.875rem, 4vw, 2.5rem); line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -.025em; }

.cta-section p { color: rgba(255,255,255,.75); font-size: 1.0625rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.6; }

.cta-section__acts { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }


/* ═══ Page: velkoobchod.html ═══ */
/* Page-specific: Velkoobchod (styled per sluzby-v2 reference) */

/* Brand showcase — 2-col cards matching sluzby-v2 visual weight */
.brands-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2rem; }

.brand-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl); overflow: hidden;
  display: grid; grid-template-rows: 240px 1fr;
  text-decoration: none; color: inherit;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
}

.brand-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -12px rgba(37,99,235,.15); border-color: var(--blue-100); }

.brand-card__img { background: #fff; position: relative; overflow: hidden; }

.brand-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }

.brand-card:hover .brand-card__img img { transform: scale(1.05); }

.brand-card__body { padding: 2rem 2rem 2.25rem; display: flex; flex-direction: column; }

.brand-card__label {
  font-family: var(--font-mono); font-size: .75rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .75rem;
  display: inline-flex; align-items: center; gap: .5rem;
}

.brand-card__label::before { content: ''; width: 20px; height: 1px; background: var(--blue); }

.brand-card__name {
  font-family: var(--font-h); font-weight: 800;
  font-size: 2.25rem; color: var(--slate-900);
  letter-spacing: -.03em; line-height: 1; margin-bottom: .625rem;
}

.brand-card__tagline {
  font-size: 1.125rem; color: var(--blue-dark);
  font-weight: 600; margin-bottom: 1rem;
}

.brand-card__desc { font-size: 1rem; color: var(--slate-600); line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }

.brand-card__cta {
  font-size: .9375rem; font-weight: 600;
  color: var(--blue); display: inline-flex; align-items: center; gap: .375rem;
  transition: gap .2s;
}

.brand-card:hover .brand-card__cta { gap: .625rem; }

@media (max-width: 900px) { .brands-showcase { grid-template-columns: 1fr; } }

/* Distribution strip */
.distrib-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; padding: 1.5rem 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200);
}

.distrib-label {
  font-family: var(--font-mono); font-size: .75rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--slate-400); white-space: nowrap;
}

.distrib-brand {
  display: flex; align-items: center; gap: .5rem;
  opacity: .55; transition: opacity .2s; color: var(--slate-700);
}

.distrib-brand:hover { opacity: .9; }

.distrib-brand__name { font-family: var(--font-h); font-weight: 700; font-size: 1.0625rem; letter-spacing: -.01em; }

.distrib-brand__cat { font-family: var(--font-mono); font-size: .75rem; color: var(--slate-400); letter-spacing: .1em; text-transform: uppercase; }

/* Benefits — 2-col list (matching sluzby-v2 precision) */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem 3.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.benefit {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--slate-200);
  transition: transform .2s;
}

.benefit:nth-last-child(-n+2) {
  border-bottom: none;
  padding-bottom: 0;
}

.benefit:hover { transform: translateX(4px); }

.benefit__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-50), #fff);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--blue-100);
  flex-shrink: 0;
}

.benefit__content { min-width: 0; padding-top: .25rem; }

.benefit__title {
  font-family: var(--font-h); font-weight: 700;
  font-size: 1.375rem; line-height: 1.25;
  color: var(--slate-900); letter-spacing: -.02em;
  margin-bottom: .5rem;
}

.benefit__desc { font-size: .9375rem; color: var(--slate-600); line-height: 1.6; }

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 560px; }
  .benefit { padding-bottom: 2rem; }
  .benefit:nth-last-child(-n+2) { border-bottom: 1px solid var(--slate-200); padding-bottom: 2rem; }
  .benefit:last-child { border-bottom: none; padding-bottom: 0; }
}


/* ═══ Page: blog/aql-kontrola-kvality.html ═══ */
/* Page-specific: Blog article */

/* Reading progress bar */
.progress-bar {
  position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
  height: 3px; background: transparent;
}

.progress-bar__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-hover));
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(37,99,235,.4);
}

.article-hero {
  padding: 8rem 0 3.5rem;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
}

.article-hero::before {
  content: ''; position: absolute;
  top: -30%; right: -25%; width: 80%; height: 150%;
  background: radial-gradient(ellipse, rgba(37,99,235,.18) 0%, transparent 55%);
  pointer-events: none;
}

.article-hero__inner { position: relative; z-index: 1; max-width: 820px; }

/* Cover image below hero — lifts upward for overlap effect */
.article-cover {
  max-width: 1200px;
  margin: -2rem auto 2.5rem;
  padding: 0 2rem;
  position: relative; z-index: 2;
}
.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.35);
  display: block;
}
@media (max-width: 768px) {
  .article-cover { padding: 0 1rem; margin: -1.5rem auto 2rem; }
  .article-cover img { border-radius: var(--radius); }
}

.article-hero__cat {
  font-family: var(--font-mono); font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--blue-hover);
  margin-bottom: 1.25rem; display: inline-flex; align-items: center; gap: .5rem;
}

.article-hero__cat::before { content: ''; width: 20px; height: 1px; background: var(--blue-hover); }

.article-hero h1 {
  color: #fff; font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.1; letter-spacing: -.03em; margin-bottom: 1.25rem; font-weight: 800;
}

.article-hero__meta {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: .8125rem; color: rgba(255,255,255,.6);
  letter-spacing: .06em; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.article-hero__tags { display: flex; gap: .375rem; flex-wrap: wrap; margin-top: .75rem; }

.article-hero__tag {
  font-family: var(--font-mono); font-size: .625rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: .3rem .625rem; border-radius: 4px;
}

/* Article body */
.article {
  max-width: 820px; margin: 0 auto;
  padding: 3rem 0 4rem;
}

.article h2 {
  font-size: 1.75rem; line-height: 1.2; letter-spacing: -.025em;
  margin: 3rem 0 1.25rem; padding-top: 1.5rem;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-900);
}

.article h2:first-of-type { border-top: none; padding-top: 0; }

.article h3 {
  font-size: 1.25rem; line-height: 1.3; letter-spacing: -.015em;
  margin: 2rem 0 .875rem; color: var(--slate-900);
}

.article p {
  font-size: 1.0625rem; line-height: 1.75; color: var(--slate-700);
  margin-bottom: 1.25rem;
}

.article p strong { color: var(--slate-900); font-weight: 600; }

.article ul, .article ol {
  margin: 0 0 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .5rem;
}

.article li {
  font-size: 1.0625rem; line-height: 1.65; color: var(--slate-700);
  list-style: disc;
}

.article ol li { list-style: decimal; }

.article a { color: var(--blue); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }

.article a:hover { color: var(--blue-dark); }

/* Tables */
.article table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0;
  font-size: .9375rem;
}

.article th {
  font-family: var(--font-h); font-weight: 700; font-size: .8125rem;
  text-transform: uppercase; letter-spacing: .05em; color: var(--slate-600);
  text-align: left; padding: .75rem 1rem; border-bottom: 2px solid var(--slate-200);
  background: var(--surface);
}

.article td {
  padding: .75rem 1rem; border-bottom: 1px solid var(--slate-100);
  color: var(--slate-700); vertical-align: top;
}

.article td:first-child { font-weight: 600; color: var(--slate-800); }

.article tr:hover td { background: var(--slate-50); }

/* Callout / blockquote */
.article blockquote {
  background: linear-gradient(90deg, var(--blue-50), transparent);
  border-left: 4px solid var(--blue);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem; color: var(--slate-700); line-height: 1.6;
}

.article blockquote strong { color: var(--blue-dark); }

/* Lead paragraph */
.article__lead {
  font-size: 1.1875rem; line-height: 1.7; color: var(--slate-800);
  font-weight: 500; margin-bottom: 2rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--slate-200);
}

/* CTA box at end */
.article-cta {
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--blue-dark) 70%, var(--navy-600) 100%);
  border-radius: var(--radius-xl); padding: 2.5rem;
  color: #fff; position: relative; overflow: hidden;
  margin: 3rem 0 0; border: 1px solid rgba(37,99,235,.3);
}

.article-cta::before {
  content: ''; position: absolute;
  top: -40%; right: -20%; width: 60%; height: 150%;
  background: radial-gradient(ellipse, rgba(6,182,212,.15), transparent 55%);
  pointer-events: none;
}

.article-cta > * { position: relative; z-index: 1; }

.article-cta h3 { color: #fff; font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: .625rem; }

.article-cta p { color: rgba(255,255,255,.8) !important; font-size: 1rem; margin-bottom: 1.5rem; max-width: 560px; }

.article-cta__acts { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Disclaimer at end */
.article__disclaimer {
  font-size: .875rem; color: var(--slate-500); line-height: 1.6;
  font-style: italic; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--slate-200);
}

/* Sidebar — sticky, contains TOC + categories */
.article-layout { display: grid; grid-template-columns: 1fr 260px; gap: 3rem; max-width: 1140px; margin: 0 auto; }

.article-sidebar {
  position: sticky; top: 100px; align-self: start;
  display: flex; flex-direction: column; gap: 1.25rem;
  max-height: calc(100vh - 120px); overflow-y: auto;
}

/* TOC block */
.sidebar-block {
  padding: 1.5rem; background: #fff;
  border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
}

.sidebar-block--toc { background: var(--surface); }

.sidebar-block__title {
  font-family: var(--font-mono); font-size: .6875rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 1rem; display: inline-flex; align-items: center; gap: .5rem;
}

.sidebar-block__title::before { content: ''; width: 12px; height: 1px; background: var(--blue); }

/* TOC links */
.toc-links a {
  display: block; font-size: .8125rem; color: var(--slate-600);
  line-height: 1.4; padding: .375rem 0;
  border-left: 2px solid transparent; padding-left: .75rem;
  transition: all .15s; text-decoration: none;
}

.toc-links a:hover, .toc-links a.active { color: var(--blue); border-left-color: var(--blue); }

/* Category links */
.sidebar-cats { display: flex; flex-direction: column; gap: .25rem; }

.sidebar-cat {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .875rem; color: var(--slate-700);
  padding: .5rem .75rem; border-radius: 8px;
  transition: all .15s; text-decoration: none;
}

.sidebar-cat:hover { background: var(--blue-50); color: var(--blue); }

.sidebar-cat--active { background: var(--blue-50); color: var(--blue); font-weight: 600; }

.sidebar-cat__count {
  font-family: var(--font-mono); font-size: .625rem; font-weight: 700;
  color: var(--slate-400); background: var(--slate-100);
  padding: .15rem .5rem; border-radius: 999px; min-width: 24px; text-align: center;
}

.sidebar-cat--active .sidebar-cat__count { background: var(--blue-100); color: var(--blue); }

/* Newsletter mini */
.sidebar-nl {
  background: linear-gradient(140deg, var(--navy-800), var(--blue-dark));
  border: none; color: #fff; border-radius: var(--radius-lg); padding: 1.5rem;
  position: relative; overflow: hidden;
}

.sidebar-nl::before {
  content: ''; position: absolute; top: -30%; right: -30%; width: 70%; height: 140%;
  background: radial-gradient(ellipse, rgba(6,182,212,.2), transparent 60%);
  pointer-events: none;
}

.sidebar-nl > * { position: relative; z-index: 1; }

.sidebar-nl h4 { color: #fff; font-size: 1rem; margin-bottom: .375rem; letter-spacing: -.01em; }

.sidebar-nl p { color: rgba(255,255,255,.7); font-size: .8125rem; margin-bottom: .875rem; line-height: 1.45; }

.sidebar-nl input {
  width: 100%; padding: .6rem .75rem; font-family: var(--font-b); font-size: .875rem;
  border: 1px solid rgba(255,255,255,.15); border-radius: 6px;
  background: rgba(255,255,255,.08); color: #fff;
  margin-bottom: .5rem;
}

.sidebar-nl input::placeholder { color: rgba(255,255,255,.4); }

.sidebar-nl input:focus { outline: none; border-color: var(--blue-hover); }

/* Related articles section */
.related { padding: 4.5rem 0; background: var(--surface-warm); }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.related-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}

.related-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -8px rgba(37,99,235,.12); border-color: var(--blue-100); }

.related-card__img {
  height: 160px; background: var(--surface-blue);
  display: flex; align-items: center; justify-content: center;
}

.related-card__img svg { width: 40px; height: 40px; color: var(--blue); opacity: .15; }

.related-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.related-card__cat {
  font-family: var(--font-mono); font-size: .625rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--blue);
  margin-bottom: .5rem;
}

.related-card__title {
  font-family: var(--font-h); font-weight: 700;
  font-size: 1.125rem; color: var(--slate-900);
  letter-spacing: -.015em; line-height: 1.3; margin-bottom: .5rem;
}

.related-card__meta {
  font-family: var(--font-mono); font-size: .6875rem;
  color: var(--slate-400); margin-top: auto; padding-top: .75rem;
  border-top: 1px solid var(--slate-100);
}

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}

@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }


/* ═══ Page: blog/cla-a-celni-poplatky.html ═══ */
/* Code blocks for formulas */
.article code {
  font-family: var(--font-mono); font-size: .9375rem;
  background: var(--surface); padding: .2rem .5rem;
  border-radius: 4px; color: var(--slate-800);
}

.article pre {
  background: var(--surface); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem; overflow-x: auto;
  font-family: var(--font-mono); font-size: .9375rem;
  line-height: 1.6; color: var(--slate-800);
}


/* ═══════ PAGE: kalkulacky.html — Hub ═══════ */

.calc-hub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.calc-hub-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.calc-hub-card--live {
  cursor: pointer;
}

.calc-hub-card--live:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(37,99,235,.12);
  border-color: var(--blue-100);
}

.calc-hub-card--soon {
  background: var(--slate-50);
  border-style: dashed;
  border-color: var(--slate-300);
}

.calc-hub-card__badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  display: inline-flex; align-items: center; gap: .375rem;
  font-family: var(--font-mono); font-size: .6875rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .3125rem .625rem;
  border-radius: 999px;
}

.calc-hub-card__badge--live {
  background: var(--blue-50);
  color: var(--blue);
}

.calc-hub-card__badge--live svg {
  color: #059669;
}

.calc-hub-card__badge--soon {
  background: var(--slate-200);
  color: var(--slate-600);
}

.calc-hub-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}

.calc-hub-card__icon--blue { background: var(--blue-50); color: var(--blue); }
.calc-hub-card__icon--teal { background: var(--teal-50); color: var(--teal); }
.calc-hub-card__icon--navy { background: #EEF1F6; color: var(--navy-700); }

.calc-hub-card--soon .calc-hub-card__icon {
  opacity: .6;
}

.calc-hub-card__title {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--slate-900);
  margin-bottom: .625rem;
  line-height: 1.3;
}

.calc-hub-card__desc {
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
}

.calc-hub-card__tags {
  display: flex; gap: .375rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.calc-hub-card__tag {
  font-size: .75rem;
  font-weight: 600;
  padding: .3125rem .625rem;
  border-radius: 6px;
  background: var(--slate-100);
  color: var(--slate-700);
}

.calc-hub-card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .9375rem; font-weight: 600;
  color: var(--blue);
}

.calc-hub-card--live:hover .calc-hub-card__cta svg {
  transform: translateX(2px);
}

.calc-hub-card__cta svg {
  transition: transform .2s;
}

.calc-hub-card__cta--muted {
  color: var(--slate-500);
  font-weight: 500;
  font-size: .875rem;
}

.calc-hub-card__cta--muted a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.calc-hub-card__cta--muted a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .calc-hub { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .calc-hub { grid-template-columns: 1fr; }
  .calc-hub-card { padding: 1.75rem 1.5rem; }
}


/* ═══════ Brand product showcase (arome, home-elements, giftycity) ═══════ */

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.prod-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(15,23,42,.08);
  border-color: var(--slate-300);
}

.prod-card__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--slate-100);
}

.prod-card__visual img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  transition: transform .4s ease;
}

.prod-card:hover .prod-card__visual img {
  transform: scale(1.04);
}

.prod-card__visual svg {
  width: 48px; height: 48px;
  opacity: .7;
}

/* Brand accent — subtle top border (3px) in brand color */
.prod-card__visual--arome { border-top: 3px solid var(--blue); }
.prod-card__visual--home { border-top: 3px solid #0d9488; }
.prod-card__visual--gifty { border-top: 3px solid #DF5421; }

.prod-card__badge {
  position: absolute; top: .75rem; left: .75rem;
  font-family: var(--font-mono);
  font-size: .625rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .5rem;
  border-radius: 4px;
  background: rgba(255,255,255,.85);
  color: var(--slate-700);
  backdrop-filter: blur(4px);
}

.prod-card__body {
  padding: 1.125rem 1.25rem 1.25rem;
  display: flex; flex-direction: column;
  flex: 1;
}

.prod-card__name {
  font-family: var(--font-h);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.35;
  letter-spacing: -.005em;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-card__meta {
  font-size: .75rem;
  color: var(--slate-500);
  line-height: 1.5;
  margin-top: auto;
}

.prod-card__meta strong {
  color: var(--slate-700);
  font-weight: 600;
}

@media (max-width: 960px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .prod-grid { grid-template-columns: 1fr; }
}
