/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:      #F5B800;
  --accent-dark: #d9a200;
  --black:       #0a0a0a;
  --white:       #ffffff;
  --off-white:   #f7f6f4;
  --border:      rgba(0,0,0,.08);
  --border-w:    rgba(255,255,255,.08);
  --text:        #0f0f0f;
  --muted:       #7a7a7a;
  --nav-h:       76px;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Space Grotesk', sans-serif;
  --ease-out:    cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.js-fade-up    { opacity: 0; transform: translateY(50px); }
.js-fade-right { opacity: 0; transform: translateX(70px); }
.js-fade-left  { opacity: 0; transform: translateX(-70px); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}
.eyebrow--light { color: rgba(255,255,255,.35); }

.s-h2 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.s-h2 em { font-style: normal; color: var(--accent); }
.s-h2--white { color: var(--white); }

.accent { color: var(--accent); }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section { padding: 140px 48px; position: relative; overflow: hidden; }
.bg-black { background: var(--black); }
.s-header { margin-bottom: 72px; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: .85rem; font-weight: 600; letter-spacing: .3px;
  border-radius: 4px; border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: var(--black); box-shadow: 0 4px 24px rgba(245,184,0,.25); }
.btn--primary:hover { background: #ffc800; box-shadow: 0 8px 40px rgba(245,184,0,.4); }
.btn--ghost { background: transparent; border-color: rgba(0,0,0,.18); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); }
.btn--outline-white { background: transparent; border-color: rgba(255,255,255,.25); color: var(--white); }
.btn--outline-white:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.5); }
.btn--lg { padding: 18px 38px; font-size: .9rem; }
.btn--call { position: relative; }
.btn--call::after {
  content: 'Nerušíte, fakt!';
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--text); color: var(--white);
  font-size: .7rem; font-weight: 500; letter-spacing: .2px;
  padding: 5px 12px; border-radius: 4px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 10;
}
.btn--call::before {
  content: '';
  position: absolute; bottom: calc(100% + 5px); left: 50%;
  transform: translateX(-50%) translateY(5px);
  border: 5px solid transparent; border-top-color: var(--text);
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 10;
}
.btn--call:hover::after,
.btn--call:hover::before { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════
   OVERLAYS
═══════════════════════════════════════════ */
.overlay { position: absolute; pointer-events: none; z-index: 0; user-select: none; }
.overlay--bolt {
  width: 200px; top: 10%; right: 4%;
  opacity: .10; filter: brightness(0) invert(1);
  animation: floatBolt 6s ease-in-out infinite;
}
.overlay--ring { border-radius: 50%; border: 1.5px solid var(--accent); opacity: .11; }
.ring1 { width: 480px; height: 480px; top: -180px; left: -200px; animation: ringPulse 8s ease-in-out infinite; }
.ring2 { width: 280px; height: 280px; bottom: 60px; right: 8%; animation: ringPulse 6s ease-in-out infinite reverse; }
.overlay--bolt-sm {
  width: 150px; bottom: 8%; right: 3%;
  opacity: .06; filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg);
  animation: floatBolt 8s ease-in-out infinite reverse;
}
.overlay--bulb {
  width: 180px; top: 50%; left: -50px; transform: translateY(-50%);
  opacity: .04; filter: brightness(0);
  animation: floatBolt 9s ease-in-out infinite;
}
.overlay--bolt-contact {
  width: 260px; bottom: 0; right: 4%;
  opacity: .05; filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(5deg);
  animation: floatBolt 7s ease-in-out infinite;
}
@keyframes floatBolt { 0%,100%{transform:translateY(0) rotate(-5deg)} 50%{transform:translateY(-20px) rotate(5deg)} }
@keyframes ringPulse  { 0%,100%{transform:scale(1);opacity:.11} 50%{transform:scale(1.07);opacity:.19} }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,.06); }
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img { height: 36px; width: auto; display: block; mix-blend-mode: multiply; }
.logo-real  { color: var(--accent); }
.logo-geek  { color: var(--black); }
.logo-bolt  { width: 24px; height: auto; }
.logo-business {
  font-family: var(--font-body); font-size: .6rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
  margin-left: 2px; align-self: flex-end; margin-bottom: 2px;
  display: none;
}
.logo-b2b {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 7px 2px;
  border-radius: 4px;
  line-height: 1;
  align-self: center;
  margin-left: 2px;
}
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a { font-size: .8rem; font-weight: 500; letter-spacing: .3px; color: var(--muted); text-transform: uppercase; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { background: var(--accent) !important; color: var(--black) !important; padding: 9px 20px !important; border-radius: 4px; letter-spacing: .3px !important; }
.nav__cta:hover { background: #ffc800 !important; transform: translateY(-1px); color: var(--black) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__drawer { display: none; flex-direction: column; padding: 16px 48px 24px; border-top: 1px solid var(--border); }
.nav__drawer a { padding: 14px 0; font-size: .85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); transition: color .2s; }
.nav__drawer a:hover { color: var(--text); }
.nav__drawer.open { display: flex; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding-top: var(--nav-h); min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; background: var(--white);
}
.hero__inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 48px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1; width: 100%;
}
.hero__eyebrow { font-size: .65rem; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; display: block; }
.hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  font-weight: 800; line-height: .96; letter-spacing: -1.5px;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 32px; display: flex; flex-direction: column; gap: 4px;
}
.hero__h1 span { display: block; }
.accent-line { color: var(--accent); }
.hero__lead { font-size: 1rem; line-height: 1.8; color: var(--muted); max-width: 460px; margin-bottom: 40px; font-weight: 400; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Photo stack */
.hero__photo-stack { position: relative; }
.hphoto { border-radius: 10px; object-fit: cover; }
.hphoto--main { width: 100%; aspect-ratio: 4/5; box-shadow: 0 32px 80px rgba(0,0,0,.16); }
.hphoto--side-wrap {
  position: absolute; bottom: -40px; left: -40px;
  width: 58%;
}
.hphoto--side {
  width: 100%; aspect-ratio: 1;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  border: 5px solid var(--white); border-radius: 10px;
}
.hphoto__caption {
  position: absolute; bottom: 10px; left: 0; right: 0;
  text-align: center;
  font-size: .6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.hero__badge {
  position: absolute; top: 24px; right: -16px;
  background: var(--accent); color: var(--black);
  border-radius: 8px; padding: 16px 20px; text-align: center;
  box-shadow: 0 8px 32px rgba(245,184,0,.35);
}
.badge__num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; line-height: 1; display: block; }
.badge__label { font-size: .58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.4; opacity: .7; }

/* Ticker */
.ticker { border-top: 1px solid var(--border); padding: 18px 0; overflow: hidden; position: relative; z-index: 1; margin-top: auto; }
.ticker__track { display: flex; gap: 48px; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker__track span { font-family: var(--font-head); font-size: .9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--black); opacity: 1; }
.ticker__track .sep { color: var(--accent); opacity: 1; font-size: 1rem; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats { background: var(--black); padding: 60px 48px; }
.stats__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 16px 40px; border-right: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; gap: 8px; }
.stat:last-child { border-right: none; }
.stat__val { display: flex; align-items: flex-start; gap: 3px; white-space: nowrap; line-height: 1; }
.stat__n { font-family: var(--font-head); font-size: clamp(2.8rem, 3.5vw, 4rem); font-weight: 800; color: var(--accent); line-height: 1; }
.stat sup { font-family: var(--font-head); font-size: clamp(1.4rem, 1.8vw, 2rem); font-weight: 800; color: var(--accent); line-height: 1; padding-top: 4px; }
.stat p { font-size: .62rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════
   SERVICES FLIP CARDS
═══════════════════════════════════════════ */
.svc-row + .svc-row { margin-top: 52px; }

.svc-row__head {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 26px;
}
.svc-row__head::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.07);
}
.svc-row__label {
  font-family: var(--font-head); font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: -.2px;
  color: rgba(255,255,255,.5); white-space: nowrap;
}

