
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --bg: #0A0A0A; --surface: #171226; --accent: #7B3FFF; --accent-2: #b691ff;
    --white: #FFFFFF; --muted: #a1a1aa;
    --line: rgba(255,255,255,0.10); --line-2: rgba(255,255,255,0.05);
    --glass: rgba(26,19,45,0.55);
    --font-ui: 'Space Grotesk', sans-serif; --font-mono: 'JetBrains Mono', monospace;
    --maxw: 1280px;
  }
  html { scroll-behavior: smooth; background: var(--bg); }
  /* body MUSÍ být průhledné — neprůhledné pozadí body se kreslí NAD elementy se záporným z-indexem (bg-stage, hero-beams) a schová je */
  body { background: transparent; color: var(--white); font-family: var(--font-ui); line-height: 1.5; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--accent); color: #fff; }
  .mono { font-family: var(--font-mono); }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .glass { background: var(--glass); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); border: 1px solid var(--line); }

  /* ════ Galaktické pozadí (celý web): fialový nádech + polární záře + svítivé kuličky + hvězdy ════
     Vše fixed za obsahem, animace jen přes transform/opacity (GPU). */
  .bg-stage { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
    background:
      radial-gradient(75% 60% at 50% 8%, rgba(101,52,208,.30), transparent 66%),
      radial-gradient(50% 42% at 90% 55%, rgba(123,63,255,.14), transparent 70%),
      radial-gradient(55% 45% at 5% 85%, rgba(91,44,189,.16), transparent 72%),
      linear-gradient(180deg, #170c2e 0%, #110925 38%, #0c0718 100%); }

  /* pásy polární záře — fialová s náznakem tyrkysu/zeleně, pomalý drift */
  .au { position: absolute; border-radius: 50%; filter: blur(70px); mix-blend-mode: screen; will-change: transform; }
  .au1 { width: 85vw; height: 36vh; top: -8vh; left: -10vw; opacity: .50;
    background: linear-gradient(100deg, rgba(123,63,255,.50), rgba(64,197,255,.16) 55%, rgba(160,110,255,.34));
    animation: auD1 38s ease-in-out infinite alternate; }
  .au2 { width: 62vw; height: 30vh; top: 34vh; right: -14vw; opacity: .40;
    background: linear-gradient(120deg, rgba(59,224,176,.15), rgba(123,63,255,.42) 45%, rgba(182,145,255,.26));
    animation: auD2 46s ease-in-out infinite alternate; }
  .au3 { width: 74vw; height: 32vh; bottom: -12vh; left: 8vw; opacity: .34;
    background: linear-gradient(80deg, rgba(123,63,255,.36), rgba(64,197,255,.13) 60%, rgba(203,178,255,.28));
    animation: auD3 54s ease-in-out infinite alternate; }
  @keyframes auD1 { from { transform: translate3d(0,0,0) rotate(-4deg) scale(1); } to { transform: translate3d(5vw,3vh,0) rotate(3deg) scale(1.08); } }
  @keyframes auD2 { from { transform: translate3d(0,0,0) rotate(5deg) scale(1); } to { transform: translate3d(-4vw,-4vh,0) rotate(-3deg) scale(1.1); } }
  @keyframes auD3 { from { transform: translate3d(0,0,0) rotate(-6deg) scale(1); } to { transform: translate3d(4vw,-3vh,0) rotate(2deg) scale(1.06); } }

  /* svítivé kuličky — plovoucí, pulsující */
  .orb { position: absolute; border-radius: 50%; will-change: transform, opacity;
    background: radial-gradient(circle at 38% 34%, #efe6ff, #b691ff 45%, rgba(123,63,255,.5) 70%, transparent 100%);
    box-shadow: 0 0 18px 6px rgba(123,63,255,.45), 0 0 44px 14px rgba(123,63,255,.18);
    animation: orbFloat 12s ease-in-out infinite alternate, orbGlow 5s ease-in-out infinite alternate; }
  .o1  { left: 8%;  top: 18%; width: 10px; height: 10px; animation-duration: 13s, 4.6s; }
  .o2  { left: 22%; top: 64%; width: 14px; height: 14px; animation-duration: 16s, 6s;   animation-delay: -4s, -1s; }
  .o3  { left: 36%; top: 30%; width: 7px;  height: 7px;  animation-duration: 11s, 5.2s; animation-delay: -7s, -2.6s; }
  .o4  { left: 48%; top: 78%; width: 12px; height: 12px; animation-duration: 15s, 4.2s; animation-delay: -2s, -.8s; }
  .o5  { left: 58%; top: 12%; width: 9px;  height: 9px;  animation-duration: 12s, 5.6s; animation-delay: -9s, -3.4s; }
  .o6  { left: 67%; top: 52%; width: 16px; height: 16px; animation-duration: 18s, 6.4s; animation-delay: -5s, -2s; }
  .o7  { left: 78%; top: 26%; width: 10px; height: 10px; animation-duration: 14s, 4.8s; animation-delay: -11s, -4s; }
  .o8  { left: 88%; top: 70%; width: 12px; height: 12px; animation-duration: 17s, 5s;   animation-delay: -3s, -1.6s; }
  .o9  { left: 14%; top: 88%; width: 8px;  height: 8px;  animation-duration: 13.5s, 5.8s; animation-delay: -6s, -3s; }
  .o10 { left: 93%; top: 10%; width: 8px;  height: 8px;  animation-duration: 12.5s, 4.4s; animation-delay: -8s, -2.2s; }
  @keyframes orbFloat { from { transform: translate3d(0,0,0); } to { transform: translate3d(20px,-52px,0); } }
  @keyframes orbGlow { from { opacity: .45; } to { opacity: .95; } }

  /* hvězdné pole — dvě vrstvy box-shadow teček, jemné blikání */
  .stars { position: absolute; top: 0; left: 0; width: 2px; height: 2px; border-radius: 50%; background: transparent; }
  .st1 { animation: stTw 5s ease-in-out infinite alternate;
    box-shadow: 60px 120px rgba(203,178,255,.7), 180px 480px rgba(203,178,255,.55), 260px 220px rgba(203,178,255,.7), 340px 700px rgba(203,178,255,.5), 420px 90px rgba(203,178,255,.65), 500px 380px rgba(203,178,255,.55), 590px 640px rgba(203,178,255,.6), 660px 180px rgba(203,178,255,.7), 740px 460px rgba(203,178,255,.5), 820px 840px rgba(203,178,255,.6), 900px 240px rgba(203,178,255,.65), 980px 560px rgba(203,178,255,.5), 1060px 120px rgba(203,178,255,.7), 1140px 680px rgba(203,178,255,.55), 1220px 320px rgba(203,178,255,.65), 1300px 90px rgba(203,178,255,.6), 1380px 500px rgba(203,178,255,.55), 1460px 260px rgba(203,178,255,.7), 1540px 720px rgba(203,178,255,.5), 130px 860px rgba(203,178,255,.6), 300px 940px rgba(203,178,255,.5), 640px 900px rgba(203,178,255,.6), 1000px 880px rgba(203,178,255,.55), 1250px 940px rgba(203,178,255,.6), 90px 620px rgba(203,178,255,.55), 480px 850px rgba(203,178,255,.5), 1500px 940px rgba(203,178,255,.6), 200px 40px rgba(203,178,255,.65); }
  .st2 { width: 2.5px; height: 2.5px; animation: stTw 3.5s ease-in-out -2s infinite alternate;
    box-shadow: 110px 300px #efe6ff, 380px 160px #efe6ff, 560px 520px #efe6ff, 760px 80px #efe6ff, 940px 400px #efe6ff, 1120px 760px #efe6ff, 1330px 180px #efe6ff, 1560px 420px #efe6ff, 240px 780px #efe6ff, 700px 300px #efe6ff, 1180px 60px #efe6ff, 1440px 640px #efe6ff, 520px 60px #efe6ff, 860px 660px #efe6ff; }
  @keyframes stTw { from { opacity: .35; } to { opacity: .95; } }
  @media (max-width: 767px) { .au { filter: blur(52px); } .o6, .o8, .o10 { display: none; } }
  .grid-overlay { position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 64px 64px; mask-image: radial-gradient(ellipse 80% 60% at 50% 25%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 25%, #000 20%, transparent 75%); }
  .cursor-glow { position: fixed; top: 0; left: 0; width: 420px; height: 420px; z-index: -1; border-radius: 50%; pointer-events: none; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(123,63,255,.10), transparent 65%); opacity: 0; transition: opacity .4s; will-change: transform; }

  /* ── NavBar (browser window) ── */
  nav { position: fixed; top: 18px; left: 50%; transform: translateX(-50%); z-index: 100; width: calc(100% - 36px); max-width: 1180px;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 12px 12px 12px 18px; border-radius: 999px;
    background: rgba(24,18,42,0.6); border: 1px solid var(--line); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0,0,0,.4); transition: padding .3s, top .3s, box-shadow .3s; }
  nav.scrolled { top: 10px; padding: 8px 10px 8px 16px; box-shadow: 0 14px 40px rgba(0,0,0,.55); }
  .nav-l { display: flex; align-items: center; gap: 18px; min-width: 0; }
  .traffic { display: flex; gap: 7px; }
  .traffic i { width: 12px; height: 12px; border-radius: 50%; }
  .traffic .r { background: rgba(255,95,86,.85); } .traffic .y { background: rgba(255,189,46,.85); } .traffic .g { background: rgba(39,201,63,.85); }
  .addr { display: none; align-items: center; gap: 8px; height: 30px; padding: 0 14px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line-2); font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
  .addr svg { width: 12px; height: 12px; opacity: .7; }
  .addr .host b { color: #cfcfcf; font-weight: 500; } .addr .caret { width: 1.5px; height: 13px; background: var(--accent); animation: blink 1.1s steps(1) infinite; }
  @keyframes blink { 0%,50%{opacity:1;} 51%,100%{opacity:0;} }
  .nav-c { display: none; align-items: center; gap: 30px; }
  .nav-c a { position: relative; font-size: 14px; letter-spacing: -0.01em; color: var(--muted); font-weight: 500; transition: color .25s; padding-bottom: 3px; }
  .nav-c a:hover { color: #fff; }
  .nav-c a::after { content:''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s; box-shadow: 0 0 8px var(--accent); }
  .nav-c a:hover::after, .nav-c a.active::after { transform: scaleX(1); }
  .nav-c a.active { color: #fff; font-weight: 600; }
  .nav-cta { position: relative; overflow: hidden; flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; padding: 10px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; background: var(--accent); color: #fff; box-shadow: 0 0 20px rgba(123,63,255,.3); transition: background .2s, box-shadow .25s, transform .18s; }
  .nav-cta:hover { background: #6A32E0; box-shadow: 0 0 30px rgba(123,63,255,.5); transform: translateY(-1px); }
  .nav-cta::after { content:''; position:absolute; top:0; left:-130%; width:55%; height:100%; transform: skewX(-20deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent); }
  .nav-cta:hover::after { animation: shineSweep .85s ease; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line); flex-shrink: 0; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 16px; height: 1.5px; background: #fff; position: relative; }
  .nav-toggle span::before, .nav-toggle span::after { content:''; position: absolute; left: 0; }
  .nav-toggle span::before { top: -5px; } .nav-toggle span::after { top: 5px; }

  /* ── Buttons ── */
  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer; border: 1px solid transparent; font-family: var(--font-ui); transition: transform .18s, box-shadow .25s, background .2s, border-color .2s; }
  .btn .arr { transition: transform .2s; } .btn:hover .arr { transform: translateX(3px); }
  .btn-ghost { color: #fff; border-color: var(--line); background: var(--glass); backdrop-filter: blur(12px); }
  .btn-ghost:hover { background: rgba(255,255,255,.06); }
  /* shiny animated-border CTA — GPU-composited rotating gradient (no per-frame repaint = smooth) */
  .btn-shiny { --sbg: #130b24; --hl: #7B3FFF; --hl-soft: #b691ff; position: relative; isolation: isolate; overflow: hidden; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 20px; border-radius: 999px; border: 1px solid transparent; color: #fff; font-weight: 600; font-size: 14px; font-family: var(--font-ui);
    background: var(--sbg);
    box-shadow: inset 0 0 0 1px #221a3a, 0 10px 34px rgba(123,63,255,.3);
    transition: transform .3s cubic-bezier(.25,1,.5,1), box-shadow .3s cubic-bezier(.25,1,.5,1); }
  /* rotating conic border ring — animated with transform only (compositor-friendly) */
  .btn-shiny::before { content:''; position:absolute; z-index:-2; left:50%; top:50%; width:220%; aspect-ratio:1; translate:-50% -50%; transform-origin:center; will-change: transform;
    background: conic-gradient(from 0deg, transparent 0deg, var(--hl-soft) 24deg, var(--hl) 60deg, transparent 120deg, transparent 240deg, var(--hl) 300deg, var(--hl-soft) 336deg, transparent 360deg);
    animation: sbSpin 4.5s linear infinite; }
  /* inner fill leaves a thin gradient ring visible at the edge */
  .btn-shiny::after { content:''; position:absolute; z-index:-1; inset:1.5px; border-radius: inherit; background: var(--sbg); }
  .btn-shiny:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px #221a3a, 0 14px 46px rgba(123,63,255,.5); }
  .btn-shiny:hover::before { animation-duration: 2.4s; }
  .btn-shiny .arr { transition: transform .2s; } .btn-shiny:hover .arr { transform: translateX(3px); }
  @keyframes sbSpin { to { transform: rotate(1turn); } }
  @keyframes shineSweep { from { left:-130%; } to { left:130%; } }

  /* ── Section shell ── */
  section.block { position: relative; padding: 40px 0; }
  .sec-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
  .sec-head h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -0.03em; }
  .sec-head p { color: var(--muted); font-size: 14px; margin-top: 14px; }
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
  .spotlight { position: relative; overflow: hidden; }
  .spotlight::before { content:''; position: absolute; inset: 0; z-index: 0; opacity: 0; transition: opacity .3s; pointer-events: none; background: radial-gradient(600px circle at var(--mx,50%) var(--my,50%), rgba(123,63,255,.10), transparent 40%); }
  .spotlight:hover::before { opacity: 1; }
  .spotlight > * { position: relative; z-index: 1; }

  /* ── Editorial section header (left-aligned) ── */
  .ed-head { max-width: 760px; margin: 0 0 56px; }
  .ed-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
  .ed-eyebrow::before { content:''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
  .ed-head h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.04; }
  .ed-head h2 .em { font-style: italic; font-weight: 600; background: linear-gradient(110deg,var(--accent-2),var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .ed-head p { color: var(--muted); font-size: 14px; margin-top: 18px; max-width: 54ch; line-height: 1.6; }

  /* ── Údržba & růst (two columns) ── */
  .care-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .care-col .col-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 18px; }
  .care-list { display: flex; flex-direction: column; gap: 12px; }
  .care-item { position: relative; display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; padding: 16px 18px; border-radius: 16px; background: rgba(255,255,255,.025); border: 1px solid var(--line); cursor: pointer; transition: transform .25s, border-color .25s, background .25s, box-shadow .25s; }
  .care-item:hover { transform: translateY(-3px); border-color: rgba(123,63,255,.45); background: rgba(123,63,255,.06); box-shadow: 0 12px 30px rgba(0,0,0,.35); }
  .care-item .ci-l h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 6px; color: #fff; }
  .care-item .ci-l p { color: var(--muted); font-size: 13.5px; line-height: 1.55; max-width: 34ch; }
  .care-item .ci-price { font-family: var(--font-mono); font-size: 14px; color: #fff; font-weight: 600; white-space: nowrap; text-align: right; }
  .care-item .ci-add { display: inline-block; margin-top: 5px; font-family: var(--font-ui); font-size: 11px; font-weight: 600; color: var(--accent-2); transition: color .2s; }
  .care-item:hover .ci-add { color: #fff; }
  .care-pkg { position: relative; overflow: hidden; margin-top: 12px; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 24px; border-radius: 16px; border: 1px solid rgba(123,63,255,.4); background: linear-gradient(120deg, rgba(123,63,255,.18), rgba(123,63,255,.05)); cursor: pointer; transition: transform .2s, box-shadow .25s, border-color .25s; }
  .care-pkg:hover { transform: translateY(-2px); border-color: rgba(123,63,255,.65); box-shadow: 0 14px 34px rgba(123,63,255,.28); }
  .care-pkg .pk-name { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14px; color: #fff; }
  .care-pkg .pk-name::before { content:''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 8px var(--accent); flex-shrink: 0; }
  .care-pkg .pk-price { font-family: var(--font-mono); font-size: 14px; color: #fff; font-weight: 600; white-space: nowrap; }

  /* ── Template grid (Hotové weby) ── */
  .tmpl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .tmpl-card { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; transition: transform .3s, border-color .3s; }
  .tmpl-card:hover { transform: translateY(-4px); border-color: rgba(123,63,255,.35); }
  .tmpl-media { position: relative; aspect-ratio: 16/10; background: #141414; overflow: hidden; }
  .tmpl-media img { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform .5s; }
  .tmpl-card:hover .tmpl-media img { transform: scale(1.05); }
  .tmpl-badge { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(10,10,10,.55); border: 1px solid rgba(123,63,255,.4); padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(8px); }
  .tmpl-badge svg { width: 11px; height: 11px; color: var(--accent); }
  .tmpl-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
  .tmpl-body h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
  .tmpl-body .desc { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin-bottom: 20px; }
  .tmpl-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
  .tmpl-price .val { font-family: var(--font-mono); font-size: 18px; font-weight: 600; }
  .tmpl-price .unit { color: var(--muted); font-size: 12px; }
  .tmpl-actions { margin-top: auto; display: flex; align-items: center; gap: 16px; }
  .tmpl-actions .btn-buy { background: var(--accent); color: #fff; font-weight: 600; font-size: 14px; padding: 13px 22px; border-radius: 999px; border: none; cursor: pointer; transition: background .2s, transform .15s, box-shadow .25s; box-shadow: 0 0 18px rgba(123,63,255,.3); }
  .tmpl-actions .btn-buy:hover { background: #6A32E0; transform: translateY(-1px); box-shadow: 0 0 26px rgba(123,63,255,.5); }
  .tmpl-actions .detail { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; transition: color .2s; }
  .tmpl-actions .detail:hover { color: #fff; }

  /* ── Digitalizace teaser ── */
  .digi-card { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid rgba(123,63,255,.3); padding: 48px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
  .digi-card .glow { position: absolute; top: -40%; right: -10%; width: 420px; height: 420px; background: rgba(123,63,255,.12); filter: blur(90px); border-radius: 50%; pointer-events: none; }
  .digi-l { position: relative; z-index: 1; }
  .digi-l h3 { font-size: clamp(24px,3vw,34px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; }
  .digi-l h3 .em { font-style: italic; color: var(--accent-2); }
  .digi-l p { color: var(--muted); line-height: 1.65; max-width: 46ch; margin-bottom: 26px; }
  .digi-feats { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 30px; }
  .digi-feats span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #cfcfcf; }
  .digi-feats span::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .digi-r { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
  /* price line (přesunuto do levého sloupce) */
  .digi-price-line { display: flex; flex-direction: column; gap: 4px; margin: 4px 0 28px; }
  .digi-price-line .from { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
  .digi-price-line .price { font-family: var(--font-mono); font-size: 40px; font-weight: 700; line-height: 1.05; color: #fff; }
  .digi-price-line .price .u { font-size: 15px; color: var(--muted); }
  .digi-price-line .disc { font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 4px; }

  /* ── Instagram device mockup (iPad + iPhone) — čistě CSS, lze vyměnit za render ── */
  .ig-devices { position: relative; width: 100%; height: 340px; display: flex; align-items: center; justify-content: center; }
  .ig-pad, .ig-phone { position: absolute; overflow: hidden; background: #0b0910; box-shadow: 0 30px 60px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06); }
  .ig-pad { width: 208px; height: 278px; border-radius: 20px; border: 6px solid #1c1830; transform: rotate(-8deg) translateX(-52px); }
  .ig-grid-pad { padding: 14px; height: 100%; grid-auto-rows: 1fr; }
  .ig-phone { width: 158px; height: 322px; border-radius: 28px; border: 7px solid #241f38; transform: rotate(5deg) translateX(46px); z-index: 2; }
  .ig-notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 50px; height: 13px; border-radius: 999px; background: #241f38; z-index: 3; }
  .ig-profile { padding: 26px 11px 11px; }
  .ig-head { display: flex; gap: 9px; align-items: center; margin-bottom: 12px; }
  .ig-ava { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--accent-2), var(--accent)); box-shadow: 0 0 0 2px #0b0910, 0 0 0 3.5px rgba(182,145,255,.6); }
  .ig-meta b { font-size: 11px; color: #fff; display: block; letter-spacing: -0.01em; }
  .ig-stats { display: flex; gap: 9px; margin-top: 3px; }
  .ig-stats span { font-size: 7.5px; color: var(--muted); } .ig-stats b { color: #fff; font-size: 8px; }
  .ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .ig-grid i { aspect-ratio: 1; border-radius: 3px; display: block; }
  .ig-grid i:nth-child(3n+1) { background: linear-gradient(135deg, #7B3FFF, #b691ff); }
  .ig-grid i:nth-child(3n+2) { background: linear-gradient(135deg, #3a2778, #7B3FFF); }
  .ig-grid i:nth-child(3n)   { background: linear-gradient(135deg, #241f38, #5a3fae); }
  @media (max-width: 767px) {
    .ig-devices { height: 300px; transform: scale(.86); }
  }

  /* ── Phone contact ── */
  .phone-block { text-align: center; margin-top: 8px; }
  .phone-block .ph-eyebrow { font-family: var(--font-mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 auto 26px; max-width: 40ch; line-height: 1.6; }
  .btn-call-lg { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; padding: 18px 40px; border-radius: 999px; font-family: var(--font-mono); }
  .btn-call-lg svg { width: 20px; height: 20px; }
  @media (max-width: 767px) { .btn-call-lg { font-size: 19px; padding: 16px 30px; width: 100%; } }
  .phone-nums { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
  .phone-card { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 30px 36px; border-radius: 20px; min-width: 260px; }
  .phone-card .lab { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
  .phone-card .num { font-family: var(--font-mono); font-size: 18px; font-weight: 600; }
  .phone-card .btn-call { display: inline-flex; align-items: center; gap: 9px; background: var(--accent); color: #fff; font-weight: 600; font-size: 14px; padding: 13px 26px; border-radius: 999px; box-shadow: 0 0 18px rgba(123,63,255,.3); transition: background .2s, transform .15s, box-shadow .25s; }
  .phone-card .btn-call:hover { background: #6A32E0; transform: translateY(-1px); box-shadow: 0 0 26px rgba(123,63,255,.5); }

  /* ── Hero ── */
  .hero { position: relative; padding: 150px 0 60px; }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 24px; }
  .hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -0.045em; line-height: 1.02; margin-bottom: 22px; }
  .hero h1 .grad { background: linear-gradient(110deg, #fff 0%, var(--accent-2) 55%, var(--accent) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .hero p.sub { font-size: clamp(17px,1.5vw,20px); color: #c9c9d6; max-width: 30ch; margin-bottom: 38px; line-height: 1.55; text-shadow: 0 1px 14px rgba(10,10,10,.85); }
  .hero h1 { text-shadow: 0 2px 24px rgba(10,10,10,.6); }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-visual { position: relative; }
  .hero-visual img { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 50px rgba(0,0,0,.55)); }
  .hero-visual::after { content:''; position: absolute; inset: -8% -4% -8% -4%; z-index: -1; background: radial-gradient(circle at 55% 50%, rgba(123,63,255,.20), transparent 62%); filter: blur(40px); }

  /* ── Timeline (zigzag, animated graphics) ── */
  .tl { position: relative; max-width: 1000px; margin: 0 auto; }
  .tl-line { position: absolute; left: 24px; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, transparent, rgba(255,255,255,.2), transparent); }
  .tl-fill { position: absolute; left: -0.5px; top: 0; width: 2px; height: 0; background: linear-gradient(var(--accent), var(--accent-2)); box-shadow: 0 0 12px rgba(123,63,255,.6); }
  .tl-steps { display: flex; flex-direction: column; gap: 40px; }
  .tl-step { position: relative; display: grid; grid-template-columns: 1fr; align-items: center; gap: 18px; padding-left: 64px; }
  .tl-node { position: absolute; left: 24px; top: 28px; width: 14px; height: 14px; border-radius: 50%; background: var(--surface); border: 2px solid var(--muted); transform: translateX(-50%); z-index: 2; transition: border-color .4s, box-shadow .4s; }
  .tl-step.in .tl-node { border-color: var(--accent); box-shadow: 0 0 12px rgba(123,63,255,.6); }
  .tl-card { padding: 16px; border-radius: 18px; }
  .tl-card .n { font-family: var(--font-mono); color: var(--muted); font-size: 14px; display: block; margin-bottom: 8px; }
  .tl-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
  .tl-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
  .tl-graphic { position: relative; border-radius: 18px; padding: 18px 20px 14px; max-width: 360px; }
  .tl-graphic svg { width: 100%; height: auto; display: block; }
  .g-num { font-family: 'JetBrains Mono', monospace; font-size: 13px; fill: #fff; font-weight: 600; }
  .g-perf .score { font-size: 18px; font-weight: 700; }
  .g-axis { font-family: var(--font-mono); font-size: 9px; fill: rgba(255,255,255,.45); }
  .g-val { font-family: var(--font-mono); font-size: 10px; font-weight: 600; fill: #fff; }
  /* draw-in animations (trigger on .in) */
  .g-anal .bar { fill: rgba(123,63,255,.5); transform: scaleY(0); transform-box: fill-box; transform-origin: bottom; }
  .tl-step.in .g-anal .bar { animation: barUp .7s cubic-bezier(.2,.8,.2,1) forwards; }
  .tl-step.in .g-anal .bar:nth-of-type(2){animation-delay:.08s} .tl-step.in .g-anal .bar:nth-of-type(3){animation-delay:.16s}
  .tl-step.in .g-anal .bar:nth-of-type(4){animation-delay:.24s} .tl-step.in .g-anal .bar:nth-of-type(5){animation-delay:.32s}
  .g-anal .trend, .g-live .upline { stroke-dasharray: 380; stroke-dashoffset: 380; }
  .tl-step.in .g-anal .trend { animation: draw 1s ease .35s forwards; }
  .tl-step.in .g-live .upline { animation: draw 1.2s ease forwards; }
  .g-anal .trend-dot, .g-live .live-dot { opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(0); }
  .tl-step.in .g-anal .trend-dot { animation: gpop .4s ease 1.2s forwards; }
  .tl-step.in .g-live .live-dot { animation: gpop .4s ease 1.1s forwards; }
  .g-anal .g-num, .g-perf .score, .g-live .g-num { opacity: 0; }
  .tl-step.in .g-anal .g-num { animation: gfade .5s ease 1.25s forwards; }
  .tl-step.in .g-live .g-num { animation: gfade .5s ease 1.3s forwards; }
  .g-perf .ring { stroke-dasharray: 251; stroke-dashoffset: 251; }
  .tl-step.in .g-perf .ring { animation: ringFill 1.2s ease .2s forwards; }
  .tl-step.in .g-perf .score { animation: gfade .6s ease .9s forwards; }
  .g-perf .pbar { fill: rgba(123,63,255,.55); transform: scaleX(0); transform-box: fill-box; transform-origin: left; }
  .tl-step.in .g-perf .pbar { animation: barX .7s cubic-bezier(.2,.8,.2,1) forwards; }
  /* pbar recty se v SVG střídají s podkladovými recty → liché pozice jsou podklad, sudé jsou pbar */
  .tl-step.in .g-perf .pbar:nth-of-type(2){animation-delay:.3s} .tl-step.in .g-perf .pbar:nth-of-type(4){animation-delay:.42s} .tl-step.in .g-perf .pbar:nth-of-type(6){animation-delay:.54s}
  .g-live .pulse { opacity: 0; transform-box: fill-box; transform-origin: center; }
  .tl-step.in .g-live .pulse { animation: pulseRing 1.8s ease 1.4s infinite; }
  @keyframes barUp { to { transform: scaleY(1); } }
  @keyframes barX { to { transform: scaleX(1); } }
  @keyframes draw { to { stroke-dashoffset: 0; } }
  @keyframes ringFill { to { stroke-dashoffset: 6; } }
  @keyframes gpop { to { opacity: 1; transform: scale(1); } }
  @keyframes gfade { to { opacity: 1; } }
  @keyframes pulseRing { 0%{opacity:.6; transform:scale(1)} 100%{opacity:0; transform:scale(2.6)} }
  @media (min-width: 860px) {
    .tl-line, .tl-fill { left: 50%; }
    .tl-node { left: 50%; top: 50%; }
    .tl-step { grid-template-columns: 1fr 1fr; gap: 56px; padding-left: 0; align-items: center; }
    /* karta i graf vždy ve stejném řádku, oba přisazené k ose timeline → graf je přímo vedle bubliny */
    .tl-step .tl-card { grid-column: 2; grid-row: 1; max-width: 420px; align-self: center; }
    .tl-step .tl-graphic { grid-column: 1; grid-row: 1; margin-left: auto; align-self: center; }
    .tl-step.left .tl-card { grid-column: 1; margin-left: auto; text-align: right; }
    .tl-step.left .tl-graphic { grid-column: 2; margin-left: 0; margin-right: auto; }
  }
  @media (max-width: 859px) { .tl-graphic { display: none; } }

  /* ── Services grid ── */
  .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .svc-card { display: flex; flex-direction: column; padding: 30px; border-radius: 18px; transition: transform .3s, border-color .3s; }
  .svc-card:hover { transform: translateY(-4px); border-color: rgba(123,63,255,.35); }
  .svc-ic { width: 48px; height: 48px; border-radius: 999px; background: #1A1A1A; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 22px; }
  .svc-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
  .svc-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 28px; }
  .svc-foot { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; align-items: flex-end; }
  .svc-foot .lab { color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
  .svc-foot .price { font-family: var(--font-mono); color: var(--accent); font-weight: 600; font-size: 14px; }

  /* ── Portfolio ── */
  .pf-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
  .pf-head h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -0.03em; }
  .pf-head p { color: var(--muted); margin-top: 12px; }
  .pf-more { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #fff; transition: color .2s; cursor: pointer; background: none; border: none; font-family: var(--font-ui); }
  .pf-more:hover { color: var(--accent); }
  .pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .pf-extra { display: none; }
  .pf-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/10; display: block; border: 1px solid var(--line); background: #0e0b16; transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s; }
  .pf-card:hover { transform: translateY(-4px); border-color: rgba(123,63,255,.4); box-shadow: 0 20px 44px rgba(0,0,0,.5); }
  .pf-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: .82; transition: opacity .5s, transform .6s; }
  .pf-card:hover img { opacity: 1; transform: scale(1.03); }
  /* branded placeholder for projects without a screenshot */
  .pf-card .pf-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background:
      radial-gradient(120% 90% at 50% 0%, rgba(123,63,255,.28), transparent 60%),
      linear-gradient(150deg, #1a1230 0%, #0d0b16 70%); }
  .pf-card .pf-ph::before { content: attr(data-mono); font-family: var(--font-ui); font-size: 46px; font-weight: 700; letter-spacing: -0.03em; color: transparent; background: linear-gradient(150deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; opacity: .9; }
  .pf-card .grad { position: absolute; inset: 0; background: linear-gradient(to top, #0A0A0A 4%, rgba(10,10,10,.25) 42%, transparent 62%); }
  .pf-card .meta { position: absolute; left: 0; bottom: 0; padding: 16px; z-index: 2; }
  .pf-tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; color: var(--accent-2); background: rgba(123,63,255,.14); border: 1px solid rgba(123,63,255,.3); padding: 3px 9px; border-radius: 999px; margin-bottom: 9px; backdrop-filter: blur(8px); }
  .pf-card .meta h3 { font-size: 16px; font-weight: 600; }

  /* ── Hotové weby ── */
  .ready-card { position: relative; border-radius: 26px; overflow: hidden; border: 1px solid rgba(123,63,255,.3); }
  .ready-card .glow { position: absolute; top: 0; right: 0; width: 380px; height: 380px; background: rgba(123,63,255,.1); filter: blur(80px); border-radius: 50%; pointer-events: none; }
  .ready-inner { display: grid; grid-template-columns: 1fr 1fr; background: #0A0A0A; border-radius: 24px; overflow: hidden; min-height: 420px; }
  .ready-text { padding: 56px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
  .ready-badge { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
  .ready-badge svg { width: 18px; height: 18px; color: var(--accent); filter: drop-shadow(0 0 6px rgba(123,63,255,.8)); }
  .ready-text h2 { font-size: clamp(28px,3.4vw,40px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
  .ready-text .tmpl { font-size: 18px; color: var(--muted); margin-bottom: 26px; }
  .ready-text p { color: var(--muted); line-height: 1.65; max-width: 42ch; margin-bottom: 34px; }
  .ready-buy { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: auto; }
  .ready-buy .pl { display: flex; flex-direction: column; }
  .ready-buy .pl .lab { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
  .ready-buy .pl .val { font-family: var(--font-mono); font-size: 30px; font-weight: 700; }
  .ready-buy .btn-buy { margin-left: auto; background: #fff; color: #0A0A0A; font-weight: 700; font-size: 14px; padding: 16px 28px; border-radius: 999px; border: none; cursor: pointer; transition: background .2s, transform .15s; }
  .ready-buy .btn-buy:hover { background: #e6e6e6; transform: translateY(-1px); }
  .ready-img { position: relative; min-height: 420px; background: #141414; }
  .ready-img img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
  .ready-img .ov { position: absolute; inset: 0; background: linear-gradient(to right, #0A0A0A, rgba(10,10,10,.4) 50%, transparent); }

  /* ── Contact ── */
  .cta-section { text-align: center; }
  .cta-section h2 { font-size: clamp(28px,3.4vw,44px); font-weight: 700; letter-spacing: -0.025em; max-width: 20ch; margin: 0 auto 12px; }
  .cta-section h2 .grad { background: linear-gradient(110deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .cta-section .sub { color: var(--muted); margin-bottom: 38px; font-size: 14px; }

  /* ── Footer ── */
  footer { border-top: 1px solid var(--line-2); padding: 48px 0 calc(48px + env(safe-area-inset-bottom)); margin-top: 40px; }
  .foot-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
  .foot-inner .brand { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
  .foot-inner .ico { font-family: var(--font-mono); font-size: 12px; }
  .foot-links { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; }
  .foot-links a:hover { color: var(--accent); }

  /* ── Mobile sticky bar + sheet ── */
  .mobile-bar { display: none; }
  .sheet-backdrop { position: fixed; inset: 0; z-index: 110; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
  .sheet-backdrop.open { opacity: 1; visibility: visible; }
  .sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 111; background: var(--surface); border-top: 1px solid var(--line); border-radius: 22px 22px 0 0; padding: 14px 20px calc(28px + env(safe-area-inset-bottom)); transform: translateY(100%); transition: transform .34s cubic-bezier(.4,0,.2,1); }
  .sheet.open { transform: translateY(0); }
  .sheet .handle { width: 40px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.18); margin: 4px auto 18px; }
  .sheet .sheet-addr { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--line-2); margin-bottom: 14px; }
  .sheet a { display: flex; align-items: center; justify-content: space-between; padding: 16px 6px; font-size: 18px; font-weight: 500; border-bottom: 1px solid var(--line-2); }
  .sheet a:last-of-type { border-bottom: none; }
  .sheet a .arr { color: var(--muted); }

  /* ── Responsive ── */
  @media (min-width: 768px) { .addr, .nav-c { display: flex; } .nav-toggle { display: none; } }
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .digi-card { grid-template-columns: 1fr; padding: 34px 26px; }
    .hero p.sub { max-width: 42ch; }
    .pf-grid { grid-template-columns: 1fr 1fr; }
    .ready-inner { grid-template-columns: 1fr; }
    .ready-img { min-height: 280px; order: -1; }
    .ready-img .ov { background: linear-gradient(to top, #0A0A0A, transparent 60%); }
  }
  @media (max-width: 767px) {
    nav { width: calc(100% - 24px); padding: 8px 8px 8px 14px; }
    .hero { padding: 130px 0 40px; } section.block { padding: 70px 0; }
    .svc-grid, .care-cols, .tmpl-grid { grid-template-columns: 1fr; }
    .pf-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin: 0 -24px; padding: 0 24px 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
    .pf-grid::-webkit-scrollbar { display: none; }
    .pf-card { flex: 0 0 80%; scroll-snap-align: center; }
    .pf-extra.in { display: contents; }
    .ready-text { padding: 36px 28px; }
    .mobile-bar { display: flex; position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 90; }
    .mobile-bar .btn { flex: 1; box-shadow: 0 10px 30px rgba(0,0,0,.5); }
    body { padding-bottom: 76px; } footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .addr .caret { opacity: 1; }
  }

  /* ════════════════════════════════════════════
     Digitalizace page — scoped, matches design system
     ════════════════════════════════════════════ */
  .digi-hero { position: relative; padding: 150px 0 40px; text-align: center; }
  .digi-hero .digi-badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px; background: rgba(123,63,255,.1); border: 1px solid rgba(123,63,255,.3); color: var(--accent-2); font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 26px; }
  .digi-hero .digi-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(123,63,255,.6); animation: digiPulse 2.2s ease-out infinite; }
  @keyframes digiPulse { 0%{box-shadow:0 0 0 0 rgba(123,63,255,.55);} 70%{box-shadow:0 0 0 10px rgba(123,63,255,0);} 100%{box-shadow:0 0 0 0 rgba(123,63,255,0);} }
  .digi-hero h1 { font-size: clamp(30px, 4.6vw, 54px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.04; max-width: 16ch; margin: 0 auto 22px; }
  .digi-hero h1 .em { font-style: italic; font-weight: 600; background: linear-gradient(110deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .digi-hero p.sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); max-width: 52ch; margin: 0 auto 36px; line-height: 1.6; }
  .digi-hero .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* process (postup) */
  .digi-steps { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
  .digi-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding-bottom: 40px; }
  .digi-step:last-child { padding-bottom: 0; }
  .digi-step::before { content: ''; position: absolute; left: 27px; top: 56px; bottom: 0; width: 1px; background: linear-gradient(rgba(123,63,255,.5), rgba(255,255,255,.05)); }
  .digi-step:last-child::before { display: none; }
  .digi-step .st-num { width: 56px; height: 56px; border-radius: 50%; background: rgba(123,63,255,.1); border: 1px solid rgba(123,63,255,.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--accent-2); flex-shrink: 0; position: relative; z-index: 1; }
  .digi-step .st-body { padding-top: 12px; }
  .digi-step .st-body h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
  .digi-step .st-body p { color: var(--muted); font-size: 14.5px; line-height: 1.6; max-width: 52ch; }

  /* pricing box */
  .digi-price-box { max-width: 1000px; margin: 0 auto; border-radius: 26px; padding: 48px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; background: linear-gradient(135deg, rgba(123,63,255,.14) 0%, rgba(20,20,20,.6) 55%); border: 1px solid rgba(123,63,255,.3); box-shadow: 0 0 70px rgba(123,63,255,.1); }
  .digi-price-box .dp-left .dp-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px; }
  .digi-price-box .dp-price { font-family: var(--font-mono); font-size: clamp(44px, 6vw, 60px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
  .digi-price-box .dp-price span { font-size: 18px; color: var(--muted); font-weight: 400; }
  .digi-price-box .dp-note { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin-top: 14px; max-width: 34ch; }
  .digi-price-box .dp-cta { margin-top: 28px; }
  .digi-incl { list-style: none; }
  .digi-incl li { display: flex; gap: 13px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line-2); font-size: 14.5px; }
  .digi-incl li:last-child { border-bottom: none; }
  .digi-incl li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent-2); }

  /* discount on web (sleva) */
  .disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .disc-card { position: relative; border-radius: 18px; padding: 26px; background: rgba(255,255,255,.025); border: 1px solid var(--line); transition: transform .3s, border-color .3s, box-shadow .3s; }
  .disc-card:hover { transform: translateY(-4px); border-color: rgba(123,63,255,.4); box-shadow: 0 16px 38px rgba(0,0,0,.4); }
  .disc-card.feat { border-color: rgba(123,63,255,.45); background: linear-gradient(160deg, rgba(123,63,255,.12), rgba(255,255,255,.02)); }
  .disc-card .dc-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
  .disc-card .dc-sub { font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }
  .disc-card .dc-off { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2); background: rgba(123,63,255,.12); border: 1px solid rgba(123,63,255,.3); padding: 4px 10px; border-radius: 999px; margin-bottom: 16px; }
  .disc-card .dc-prices { display: flex; align-items: baseline; gap: 12px; }
  .disc-card .dc-old { font-family: var(--font-mono); font-size: 17px; font-weight: 600; color: var(--muted); text-decoration: line-through; }
  .disc-card .dc-new { font-family: var(--font-mono); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
  .disc-card .dc-new span { font-size: 13px; color: var(--muted); font-weight: 400; }
  .disc-card .dc-incl { font-size: 12.5px; color: var(--accent-2); font-weight: 500; }
  .disc-note { max-width: 1000px; margin: 24px auto 0; display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; }
  .disc-note svg { flex-shrink: 0; margin-top: 1px; color: var(--accent-2); }
  .disc-note p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

  @media (max-width: 860px) {
    .digi-price-box { grid-template-columns: 1fr; gap: 32px; padding: 32px 26px; }
    .disc-grid { grid-template-columns: 1fr; }
  }