/* ── 3-column grid ── */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ── Card shell ── */
.svc-card { perspective: 1400px; }
.svc-card__inner {
  position: relative; width: 100%; height: 420px;
  transform-style: preserve-3d;
  transition: transform .72s cubic-bezier(.4, .2, .2, 1);
  cursor: pointer;
}
.svc-card:hover .svc-card__inner,
.svc-card--flipped .svc-card__inner { transform: rotateY(180deg); }

.svc-card__front,
.svc-card__back {
  position: absolute; inset: 0;
  border-radius: 10px; overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ── Front ── */
.svc-card__front { background: #111; }
.svc-card__front img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--ease-out);
}
.svc-card:hover .svc-card__front img { transform: scale(1.06); }
.svc-card__front-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
}
.svc-card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-body); font-size: .55rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 4px 9px; border-radius: 3px;
}
.svc-card__tag--quick { background: var(--accent); color: var(--black); }
.svc-card__tag--long  { background: rgba(255,255,255,.9); color: var(--black); }
.svc-card__flip-hint {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .75rem;
  transition: background .25s, color .25s;
}
.svc-card:hover .svc-card__flip-hint { background: rgba(255,255,255,.28); color: var(--white); }
.svc-card__front-title {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 18px 20px 22px;
  font-family: var(--font-head); font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: -.15px;
  color: var(--white); line-height: 1.22; text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

/* ── Back ── */
.svc-card__back {
  transform: rotateY(180deg);
  background: #141414; border: 1px solid rgba(255,255,255,.07);
  padding: 26px 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.svc-card__back-title {
  font-family: var(--font-head); font-size: clamp(.8rem, 1.05vw, .96rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: -.1px;
  color: var(--white); line-height: 1.25;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.svc-card__desc {
  font-size: .85rem; line-height: 1.7;
  color: rgba(255,255,255,.44); font-weight: 400; flex: 1;
}
.svc-card__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.svc-card__list li {
  font-size: .76rem; color: rgba(255,255,255,.3); font-weight: 400;
  padding-left: 16px; position: relative;
}
.svc-card__list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--accent); font-size: .7rem;
}

/* Small button variant */
.btn--sm { font-size: .72rem; padding: 10px 18px; }

/* ═══════════════════════════════════════════
   SCROLLYTELLING (CHAOS → SOLUTION)
═══════════════════════════════════════════ */
#realita {
  position: relative;
  background: var(--black);
  height: 350vh;
}

/* Po proscrollování: sticky kontejner zmizí, sekce zůstane prázdná */
#realita.realita--seen .scl__sticky {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.scl__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
}

/* ── Chaos background (blurred fire images) ── */
.scl__chaos-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.scl__chaos-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(14px) brightness(0.22) saturate(0.7);
  will-change: opacity;
}
.scl__chaos-bg img:nth-child(1) { z-index: 1; opacity: 0.6; }
.scl__chaos-bg img:nth-child(2) { z-index: 2; opacity: 0.4; }

/* ── Scroll hint ── */
.scl__scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2.5px solid rgba(245,184,0,.55);
  color: var(--accent);
  animation: scl-hint-pulse 2s ease-in-out infinite;
  pointer-events: none;
}
.scl__scroll-hint svg { width: 22px; height: 22px; }
@keyframes scl-hint-pulse {
  0%, 100% {
    opacity: .55;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(245,184,0,.35);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.13);
    box-shadow: 0 0 0 10px rgba(245,184,0,.0);
  }
}

/* ── Headlines ── */
.scl__headlines {
  position: absolute;
  top: calc(var(--nav-h) + 88px);   /* doubled gap from nav */
  left: 48px; right: 48px;
  z-index: 10;
  text-align: center;
}
.scl__h {
  margin-bottom: 0;
  position: relative;
}
.scl__h--chaos { color: var(--white); }
.scl__h--sol { display: none; } /* Only used in scrollytelling — hidden here */

/* ── Chaos bubbles ── */
.scl__chaos { position: absolute; inset: 0; pointer-events: none; z-index: 5; }

/* Enable pointer events on individual items for hover */
.scl-ci, .scl-ci-img { pointer-events: auto; }

.scl-ci {
  position: absolute;
  background: #f0ece7;
  border-radius: 10px;
  padding: 16px 20px;
  max-width: 252px;
  box-shadow: 0 10px 44px rgba(0,0,0,.5);
  color: #0a0a0a;
  will-change: transform;
}
.scl-ci__ico { font-size: 1.7rem; display: block; margin-bottom: 8px; line-height: 1; }
.scl-ci p { font-size: .84rem; line-height: 1.55; font-weight: 500; margin: 0; font-family: var(--font-body); }

/* Size variants */
.scl-ci--sm { max-width: 190px; padding: 12px 16px; }
.scl-ci--sm .scl-ci__ico { font-size: 1.3rem; margin-bottom: 5px; }
.scl-ci--sm p { font-size: .76rem; }
.scl-ci--big { max-width: 310px; padding: 20px 24px; }
.scl-ci--big .scl-ci__ico { font-size: 2rem; margin-bottom: 10px; }
.scl-ci--big p { font-size: .96rem; }

/* Text item positions — all start at 33vh+ to clear headline */
/* Wave 1 */
.ci-1  { top: 58vh; left: 4%; }
.ci-2  { top: 50vh; right: 5%; }
.ci-3  { top: 36vh; left: 7%; }
.ci-4  { top: 71vh; right: 8%; }
.ci-5  { top: 75vh; left: 27%; }
/* Wave 2 */
.ci-6  { top: 41vh; right: 24%; }
.ci-7  { top: 63vh; left: 39%; }
.ci-8  { top: 33vh; left: 56%; }
.ci-9  { top: 47vh; right: 11%; }
.ci-10 { top: 80vh; left: 15%; }
/* Wave 3 */
.ci-11 { top: 35vh; left: 23%; }
.ci-12 { top: 66vh; right: 27%; }
.ci-13 { top: 77vh; right: 43%; }
.ci-14 { top: 43vh; right: 45%; }

/* ── Chaos image cards ── */
.scl-ci-img {
  position: absolute;
  width: 200px;              /* default size */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 50px rgba(0,0,0,.65);
  will-change: transform;
}
.scl-ci-img img { width: 100%; height: 150px; object-fit: cover; display: block; }
.scl-ci-img--sm       { width: 148px; }
.scl-ci-img--sm img   { height: 112px; }
.scl-ci-img--lg       { width: 255px; }
.scl-ci-img--lg img   { height: 192px; }

/* Image card positions (rotation applied via GSAP) */
.ci-img-1 { top: 42vh; left: 5%; }
.ci-img-2 { top: 52vh; left: 20%; }
.ci-img-3 { top: 37vh; right: 4%; }
.ci-img-4 { top: 70vh; right: 20%; }

/* ── Solution cards — standalone section layout ── */
.sol-section {
  background: #f5f4f2;
  padding: 150px 0;
}
.sol-section__h2 {
  color: var(--text);
  text-align: center;
}
.sol-section__h2 em { color: var(--accent); font-style: normal; }
.sol-section__tagline {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.6vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #9a9690;
  margin-top: 150px;
}
.scl__sol {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin-top: 150px;
  margin-bottom: 0;
}
.scl-sc {
  flex: 1; min-width: 0;
  background: var(--white);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 64px rgba(0,0,0,.14);
  display: flex; flex-direction: column;
}
.scl-sc__img { height: 150px; overflow: hidden; flex-shrink: 0; }
.scl-sc__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.scl-sc__body { padding: 18px 20px 22px; flex: 1; }
.scl-sc__body h3 {
  font-family: var(--font-head); font-size: clamp(.88rem, 1.05vw, 1rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: -.15px;
  line-height: 1.2; color: var(--text); margin-bottom: 8px;
}
.scl-sc__body p {
  font-size: .8rem; line-height: 1.68; color: var(--muted); margin: 0;
}

/* ── Closing tagline ── */
/* bottom: 88px mirrors the top gap (nav-h + 88px) above the headline */
.scl__tagline {
  position: absolute;
  bottom: 88px; left: 0; right: 0;
  text-align: center;
  opacity: 0;
  z-index: 11;
  pointer-events: none;
}
.scl__tagline p {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.9vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.2px;
  line-height: 1.25;
  color: #9a9690;
}

/* Mobile: static layout, no sticky */
@media (max-width: 900px) {
  #realita { height: auto; overflow: hidden; }
  .scl__sticky { position: relative; top: auto; height: auto; overflow: visible; background: var(--black) !important; }
  .scl__chaos-bg { display: none; }
  .scl__headlines { position: relative; top: auto; left: auto; right: auto; padding: 60px 28px 40px; text-align: left; }
  .scl__h--sol { position: relative; opacity: 1 !important; transform: none !important; color: var(--white) !important; margin-top: 0; display: none; }
  .scl__chaos { position: relative; inset: auto; padding: 0 28px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .scl-ci { position: static; transform: none !important; opacity: 1 !important; max-width: 100%; box-shadow: 0 4px 16px rgba(0,0,0,.3); }
  .scl-ci--big, .scl-ci--sm { max-width: 100%; }
  .scl-ci-img { display: none; }
  .ci-2, .ci-5, .ci-7, .ci-14 { grid-column: 1 / -1; }
  .scl__sol { position: relative; inset: auto; flex-direction: column; align-items: stretch; padding: 0 28px 60px; }
  .scl-sc { flex: none; }
  .scl__sol .sc-1, .scl__sol .sc-2, .scl__sol .sc-3 { opacity: 1 !important; transform: none !important; }
  .scl__tagline { display: none; }
}

/* ═══════════════════════════════════════════
   SPLIT SECTIONS
═══════════════════════════════════════════ */
.section--split { padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
.section--split-rev .split__body { order: 1; }
.section--split-rev .split__photo { order: 2; }
.split__photo { position: relative; overflow: hidden; min-height: 680px; }
.split__photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-label {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--accent); color: var(--black);
  font-family: var(--font-head); font-size: .75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 2px;
}
.split__body { padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; background: var(--white); }
.bg-black .split__body { background: var(--black); }
.body-text { font-size: .95rem; line-height: 1.8; color: var(--muted); margin-bottom: 18px; max-width: 480px; font-weight: 400; }
.bg-black .body-text { color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════
   PROCESS – Animated headline + 2×2 grid
═══════════════════════════════════════════ */
/* --red replaced by --accent throughout process section */

.process-section { padding-bottom: 120px; position: relative; overflow: hidden; }

/* ── Background: dark photos + glow orbs ── */
.proc-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.proc-bg__img {
  position: absolute; width: 55%; height: 100%;
  object-fit: cover; filter: grayscale(1) brightness(0.07);
}
.proc-bg__img--1 { top: 0; left: 0; transform-origin: center left; animation: procKen1 22s ease-in-out infinite alternate; }
.proc-bg__img--2 { top: 0; right: 0; transform-origin: center right; animation: procKen2 18s ease-in-out infinite alternate-reverse; }
@keyframes procKen1 {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.12) translate(2%,3%); }
}
@keyframes procKen2 {
  from { transform: scale(1.06) translate(0,0); }
  to   { transform: scale(1.14) translate(-2%,-2%); }
}
.proc-bg__orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.proc-bg__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,184,0,.13) 0%, transparent 70%);
  top: -150px; left: -80px;
  animation: procOrb1 14s ease-in-out infinite alternate;
}
.proc-bg__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,184,0,.08) 0%, transparent 70%);
  bottom: -60px; right: 10%;
  animation: procOrb2 11s ease-in-out infinite alternate-reverse;
}
.proc-bg__orb--3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245,184,0,.06) 0%, transparent 70%);
  top: 40%; left: 50%; transform: translate(-50%,-50%);
  animation: procOrb3 16s ease-in-out infinite alternate;
}
@keyframes procOrb1 {
  from { transform: translate(0,0) scale(.9); }
  to   { transform: translate(80px,60px) scale(1.2); }
}
@keyframes procOrb2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-60px,-40px) scale(1.15); }
}
@keyframes procOrb3 {
  from { opacity:.5; transform: translate(-50%,-50%) scale(.8); }
  to   { opacity:1;  transform: translate(-50%,-50%) scale(1.3); }
}

/* Animated headline */
.proc-headline { margin-bottom: 80px; position: relative; z-index: 1; }
.proc-h2 { line-height: 1.08; }

.proc-flipword {
  display: inline-block;
  color: var(--accent);
  position: relative;
  min-width: 2ch;
}
.proc-flipword.flip-out {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity .2s ease, transform .2s ease;
}
.proc-flipword.flip-in {
  animation: procFlipIn .32s ease forwards;
}
@keyframes procFlipIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 2×2 steps grid */
.pstep-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
}
.pstep {
  background: var(--black);
  padding: 60px 52px 64px;
  position: relative;
  transition: background .3s;
}
.pstep:hover { background: rgba(255,255,255,.025); }

.pstep__num {
  font-family: var(--font-head);
  font-size: 5.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.055);
  line-height: 1;
  margin-bottom: 28px;
  transition: color .35s;
  user-select: none;
}
.pstep:hover .pstep__num { color: rgba(245,184,0,.22); }

.pstep__title {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .25px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.pstep__sub {
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
  font-style: italic;
  opacity: .85;
}
.pstep__desc {
  font-size: .84rem;
  line-height: 1.8;
  color: rgba(255,255,255,.32);
  font-weight: 400;
  max-width: 440px;
}

/* 80% saving visual */
.saving-visual {
  display: flex; align-items: center; gap: 60px;
  margin-bottom: 80px;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.saving__circle {
  flex-shrink: 0;
  width: 180px; height: 180px; border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  animation: spinRing 20s linear infinite;
}
.saving__circle::before {
  content: '';
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px dashed rgba(245,184,0,.2);
  animation: spinRing 15s linear infinite reverse;
}
.saving__pct {
  font-family: var(--font-head); font-size: 3.6rem; font-weight: 800; color: var(--accent); line-height: 1;
}
.saving__pct sup { font-size: 1.8rem; vertical-align: super; }
.saving__label {
  font-size: .55rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.3); text-align: center; margin-top: 4px;
}
.saving__desc p { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,.4); max-width: 520px; font-weight: 400; }
@keyframes spinRing { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* Flow steps */
.flow {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.flow__step {
  padding: 0 28px; position: relative;
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.06);
}
.flow__step:first-child { border-left: none; padding-left: 0; }
.flow__num {
  font-family: var(--font-head); font-size: 4.5rem; font-weight: 800;
  color: rgba(255,255,255,.04); line-height: 1;
  margin-bottom: 16px;
  transition: color .4s;
}
.flow__step:hover .flow__num { color: rgba(245,184,0,.12); }
.flow__arrow {
  width: 80px; height: 24px; margin-bottom: 20px;
}
.flow__arrow--end {
  width: 40px; height: 40px;
}
.flow__arrow svg { width: 100%; height: 100%; }
/* Animated dash offset on the arrow path */
.flow__step:hover .flow__arrow path,
.flow__step:hover .flow__arrow--end circle {
  stroke-dashoffset: 0;
  animation: dashFlow .6s linear forwards;
}
@keyframes dashFlow {
  from { stroke-dashoffset: 30; }
  to   { stroke-dashoffset: 0; }
}
.flow__body h3 {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .3px; color: var(--white);
  margin-bottom: 12px; line-height: 1.2;
}
.flow__body p { font-size: .84rem; line-height: 1.75; color: rgba(255,255,255,.32); font-weight: 400; }

/* ═══════════════════════════════════════════
   PILLARS
═══════════════════════════════════════════ */
.pillars-section { background: var(--off-white); }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.pillar { background: var(--white); padding: 60px 48px; transition: box-shadow .3s; }
.pillar:hover { box-shadow: 0 24px 80px rgba(0,0,0,.07); z-index: 1; }
.pillar:hover .pillar__mark { color: var(--accent); }
.pillar__mark { font-family: var(--font-head); font-size: 3.8rem; font-weight: 800; color: rgba(0,0,0,.05); line-height: 1; margin-bottom: 24px; display: block; transition: color .3s; }
.pillar h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: .3px; color: var(--black); margin-bottom: 18px; line-height: 1.15; }
.pillar p { font-size: .88rem; line-height: 1.8; color: var(--muted); font-weight: 400; }

/* ═══════════════════════════════════════════
   E-SHOP MOCKUP
═══════════════════════════════════════════ */
.eshop-mockup { background: #121212; border-radius: 12px; overflow: hidden; box-shadow: 0 32px 100px rgba(0,0,0,.5); margin: 60px 40px; }
.mockup__bar { background: #1a1a1a; padding: 14px 18px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.05); }
.dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.mockup__url { flex: 1; text-align: center; background: rgba(255,255,255,.05); border-radius: 4px; padding: 3px 10px; font-size: .68rem; color: rgba(255,255,255,.25); margin: 0 8px; font-family: var(--font-body); }
.mockup__body { padding: 22px; }
.mockup__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mockup__brand { font-family: var(--font-head); font-size: .95rem; font-weight: 800; letter-spacing: 2px; color: var(--white); }
.mockup__credits { background: var(--accent); color: var(--black); font-size: .66rem; font-weight: 700; padding: 4px 12px; border-radius: 2px; }
.mockup__items { display: flex; flex-direction: column; gap: 8px; }
.m-item { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,.05); }
.m-item--hl { border-color: var(--accent); }
.m-item__img { width: 50px; height: 50px; border-radius: 4px; overflow: hidden; flex-shrink: 0; background: #1e1e1e; }
.m-item__img img { width: 100%; height: 100%; object-fit: cover; }
.m-item__info { display: flex; flex-direction: column; gap: 3px; }
.m-item__info span { font-size: .76rem; color: rgba(255,255,255,.4); }
.m-item__info strong { font-size: .82rem; }

.feat-list { margin: 32px 0; display: flex; flex-direction: column; gap: 26px; }
.feat-list li { display: flex; align-items: flex-start; gap: 18px; }
.feat-num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--accent); flex-shrink: 0; width: 36px; line-height: 1; padding-top: 3px; }
.feat-list strong { display: block; font-family: var(--font-head); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .3px; color: var(--white); margin-bottom: 5px; }
.feat-list p { font-size: .84rem; line-height: 1.72; color: rgba(255,255,255,.32); font-weight: 400; }

/* ═══════════════════════════════════════════
   PHOTO BAND
═══════════════════════════════════════════ */
.photo-band { display: flex; height: 300px; overflow: hidden; }
.photo-band img { flex: 1; object-fit: cover; filter: grayscale(15%); transition: flex .5s var(--ease-out), filter .4s; }
.photo-band img:hover { flex: 2.5; filter: grayscale(0); }

/* ═══════════════════════════════════════════
   CERTIFIKÁTY – real logos
═══════════════════════════════════════════ */
.certs { padding: 80px 48px; background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.certs__label { font-size: 1rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text); text-align: center; margin-bottom: 52px; }
.certs__row { display: flex; justify-content: center; align-items: center; gap: 64px; flex-wrap: wrap; }

/* Each cert is a positioned wrapper for logo + tooltip */
.cert {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  cursor: default;
}

/* Logo container */
.cert__logo {
  display: flex; align-items: center; justify-content: center;
  width: 160px; height: 80px;
  opacity: .45;
  filter: grayscale(1) contrast(.8);
  transition: opacity .3s, filter .3s, transform .3s;
}
.cert:hover .cert__logo {
  opacity: 1;
  filter: grayscale(0) contrast(1);
  transform: translateY(-4px) scale(1.06);
}

/* Logo image */
.cert__img {
  max-height: 70px;
  max-width: 150px;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
/* Heureka inline SVG badge */
.cert__heureka-svg { width: 150px; height: auto; color: var(--text); }

/* Tooltip bubble */
.cert__tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%; transform: translateX(-50%) translateY(6px);
  width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 50;
}
.cert:hover .cert__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cert__tooltip strong {
  display: block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text);
  margin-bottom: 6px;
}
.cert__tooltip p {
  font-size: .76rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
/* Tooltip arrow */
.cert__tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--white);
}
.cert__tooltip::before {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--border);
  margin-top: 1px;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { padding: 140px 48px; }
.contact__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  position: relative; z-index: 1;
}
.contact__h2 { font-size: clamp(2.8rem, 5vw, 5.2rem); margin-bottom: 0; }
.contact__copy { display: flex; flex-direction: column; }
.contact__lead { font-size: .97rem; line-height: 1.85; color: rgba(255,255,255,.45); margin: 0 0 0; font-weight: 400; }
.contact__lead--sub { margin: 12px 0 0; }

/* Tereza + phone row */
.contact__bottom {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.contact__person { display: flex; align-items: center; gap: 14px; }
.person__photo {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2.5px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(245,184,0,.12);
}
.person__info { display: flex; flex-direction: column; }
.contact__person strong { display: block; font-weight: 700; font-size: .95rem; color: var(--white); }
.contact__person span { font-size: .78rem; color: rgba(255,255,255,.38); margin-top: 2px; }

/* Phone button with tooltip */
.contact__tel-wrap {
  position: relative;
  flex-shrink: 0;
}
.contact__tel-btn { white-space: nowrap; }
.tel-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-head);
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(4px);
}
.tel-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--white);
}
.contact__tel-wrap:hover .tel-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Contact form ── */
.contact__form-wrap {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}
.contact-form {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.contact-form__title {
  font-family: var(--font-head);
  font-size: 1.45rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--white); margin-bottom: 28px;
  line-height: 1.25;
}
.cf-field { margin-bottom: 18px; }
.cf-field label {
  display: block; font-size: .72rem; font-weight: 600;
  letter-spacing: .3px; color: rgba(255,255,255,.45);
  margin-bottom: 7px; text-transform: uppercase;
}
.cf-field input,
.cf-field textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body); font-size: .88rem;
  transition: border-color .2s, background .2s;
  outline: none;
  resize: vertical;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(255,255,255,.2); }
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.10);
}
.cf-submit {
  width: 100%; margin-top: 8px;
  padding: 15px 24px;
  background: var(--accent); color: var(--black);
  font-family: var(--font-body); font-size: .88rem; font-weight: 700;
  border: none; border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .2s, opacity .2s;
}
.cf-submit:hover { background: #ffc800; transform: translateY(-2px); }
.cf-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Spinner */
.cf-submit__spinner {
  display: none; width: 16px; height: 16px;
  border: 2.5px solid rgba(0,0,0,.25);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: cf-spin .7s linear infinite;
}
.cf-submit.loading .cf-submit__label { opacity: .6; }
.cf-submit.loading .cf-submit__spinner { display: block; }
@keyframes cf-spin { to { transform: rotate(360deg); } }

/* Status messages */
.cf-msg { display: none; margin-top: 14px; padding: 12px 16px; border-radius: 8px; font-size: .82rem; line-height: 1.5; }
.cf-msg--ok  { background: rgba(34,197,94,.15); color: #86efac; border: 1px solid rgba(34,197,94,.25); }
.cf-msg--err { background: rgba(239,68,68,.12);  color: #fca5a5; border: 1px solid rgba(239,68,68,.22); }
.cf-msg--err a { color: var(--accent); }
.cf-msg.visible { display: block; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: #060606; padding: 26px 48px; border-top: 1px solid rgba(255,255,255,.04); }
.footer__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer__logo { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; letter-spacing: .5px; display: flex; align-items: center; gap: 4px; }
.footer .logo-geek { color: var(--white); }
.footer__copy { font-size: .72rem; color: rgba(255,255,255,.18); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .flow { grid-template-columns: repeat(2,1fr); gap: 1px; }
  .flow__step { padding: 36px 28px; border-left: 1px solid rgba(255,255,255,.06); }
  .stats__inner { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .svc-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .svc-card__inner { height: 380px; }
}
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .section { padding: 100px 28px; }
  .section--split { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .section--split-rev { flex-direction: column; }
  .split__photo { min-height: 380px; order: -1 !important; }
  .split__body { padding: 68px 36px; order: 1 !important; }
  .hero__inner { grid-template-columns: 1fr; gap: 52px; padding: 60px 28px 40px; }
  .hero__right { order: -1; }
  .hphoto--main { aspect-ratio: 16/9; }
  .hphoto--side-wrap { display: none; }
  .nav__inner { padding: 0 28px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .pillars { grid-template-columns: 1fr; gap: 2px; }
  .saving-visual { flex-direction: column; gap: 32px; text-align: center; }
  .stats { padding: 44px 28px; }
  .certs { padding: 56px 28px; }
  .certs__row { gap: 36px; }
  .contact { padding: 80px 28px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__btns { flex-direction: column; align-items: flex-start; }
  .btn--lg { width: 100%; justify-content: center; }
  .footer { padding: 22px 28px; }
  .footer__inner { flex-direction: column; gap: 10px; text-align: center; }
  .eshop-mockup { margin: 36px 24px; }
  .nav__drawer { padding: 16px 28px 24px; }
  .photo-band { height: 220px; }
}
@media (max-width: 640px) {
  .hero__h1 { font-size: clamp(2.8rem,12vw,4rem); }
  .s-h2 { font-size: clamp(2.2rem,10vw,3.4rem); }
  .flow { grid-template-columns: 1fr; }
  .flow__step { border-left: none; border-top: 1px solid rgba(255,255,255,.06); padding: 32px 0; }
  .flow__step:first-child { border-top: none; }
  .ticker__track { gap: 28px; }
  .certs__row { gap: 24px; }
  .contact__h2 { font-size: clamp(2.6rem,12vw,4.5rem); }
  /* Services cards: 1 column on mobile */
  .svc-cards { grid-template-columns: 1fr; gap: 14px; }
  .svc-card__inner { height: 360px; }
  /* Disable hover-flip on touch; use JS click-flip instead */
  .svc-card:hover .svc-card__inner { transform: none; }
  .svc-card--flipped .svc-card__inner { transform: rotateY(180deg); }
}
